:root {
    --gold: #f0b90b;
    --gold-light: #fcd535;
    --gold-dark: #c99a06;
    --gold-glow: rgba(240, 185, 11, 0.3);
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a2332;
    --bg-card-hover: #1f2b3d;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --green: #10b981;
    --green-glow: rgba(16, 185, 129, 0.3);
    --red: #ef4444;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --border: rgba(255,255,255,0.06);
    --shadow-gold: 0 0 40px rgba(240, 185, 11, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    margin-top: 70px;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== LOADER ===== */
.page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg-primary);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1.5rem;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
    width: 50px; height: 50px;
    border: 3px solid transparent;
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold-light);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }
.loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px; text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.8rem 2rem;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.navbar.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
    max-width: 1300px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none;
}
.nav-logo-icon {
    width: 42px; height: 42px;
    /*background: linear-gradient(135deg, var(--gold), var(--gold-dark));*/
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900; font-size: 1.1rem;
    color: var(--bg-primary);
}
.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 1.3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex; list-style: none; gap: 0.3rem; align-items: center;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    padding: 0.5rem 1rem; border-radius: 8px;
    transition: all 0.3s;
}
.nav-links a:hover { color: var(--gold); background: rgba(240,185,11,0.08); }
.nav-cta {
    display: flex; gap: 0.6rem; align-items: center;
}
.icon-logo {
    height: 100%;
}
.logo {
    max-width: 150px;
    max-height: 40px;
}
.btn {
    padding: 0.65rem 1.5rem;
    border-radius: 10px; font-family: 'Inter', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    text-decoration: none; display: inline-flex;
    align-items: center; gap: 0.5rem;
    border: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(240,185,11,0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(240,185,11,0.5);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid rgba(240,185,11,0.3);
}
.btn-outline:hover {
    background: rgba(240,185,11,0.08);
    border-color: var(--gold);
}
.btn-green {
    background: linear-gradient(135deg, var(--green), #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16,185,129,0.5);
}
.btn-lg { padding: 0.85rem 2.2rem; font-size: 1rem; border-radius: 12px; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 5px;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--gold);
    transition: all 0.3s; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(240,185,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(139,92,246,0.05) 0%, transparent 50%),
    var(--bg-primary);
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}
.hero-bg-grid {
    position: absolute; inset: 0;
    /*background-image:*/
    /*        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),*/
    /*        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);*/
    /*background-size: 60px 60px;*/
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);

    background-image: url("https://ik.imagekit.io/a8gz9dz6l/lebaranslot88/Header?updatedAt=1777398247086");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(240,185,11,0.12), transparent 70%);
    top: -100px; left: 50%; transform: translateX(-50%);
    animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    from { opacity: 0.5; transform: translateX(-50%) scale(1); }
    to { opacity: 1; transform: translateX(-50%) scale(1.2); }
}
.hero-content {
    text-align: center; z-index: 10; max-width: 900px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 15px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(240,185,11,0.1);
    border: 1px solid rgba(240,185,11,0.2);
    padding: 0.4rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--gold); margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease both;
}
.hero-badge .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.15rem; color: var(--text-secondary);
    max-width: 600px; margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stats {
    display: flex; gap: 3rem; justify-content: center;
    margin-top: 4rem; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: var(--gold);
}
.hero-stat-label {
    font-size: 0.8rem; color: var(--text-muted);
    font-weight: 500; margin-top: 0.2rem;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 0.7rem 0;
    overflow: hidden;
}
.marquee-track {
    display: flex; gap: 3rem;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 0.85rem;
    color: var(--bg-primary);
    white-space: nowrap;
}
.marquee-item svg { width: 16px; height: 16px; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 5rem 2rem;
    max-width: 1300px; margin: 0 auto;
}
.section-header {
    text-align: center; margin-bottom: 3rem;
}
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-secondary);
    max-width: 600px; margin: 0 auto;
    font-size: 1rem; line-height: 1.7;
}
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PROVIDER SECTION ===== */
.providers-section {
    background: var(--bg-secondary);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.providers-inner {
    max-width: 1300px; margin: 0 auto;
}
.providers-scroll {
    display: flex; gap: 2rem;
    justify-content: center; flex-wrap: wrap;
}
.provider-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    display: flex; align-items: center; gap: 1rem;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}
.provider-card:hover {
    border-color: rgba(240,185,11,0.3);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.provider-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
    flex-shrink: 0;
}
.provider-name {
    font-weight: 700; font-size: 1rem;
}
.provider-count {
    font-size: 0.8rem; color: var(--text-muted);
}

/* ===== GAMES GRID ===== */
.games-section { background: var(--bg-primary); }
.games-tabs {
    display: flex; gap: 0.5rem;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 2rem;
}
.game-tab {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.game-tab:hover, .game-tab.active {
    background: rgba(240,185,11,0.1);
    border-color: var(--gold);
    color: var(--gold);
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,185,11,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}
.game-img-wrap {
    position: relative;
    height: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2332, #0f1923);
    display: flex; align-items: center; justify-content: center;
}
.game-img-wrap .game-emoji {
    font-size: 4rem;
    transition: transform 0.4s;
}
.game-card:hover .game-emoji {
    transform: scale(1.15);
}
.game-rtp {
    position: absolute; top: 10px; right: 10px;
    background: rgba(16,185,129,0.9);
    color: white; padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem; font-weight: 700;
}
.game-hot {
    position: absolute; top: 10px; left: 10px;
    background: rgba(239,68,68,0.9);
    color: white; padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; gap: 0.3rem;
}
.game-info {
    padding: 1rem;
}
.game-name {
    font-weight: 700; font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.game-provider {
    font-size: 0.8rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 0.4rem;
}
.game-provider-dot {
    width: 6px; height: 6px; border-radius: 50%;
}
.game-play-overlay {
    position: absolute; inset: 0;
    background: rgba(10,14,23,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.game-card:hover .game-play-overlay { opacity: 1; }
.game-play-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 700; font-size: 0.85rem;
    transform: scale(0.8);
    transition: transform 0.3s;
}
.game-card:hover .game-play-btn { transform: scale(1); }

/* ===== PROMOTIONS ===== */
.promo-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
}
.promo-inner {
    max-width: 1300px; margin: 0 auto;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}
.promo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,185,11,0.3);
    box-shadow: var(--shadow-gold);
}
.promo-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.promo-percentage {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem; font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.promo-title {
    font-weight: 700; font-size: 1.15rem;
    margin: 0.8rem 0 0.5rem;
}
.promo-desc {
    font-size: 0.9rem; color: var(--text-secondary);
    line-height: 1.6;
}
.promo-tag {
    display: inline-block;
    background: rgba(240,185,11,0.1);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* ===== ADVANTAGES ===== */
.advantages-section {
    background: var(--bg-primary);
    padding: 5rem 2rem;
}
.advantages-inner {
    max-width: 1300px; margin: 0 auto;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}
.advantage-card:hover {
    border-color: rgba(240,185,11,0.2);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.advantage-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.advantage-title {
    font-weight: 700; font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.advantage-desc {
    font-size: 0.9rem; color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ABOUT / SEO CONTENT ===== */
.about-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
}
.about-inner {
    max-width: 1300px; margin: 0 auto;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 800;
    margin-bottom: 1.5rem;
}
.about-text h2 .gold { color: var(--gold); }
.about-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.about-text strong { color: var(--text-primary); }
.about-sidebar {
    display: flex; flex-direction: column; gap: 1.5rem;
}
.about-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
}
.about-stat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.about-stat-info h4 {
    font-weight: 700; font-size: 1rem;
}
.about-stat-info p {
    font-size: 0.85rem; color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--bg-primary);
    padding: 5rem 2rem;
}
.faq-inner {
    max-width: 800px; margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(240,185,11,0.2); }
.faq-item.open { border-color: rgba(240,185,11,0.3); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 20px; height: 20px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(139,92,246,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-inner {
    max-width: 700px; margin: 0 auto;
}
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem; margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* Hero About */
.about-hero {
    position: relative;
    padding: 3rem 2rem 5rem;
    background: radial-gradient(ellipse at 50% 0%, rgba(240,185,11,0.08) 0%, transparent 60%),
    var(--bg-primary);
    overflow: hidden;
}
.about-hero-bg {
    position: absolute; inset: 0;
    /*background-image:*/
    /*        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),*/
    /*        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);*/
    /*background-size: 60px 60px;*/
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);

    background-image: url("https://ik.imagekit.io/a8gz9dz6l/lebaranslot88/Header?updatedAt=1777398247086");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.about-hero-glow {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(240,185,11,0.1), transparent 70%);
    top: -150px; left: 50%; transform: translateX(-50%);
}
.about-hero-content {
    max-width: 1300px; margin: 0 auto;
    text-align: center; position: relative; z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 15px;
}
.about-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(240,185,11,0.1);
    border: 1px solid rgba(240,185,11,0.2);
    padding: 0.4rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--gold); margin-bottom: 1.5rem;
}
.about-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 1.5rem;
}
.about-hero h1 .gold { color: var(--gold); }
.about-hero h1 .gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero-desc {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 700px; margin: 0 auto; line-height: 1.8;
}

/* Section Common */
.section { padding: 4rem 2rem; max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-secondary);
    max-width: 600px; margin: 0 auto;
    font-size: 1rem; line-height: 1.7;
}
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Story Section */
.story-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
}
.story-inner {
    max-width: 1300px; margin: 0 auto;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-visual {
    position: relative;
}
.story-card-main {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.story-card-main::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--purple));
}
.story-year {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem; font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.story-year-label {
    font-size: 1.2rem; font-weight: 700;
    color: var(--text-primary); margin-top: 0.5rem;
}
.story-year-desc {
    color: var(--text-secondary); font-size: 0.95rem;
    line-height: 1.7; margin-top: 1rem;
}
.story-float-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 800; font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(240,185,11,0.3);
}
.story-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 800;
    margin-bottom: 1.5rem; line-height: 1.3;
}
.story-text h2 .gold { color: var(--gold); }
.story-text p {
    color: var(--text-secondary);
    line-height: 1.9; margin-bottom: 1rem;
    font-size: 0.95rem;
}
.story-text strong { color: var(--text-primary); }

/* Timeline */
.timeline-section {
    background: var(--bg-primary);
    padding: 5rem 2rem;
}
.timeline-inner {
    max-width: 900px; margin: 0 auto;
}
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--purple), var(--green));
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}
.timeline-dot {
    position: absolute; left: -33px; top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 15px rgba(240,185,11,0.4);
}
.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 0.85rem;
    color: var(--gold); margin-bottom: 0.3rem;
}
.timeline-title {
    font-weight: 700; font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.9rem; line-height: 1.7;
}

/* Visi Misi */
.visi-misi-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
}
.visi-misi-inner {
    max-width: 1300px; margin: 0 auto;
}
.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}
.vm-card:hover {
    border-color: rgba(240,185,11,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.vm-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
}
.vm-card.visi::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.vm-card.misi::before {
    background: linear-gradient(90deg, var(--purple), var(--blue));
}
.vm-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.vm-card.visi .vm-icon {
    background: rgba(240,185,11,0.1);
}
.vm-card.misi .vm-icon {
    background: rgba(139,92,246,0.1);
}
.vm-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    margin-bottom: 1rem;
}
.vm-text {
    color: var(--text-secondary);
    line-height: 1.8; font-size: 0.95rem;
}
.vm-list {
    list-style: none; margin-top: 1rem;
}
.vm-list li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem; line-height: 1.6;
}
.vm-list li::before {
    content: '✦';
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Core Values */
.values-section {
    background: var(--bg-primary);
    padding: 5rem 2rem;
}
.values-inner {
    max-width: 1300px; margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
}
.value-card:hover {
    border-color: rgba(240,185,11,0.2);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.value-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
}
.value-title {
    font-weight: 700; font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.value-desc {
    color: var(--text-secondary);
    font-size: 0.9rem; line-height: 1.7;
}

/* Team Section */
.team-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
}
.team-inner {
    max-width: 1300px; margin: 0 auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
}
.team-card:hover {
    border-color: rgba(240,185,11,0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    border: 3px solid rgba(240,185,11,0.3);
}
.team-name {
    font-weight: 700; font-size: 1.05rem;
    margin-bottom: 0.2rem;
}
.team-role {
    color: var(--gold);
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 0.8rem;
}
.team-desc {
    color: var(--text-secondary);
    font-size: 0.85rem; line-height: 1.6;
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, rgba(240,185,11,0.05), rgba(139,92,246,0.03));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 2rem;
}
.stats-inner {
    max-width: 1100px; margin: 0 auto;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-item {
    text-align: center;
    padding: 1.5rem;
}
.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem; font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem; font-weight: 500;
    margin-top: 0.3rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
    padding: 5rem 2rem;
}
.faq-inner {
    max-width: 800px; margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(240,185,11,0.2); }
.faq-item.open { border-color: rgba(240,185,11,0.3); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
    transition: transform 0.3s; flex-shrink: 0;
    width: 20px; height: 20px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8; font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(139,92,246,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem; margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-green {
    background: linear-gradient(135deg, var(--green), #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16,185,129,0.5);
}

/* Hero */
.policy-hero {
    position: relative;
    padding: 2rem 2rem 4rem;
    background: radial-gradient(ellipse at 50% 0%, rgba(240,185,11,0.06) 0%, transparent 60%),
    var(--bg-primary);
    overflow: hidden;
}
.policy-hero-bg {
    position: absolute; inset: 0;
    /*background-image:*/
    /*        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),*/
    /*        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);*/
    /*background-size: 60px 60px;*/
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);

    background-image: url("https://ik.imagekit.io/a8gz9dz6l/lebaranslot88/Header?updatedAt=1777398247086");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.policy-hero-content {
    max-width: 1100px; margin: 0 auto;
    text-align: center; position: relative; z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 15px;
}
.policy-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    padding: 0.4rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--green); margin-bottom: 1.5rem;
}
.policy-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 1.5rem;
}
.policy-hero h1 .gold { color: var(--gold); }
.policy-hero h1 .gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.policy-hero-desc {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 650px; margin: 0 auto; line-height: 1.8;
}
.policy-updated {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--text-muted); font-size: 0.85rem;
}

/* TOC */
.toc-section {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.toc-inner {
    max-width: 1100px; margin: 0 auto;
}
.toc-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 1.2rem;
    margin-bottom: 1.2rem; color: var(--gold);
}
.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.6rem;
}
.toc-link {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.7rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
}
.toc-link:hover {
    background: var(--bg-card-hover);
    border-color: rgba(240,185,11,0.2);
    color: var(--gold);
    transform: translateX(4px);
}
.toc-num {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(240,185,11,0.1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* Policy Content */
.policy-content {
    max-width: 1100px; margin: 0 auto;
    padding: 4rem 2rem;
}
.policy-section {
    margin-bottom: 3rem;
}
.policy-section-anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}
.policy-section-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.policy-section-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.policy-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 800;
}
.policy-section h2 .gold { color: var(--gold); }
.policy-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-primary);
}
.policy-section p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.policy-section p strong { color: var(--text-primary); }
.policy-section ul, .policy-section ol {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}
.policy-section li strong { color: var(--text-primary); }

.policy-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.policy-highlight p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}
.policy-highlight .highlight-title {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s;
}
.info-card:hover {
    border-color: rgba(240,185,11,0.2);
    transform: translateY(-3px);
}
.info-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.info-card h4 {
    font-weight: 700; font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.right-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex; gap: 1rem;
    transition: all 0.3s;
}
.right-card:hover {
    border-color: rgba(240,185,11,0.2);
    background: var(--bg-card-hover);
}
.right-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.right-card h4 {
    font-weight: 700; font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.right-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}
.faq-inner {
    max-width: 800px; margin: 0 auto;
}
.section-header {
    text-align: center; margin-bottom: 3rem;
}
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-secondary);
    max-width: 600px; margin: 0 auto;
    font-size: 1rem; line-height: 1.7;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(240,185,11,0.2); }
.faq-item.open { border-color: rgba(240,185,11,0.3); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
    transition: transform 0.3s; flex-shrink: 0;
    width: 20px; height: 20px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8; font-size: 0.9rem;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(139,92,246,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem; margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-green {
    background: linear-gradient(135deg, var(--green), #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16,185,129,0.5);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.contact-card-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    background: rgba(16,185,129,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}
.contact-card-text h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.contact-card-text p {
    color: var(--text-secondary);
    font-size: 0.95rem; line-height: 1.7;
}
.contact-card-text .contact-info {
    display: flex; gap: 1.5rem; margin-top: 1rem;
    flex-wrap: wrap;
}
.contact-card-text .contact-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; color: var(--text-secondary);
}
.contact-card-text .contact-item span {
    color: var(--gold);
}

.faq-hero {
    position: relative;
    padding: 2rem 2rem 4rem;
    background: radial-gradient(ellipse at 50% 0%, rgba(240,185,11,0.06) 0%, transparent 60%),
    var(--bg-primary);
    overflow: hidden;
}
.faq-hero-bg {
    position: absolute; inset: 0;
    /*background-image:*/
    /*        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),*/
    /*        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);*/
    /*background-size: 60px 60px;*/
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);

    background-image: url("https://ik.imagekit.io/a8gz9dz6l/lebaranslot88/Header?updatedAt=1777398247086");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.faq-hero-content {
    max-width: 1100px; margin: 0 auto;
    text-align: center; position: relative; z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 15px;
}
.faq-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    padding: 0.4rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--blue); margin-bottom: 1.5rem;
}
.faq-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 1.5rem;
}
.faq-hero h1 .gold { color: var(--gold); }
.faq-hero h1 .gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-hero-desc {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 650px; margin: 0 auto; line-height: 1.8;
}

.faq-main {
    max-width: 1100px; margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.faq-category {
    margin-bottom: 2.5rem;
}
.faq-category-header {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}
.faq-cat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.faq-cat-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem; font-weight: 800;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(240,185,11,0.2); }
.faq-item.open { border-color: rgba(240,185,11,0.3); background: var(--bg-card-hover); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s;
    user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
    transition: transform 0.3s; flex-shrink: 0;
    width: 20px; height: 20px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8; font-size: 0.9rem;
}
.faq-answer-inner strong { color: var(--text-primary); }
.faq-answer-inner ul { margin: 0.5rem 0 0.8rem 1.2rem; }
.faq-answer-inner li { margin-bottom: 0.3rem; }

.search-box {
    max-width: 600px; margin: 0 auto 3rem;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240,185,11,0.1);
}
.search-icon {
    position: absolute; left: 1.2rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px; height: 18px;
}
.no-results {
    text-align: center; padding: 2rem;
    color: var(--text-muted); font-size: 1rem;
    display: none;
}

.cta-section {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(139,92,246,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem; margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-green {
    background: linear-gradient(135deg, var(--green), #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16,185,129,0.5);
}

.article-hero {
    position: relative;
    padding: 2rem 2rem 4rem;
    background: radial-gradient(ellipse at 50% 0%, rgba(240,185,11,0.06) 0%, transparent 60%),
    var(--bg-primary);
    overflow: hidden;
}
.article-hero-bg {
    position: absolute; inset: 0;
    /*background-image:*/
    /*        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),*/
    /*        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);*/
    /*background-size: 60px 60px;*/
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);

    background-image: url("https://ik.imagekit.io/a8gz9dz6l/lebaranslot88/Header?updatedAt=1777398247086");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.article-hero-content {
    max-width: 1300px; margin: 0 auto;
    text-align: center; position: relative; z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 15px;
}
.article-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.2);
    padding: 0.4rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--purple); margin-bottom: 1.5rem;
}
.article-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 1.5rem;
}
.article-hero h1 .gold { color: var(--gold); }
.article-hero h1 .gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.article-hero-desc {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 650px; margin: 0 auto; line-height: 1.8;
}

.article-main {
    max-width: 1300px; margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.article-filters {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
    justify-content: center; margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: rgba(240,185,11,0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}
.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s;
    display: flex; flex-direction: column;
    height: 100%;
}
.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,185,11,0.3);
    box-shadow: var(--shadow-gold);
}
.article-thumb {
    min-height: 200px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
}
.article-thumb img {
    max-width: 100%;
    max-height: 100%;
}
.article-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-card), transparent 60%);
}
.article-cat {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    background: rgba(10,14,23,0.8);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid var(--border);
}
.article-body {
    padding: 1.5rem;
    display: flex; flex-direction: column; flex: 1;
}
.article-meta {
    display: flex; gap: 1rem;
    font-size: 0.8rem; color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.article-meta span { display: flex; align-items: center; gap: 0.4rem; }
.article-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s;
}
.article-card:hover .article-title { color: var(--gold); }
.article-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem; line-height: 1.7;
    margin-bottom: 1.5rem; flex: 1;
}
.article-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--gold); font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: gap 0.3s;
}
.article-link:hover { gap: 0.8rem; }

.no-results {
    text-align: center; padding: 3rem;
    color: var(--text-muted); font-size: 1rem;
    display: none; grid-column: 1 / -1;
}

.pagination {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 3rem;
}
.page-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.page-btn:hover, .page-btn.active {
    background: rgba(240,185,11,0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.cta-section {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(139,92,246,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 1rem;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem; margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-green {
    background: linear-gradient(135deg, var(--green), #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16,185,129,0.5);
}

.article-hero {
    position: relative; padding: 2rem 2rem 3rem;
    background: radial-gradient(ellipse at 50% 0%, rgba(240,185,11,0.06) 0%, transparent 60%), var(--bg-primary);
    overflow: hidden;
}
.article-hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 10; }
.article-category-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
    padding: 0.35rem 1rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; color: var(--green);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.2rem;
}
.article-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem;
}
.article-hero h1 .gold { color: var(--gold); }
.article-hero-excerpt {
    font-size: 1.1rem; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 1.5rem;
}
.article-meta-bar {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    padding-top: 1.2rem; border-top: 1px solid var(--border);
}
.meta-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--text-muted);
}
.author-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 800; color: var(--bg-primary);
}
.share-btns { margin-left: auto; display: flex; gap: 0.5rem; }
.share-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
}
.share-btn:hover { border-color: var(--gold); background: rgba(240,185,11,0.08); }
.share-btn svg { width: 16px; height: 16px; fill: var(--text-muted); }
.share-btn:hover svg { fill: var(--gold); }

/* Article Layout */
.article-layout {
    max-width: 1100px; margin: 0 auto;
    padding: 2rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 3rem;
}
.article-content-area { min-width: 0; }

/* Table of Contents */
.toc-sidebar {
    position: sticky; top: 100px;
    align-self: start;
}
.toc-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem;
}
.toc-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 0.95rem;
    margin-bottom: 1rem; color: var(--gold);
    display: flex; align-items: center; gap: 0.5rem;
}
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 0.3rem; }
.toc-list a {
    display: block; padding: 0.5rem 0.8rem;
    color: var(--text-muted); text-decoration: none;
    font-size: 0.85rem; border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all 0.3s; line-height: 1.5;
}
.toc-list a:hover, .toc-list a.active {
    color: var(--gold); background: rgba(240,185,11,0.05);
    border-left-color: var(--gold);
}

/* Article Body */
.article-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.article-body h2 .gold { color: var(--gold); }
.article-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    margin: 2rem 0 0.8rem; color: var(--text-primary);
}
.article-body p {
    color: var(--text-secondary); line-height: 1.9;
    font-size: 0.98rem; margin-bottom: 1.2rem;
}
.article-body p strong { color: var(--text-primary); }
.article-body p a { color: var(--text-primary); }
.article-body ul, .article-body ol {
    color: var(--text-secondary); margin: 0.5rem 0 1.2rem 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; line-height: 1.7; font-size: 0.95rem; }
.article-body li strong { color: var(--text-primary); }

.article-body .highlight-box {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 14px 14px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.highlight-box .hb-title {
    font-weight: 700; color: var(--gold);
    margin-bottom: 0.5rem; font-size: 0.95rem;
}
.highlight-box p { color: var(--text-secondary); margin: 0; font-size: 0.9rem; line-height: 1.8; }

.article-body .stat-table {
    width: 100%; border-collapse: collapse;
    margin: 1.5rem 0; border-radius: 12px;
    overflow: hidden; border: 1px solid var(--border);
}
.stat-table thead { background: var(--bg-card-hover); }
.stat-table th {
    padding: 0.8rem 1rem; text-align: left;
    font-size: 0.85rem; font-weight: 700;
    color: var(--gold); text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-table td {
    padding: 0.7rem 1rem; font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}
.stat-table tr:hover td { background: rgba(240,185,11,0.03); }
.rtp-badge {
    display: inline-block; padding: 0.15rem 0.5rem;
    border-radius: 6px; font-size: 0.8rem; font-weight: 700;
}
.rtp-high { background: rgba(16,185,129,0.15); color: var(--green); }
.rtp-med { background: rgba(240,185,11,0.15); color: var(--gold); }

.article-body blockquote {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.5rem;
    margin: 1.5rem 0; font-style: italic;
    color: var(--text-secondary); font-size: 0.95rem;
    position: relative;
}
.article-body blockquote::before {
    content: '"'; font-family: 'Outfit', sans-serif;
    font-size: 3rem; color: var(--gold); opacity: 0.3;
    position: absolute; top: -0.2rem; left: 1rem;
}

/* Steps */
.step-list { counter-reset: step-counter; list-style: none; margin-left: 0; }
.step-list li {
    counter-increment: step-counter;
    padding: 1rem 1rem 1rem 4rem;
    position: relative; margin-bottom: 1rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px;
}
.step-list li::before {
    content: counter(step-counter);
    position: absolute; left: 1rem; top: 1rem;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
}

/* CTA in article */
.article-cta {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(139,92,246,0.05));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    margin: 2.5rem 0;
}
.article-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    margin-bottom: 0.8rem;
}
.article-cta p {
    color: var(--text-secondary); margin-bottom: 1.5rem;
}

/* Related Articles */
.related-section {
    max-width: 1100px; margin: 0 auto;
    padding: 3rem 2rem 4rem;
    border-top: 1px solid var(--border);
}
.related-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    margin-bottom: 2rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
}
.related-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.2rem;
    display: flex; gap: 1rem;
    transition: all 0.3s; cursor: pointer; text-decoration: none;
}
.related-card:hover {
    border-color: rgba(240,185,11,0.3);
    transform: translateY(-3px);
}
.related-thumb {
    width: 70px; height: 70px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; flex-shrink: 0;
}
.related-thumb img {
    max-width: 100%;
    max-height: 100%;
}
.related-info h4 {
    font-weight: 700; font-size: 0.92rem;
    margin-bottom: 0.3rem; line-height: 1.4;
    color: var(--text-primary);
}
.related-card:hover .related-info h4 { color: var(--gold); }
.related-info .r-meta {
    font-size: 0.78rem; color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}
.footer-inner {
    max-width: 1300px; margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem; line-height: 1.8;
    margin-top: 1rem;
}
.footer-col h4 {
    font-weight: 700; font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.footer-payment {
    display: flex; gap: 0.8rem; flex-wrap: wrap;
}
.payment-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(240,185,11,0.3);
    opacity: 0; transform: translateY(20px);
    transition: all 0.3s; z-index: 100;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== TOAST ===== */
.toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex; align-items: center; gap: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 0.9rem; font-weight: 500;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0; right: -300px;
        width: 280px; height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s;
        gap: 0.5rem;
        border-left: 1px solid var(--border);
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .visi-misi-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: 1fr; }
    .toc-sidebar {
        position: static; margin-bottom: 2rem;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .hero-stats { gap: 1.5rem; }
    .hero-stat-num { font-size: 1.5rem; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .game-img-wrap { height: 75%; }
    .promo-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .timeline { padding-left: 30px; }
    .timeline-dot { left: -23px; }

    .toc-grid { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; }
    .rights-grid { grid-template-columns: 1fr; }
    .contact-card { flex-direction: column; text-align: center; }
    .contact-card-text .contact-info { justify-content: center; }
    .policy-section h2 { font-size: 1.3rem; }

    .faq-hero h1 { font-size: 2rem; }
    .search-input { padding: 0.9rem 1rem 0.9rem 2.8rem; font-size: 0.9rem; }

    .article-grid { grid-template-columns: 1fr; }
    .article-thumb { height: 160px; }

    .article-hero h1 { font-size: 1.6rem; }
    .article-meta-bar { gap: 0.8rem; }
    .share-btns { margin-left: 0; margin-top: 0.5rem; width: 100%; justify-content: flex-start; }
    .stat-table { font-size: 0.8rem; }
    .stat-table th, .stat-table td { padding: 0.5rem 0.6rem; }
    .related-grid { grid-template-columns: 1fr; }

}
