@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Reset dan Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color, #0b0c1b);
    color: var(--text-color, #ffffff);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Wrapper Utama agar responsif */
.app-container {
    max-width: 600px; /* Lebar optimal mobile-first mirip aplikasi natif */
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(16, 17, 39, 0.95) 0%, rgba(7, 8, 20, 0.98) 100%);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* 1. Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #070814;
    border-bottom: 2px solid rgba(243, 165, 22, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #f3a516);
    transition: transform 0.2s ease;
}

.header-icon-btn:active {
    transform: scale(0.9);
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 38px;
}

.header-logo img {
    max-height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(243, 165, 22, 0.3));
}

/* 2. Banner Slider Carousel */
.main-banner {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    background-color: #070814;
}

.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7.5; /* Proporsi seragam & responsive sempurna */
    overflow: hidden;
    background-color: #070814;
}

/* Track: flexbox row — semua slide berjejer horizontal */
.banner-slider-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Setiap slide mengambil 100% lebar container — semua seragam */
.banner-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar mengisi penuh, rapi & seragam */
    object-position: center center;
    display: block;
    pointer-events: none;
    user-select: none;
}

.banner-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot-btn.active {
    background-color: var(--primary-color, #f3a516);
    width: 20px; /* Efek memanjang premium saat aktif */
    border-radius: 4px;
    box-shadow: 0 0 8px var(--primary-color, #f3a516);
}

/* 3. Running Text */
.announcement-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #131530 0%, #0d0f22 100%);
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-icon {
    color: var(--primary-color, #f3a516);
    margin-right: 12px;
    display: flex;
    align-items: center;
    animation: megaphone-pulse 2s infinite ease-in-out;
}

.announcement-text-container {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.announcement-text-container marquee {
    font-size: 13.5px;
    font-weight: 500;
    color: #e2e8f0;
    vertical-align: middle;
}

@keyframes megaphone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15) rotate(-5deg); }
}

/* 4 & 5. Tombol Login dan Daftar */
.auth-buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px; /* Tanpa celah seperti di screenshot */
    width: 100%;
}

.btn-auth {
    padding: 14px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-auth.login {
    background-color: var(--btn-login-color, #f3a516);
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2);
}

.btn-auth.daftar {
    background-color: var(--btn-daftar-color, #e61b1b);
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2);
}

.btn-auth:active {
    filter: brightness(0.85);
}

/* 6. Kategori Game */
.category-menu-wrapper {
    background-color: #101227;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.category-menu {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 10px;
    scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
}

.category-menu::-webkit-scrollbar {
    display: none; /* Sembunyikan scrollbar di Chrome/Safari */
}

.category-item {
    flex: 0 0 20%; /* Rata 5 item penuh */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6px 4px;
    position: relative;
    cursor: pointer;
}

.category-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.category-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0.5;
}

.category-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 4px;
    color: #a0aec0;
    transition: color 0.3s ease;
}

/* Kategori Aktif */
.category-item.active .category-icon-wrapper {
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.category-item.active .category-label {
    color: #ffffff;
}

/* Line indikator di bawah kategori aktif */
.category-menu-wrapper {
    position: relative;
}

.category-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: var(--primary-color, #f3a516);
    box-shadow: 0 0 10px var(--primary-color, #f3a516);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    left: 0;
    width: 20%; /* Sesuai persentase lebar item */
}

/* Badge HOT / NEW */
.category-badge {
    position: absolute;
    top: -2px;
    right: 50%;
    transform: translateX(120%);
    background: var(--secondary-color, #e61b1b);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 0 8px var(--secondary-color, #e61b1b);
    animation: badge-pulse 1.5s infinite ease-in-out;
    z-index: 10;
}

@keyframes badge-pulse {
    0%, 100% { transform: translateX(120%) scale(1); }
    50% { transform: translateX(120%) scale(1.08); }
}

/* 7. Progressive Jackpot */
.jackpot-container {
    padding: 20px 16px;
    background: linear-gradient(180deg, rgba(20, 22, 49, 0.3) 0%, rgba(7, 8, 20, 0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.jackpot-frame {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #1b0e02 0%, #3a1c02 30%, #572a02 50%, #3a1c02 70%, #1b0e02 100%);
    border: 3px solid #d4af37;
    border-radius: 40px;
    padding: 12px 30px;
    text-align: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ornamen Bintang Kiri dan Kanan */
.jackpot-stars {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.jackpot-stars.left {
    left: -15px;
}

.jackpot-stars.right {
    right: -15px;
}

.star-icon {
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
    animation: star-spin 3s infinite linear;
}

.star-icon.large {
    font-size: 24px;
    animation: star-pulse 1.5s infinite ease-in-out;
}

.star-icon.small {
    font-size: 16px;
}

@keyframes star-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8)); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1)); }
}

.jackpot-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color, #f3a516);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2px;
}

.jackpot-amount {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 2px 5px rgba(0,0,0,0.9);
}

/* 8. Game Terpopuler */
.games-section {
    padding: 10px 16px 30px;
    flex: 1;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.section-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color, #f3a516);
    letter-spacing: 0.5px;
    border-left: 3px solid var(--primary-color, #f3a516);
    padding-left: 8px;
}

/* Grid Game modern */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.game-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.game-thumbnail {
    width: 100%;
    aspect-ratio: 1/1; /* Kotak rapi */
    overflow: hidden;
    position: relative;
    background-color: #070814;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-info {
    padding: 8px 6px;
    text-align: center;
    background: #0f1025;
}

.game-name {
    font-size: 11px;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover & Active Effects */
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    border-color: rgba(243, 165, 22, 0.3);
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.08);
}

.game-card:active {
    transform: scale(0.95);
}

/* Pesan Jika Game Kosong */
.empty-games-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #a0aec0;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* 9. Footer */
footer {
    background-color: #060712;
    padding: 24px 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #11132a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn.whatsapp:hover {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
}

.social-btn.telegram:hover {
    background-color: #0088cc;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 136, 204, 0.5);
    transform: translateY(-3px);
}

.social-btn.promosi:hover {
    background-color: var(--primary-color, #f3a516);
    color: #ffffff;
    box-shadow: 0 0 12px var(--primary-color, #f3a516);
    transform: translateY(-3px);
}

.footer-text {
    font-size: 12px;
    color: #718096;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: #a0aec0;
}

.footer-links a:hover {
    color: var(--primary-color, #f3a516);
}

/* Sidebar Drawer Menu (Hamburger menu slide in) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #0b0c1b;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    border-right: 2px solid var(--primary-color, #f3a516);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-overlay.active .sidebar-menu {
    left: 0;
}

.sidebar-header {
    padding: 20px 16px;
    background-color: #070814;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color, #f3a516);
    text-transform: uppercase;
}

.sidebar-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-links {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.sidebar-link-item {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid transparent;
}

.sidebar-link-item:hover, .sidebar-link-item:active {
    background: rgba(255, 255, 255, 0.02);
    color: var(--primary-color, #f3a516);
    border-left-color: var(--primary-color, #f3a516);
}

/* Ikon Bintang Jackpot Kapsul */
.jackpot-stars svg {
    fill: currentColor;
    stroke: none;
}

/* ============================================================
   ANIMASI JACKPOT SPIN (Digit Berputar Slot Machine)
   ============================================================ */
#jackpot-spin {
    color: #ffd700;
    display: inline;
}

@keyframes spin-flash {
    0%   { color: #ffffff; text-shadow: none; }
    25%  { color: #ffd700; text-shadow: 0 0 18px rgba(255, 215, 0, 1), 0 0 35px rgba(255, 215, 0, 0.6); }
    100% { color: #ffd700; text-shadow: 0 0 8px rgba(255, 215, 0, 0.7); }
}

.spin-flash {
    animation: spin-flash 0.45s ease-out forwards;
}

/* ============================================================
   TEASER "TENTANG KAMI" DI INDEX
   ============================================================ */
.about-teaser {
    margin: 0 16px 20px;
    background: linear-gradient(135deg, rgba(243, 165, 22, 0.08) 0%, rgba(230, 27, 27, 0.06) 100%);
    border: 1px solid rgba(243, 165, 22, 0.2);
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.about-teaser:hover {
    border-color: rgba(243, 165, 22, 0.5);
    background: linear-gradient(135deg, rgba(243, 165, 22, 0.12) 0%, rgba(230, 27, 27, 0.09) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.about-teaser-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color, #f3a516), #e08000);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(243, 165, 22, 0.4);
}

.about-teaser-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.about-teaser-body {
    flex: 1;
    min-width: 0;
}

.about-teaser-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.about-teaser-sub {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-teaser-arrow {
    color: var(--primary-color, #f3a516);
    flex-shrink: 0;
}

/* ============================================================
   HALAMAN TENTANG PETAK68
   ============================================================ */

/* Hero */
.about-hero {
    position: relative;
    width: 100%;
    padding: 40px 20px 30px;
    text-align: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(243, 165, 22, 0.18) 0%, transparent 70%),
                linear-gradient(180deg, rgba(16, 17, 40, 0.95) 0%, rgba(7, 8, 20, 0) 100%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color, #f3a516), #e08000);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.about-hero-subtitle {
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.5;
    max-width: 340px;
    margin: 0 auto;
}

/* Deskripsi */
.about-desc-section {
    padding: 0 16px 24px;
}

.about-desc-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-desc-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--primary-color, #f3a516);
    margin-top: 2px;
}

.about-desc-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.about-desc-text {
    font-size: 13px;
    color: #cbd5e0;
    line-height: 1.75;
}

/* Statistik */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px 24px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(20, 22, 50, 0.8) 0%, rgba(12, 13, 30, 0.9) 100%);
    border: 1px solid rgba(243, 165, 22, 0.15);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color, #f3a516), transparent);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 165, 22, 0.35);
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color, #f3a516);
    text-shadow: 0 0 12px rgba(243, 165, 22, 0.4);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #a0aec0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fitur Unggulan */
.about-features-section {
    padding: 0 0 24px;
}

.about-features-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(243, 165, 22, 0.05);
    border-color: rgba(243, 165, 22, 0.2);
    transform: translateX(4px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(243, 165, 22, 0.15), rgba(243, 165, 22, 0.05));
    border: 1px solid rgba(243, 165, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color, #f3a516);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-body {
    flex: 1;
    min-width: 0;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.5;
}

/* CTA */
.about-cta {
    margin: 0 16px 30px;
    background: linear-gradient(135deg, #1a0a00 0%, #2d1500 40%, #1a0900 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.about-cta-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.about-cta-desc {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.5;
    margin-bottom: 18px;
}

.about-cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-about-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25d366;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-about-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

