/* roulang page: index */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-card: #083121;
            --accent-gold: #F59E0B;
            --accent-gold-light: #FCD34D;
            --accent-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
            --accent-red: #DC2626;
            --accent-red-dark: #991B1B;
            --text-primary: #F8FAFC;
            --text-secondary: #D1FAE5;
            --text-muted: #A3A375;
            --border-gold: rgba(245, 158, 11, 0.35);
            --shadow-gold: 0 6px 28px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.35);
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --container-max: 1280px;
            --font-heading: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
            --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease, opacity 0.2s ease;
        }
        a:hover {
            color: var(--accent-gold-light);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
        }

        ::selection {
            background: var(--accent-gold);
            color: var(--bg-primary);
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 31, 20, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-gold);
            transition: background 0.3s ease;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 24px;
        }

        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 0.02em;
            color: var(--accent-gold-light);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .logo i {
            -webkit-text-fill-color: #F59E0B;
            font-size: 1.4rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-gold-light);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline {
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1.5px solid var(--border-gold);
            background: transparent;
            color: var(--accent-gold);
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-gold-light);
            border-color: var(--accent-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245,158,11,0.18);
        }

        .btn-solid {
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(245,158,11,0.35);
        }
        .btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.5);
            filter: brightness(1.08);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 1.3rem;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        .mobile-menu-toggle:hover {
            background: rgba(245,158,11,0.1);
        }

        @media (max-width: 940px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 20px;
                right: 20px;
                background: rgba(11, 46, 30, 0.97);
                backdrop-filter: blur(20px);
                border: 1px solid var(--border-gold);
                border-radius: var(--radius-md);
                flex-direction: column;
                padding: 12px 8px;
                gap: 2px;
                box-shadow: 0 16px 40px rgba(0,0,0,0.6);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                justify-content: center;
            }
            .mobile-menu-toggle {
                display: inline-flex;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                height: 56px;
                gap: 10px;
            }
            .logo {
                font-size: 0.95rem;
            }
            .logo i {
                font-size: 1.1rem;
            }
            .btn-outline, .btn-solid {
                padding: 7px 14px;
                font-size: 0.8rem;
            }
            .nav-actions {
                gap: 6px;
            }
            .nav-links {
                top: 56px;
                left: 12px;
                right: 12px;
            }
        }

        /* ============ HERO ============ */
        .hero-section {
            padding: 120px 0 70px;
            background: linear-gradient(180deg, rgba(5,31,20,0.65) 0%, rgba(11,46,30,0.92) 100%), url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg-primary), transparent);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(245,158,11,0.13);
            border: 1px solid var(--border-gold);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-gold-light);
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 2.7rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 18px;
            color: #FFFFFF;
            letter-spacing: -0.01em;
        }
        .hero-title span {
            background: var(--accent-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 540px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-hero-primary {
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            box-shadow: var(--shadow-gold);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(245,158,11,0.5);
        }
        .btn-hero-secondary {
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            border: 2px solid var(--border-gold);
            background: transparent;
            color: var(--accent-gold-light);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-secondary:hover {
            background: rgba(245,158,11,0.08);
            border-color: var(--accent-gold-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(245,158,11,0.15);
        }
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-visual-card {
            background: rgba(8,49,33,0.7);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 30px 24px;
            text-align: center;
            backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
            max-width: 380px;
            width: 100%;
        }
        .hero-visual-card .app-icon-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 16px;
        }
        .hero-visual-card .app-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(245,158,11,0.15);
            border: 1.5px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--accent-gold);
        }
        .hero-visual-card .app-amount {
            font-family: var(--font-heading);
            font-size: 2.1rem;
            font-weight: 800;
            background: var(--accent-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 6px 0;
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-desc {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-badges {
                justify-content: center;
            }
            .hero-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 520px) {
            .hero-section {
                padding: 100px 0 50px;
            }
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .btn-hero-primary, .btn-hero-secondary {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }

        /* ============ SECTIONS ============ */
        .section {
            padding: 60px 0;
        }
        .section-sm {
            padding: 40px 0;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #FFFFFF;
            line-height: 1.25;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            line-height: 1.6;
            max-width: 680px;
        }

        .text-left .section-subtitle,
        .text-left .section-title {
            margin-left: 0;
        }

        .text-center .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        /* ============ PAIN POINTS (痛点) ============ */
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            align-items: stretch;
        }
        .pain-card {
            background: var(--bg-card);
            border: 1px solid rgba(245,158,11,0.15);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: all 0.25s ease;
            position: relative;
        }
        .pain-card:hover {
            border-color: var(--border-gold);
            box-shadow: 0 8px 24px rgba(245,158,11,0.1);
            transform: translateY(-2px);
        }
        .pain-card-icon {
            font-size: 1.6rem;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }
        .pain-card-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #FFFFFF;
        }
        .pain-card-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ============ SOLUTION / SCENARIO ============ */
        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .solution-img {
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
        }
        .solution-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .solution-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .solution-list li i {
            color: var(--accent-gold);
            font-size: 1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        @media (max-width: 800px) {
            .solution-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        /* ============ SOCIAL PROOF ============ */
        .review-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            border: 1px solid rgba(245,158,11,0.12);
            transition: all 0.2s ease;
        }
        .review-card:hover {
            border-color: var(--border-gold);
        }
        .review-stars {
            color: var(--accent-gold);
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        .review-text {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.55;
            margin-bottom: 10px;
        }
        .review-author {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ============ INFO LIST (CMS) ============ */
        .info-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 30px;
            align-items: start;
        }
        .info-main-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .info-item {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid rgba(245,158,11,0.1);
            transition: all 0.2s ease;
            align-items: center;
        }
        .info-item:hover {
            border-color: var(--border-gold);
            box-shadow: 0 4px 14px rgba(245,158,11,0.08);
            transform: translateX(3px);
        }
        .info-item-img {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid rgba(245,158,11,0.2);
        }
        .info-item-content h4 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
            color: #FFFFFF;
            line-height: 1.3;
        }
        .info-item-content p {
            font-size: 0.83rem;
            color: var(--text-muted);
            line-height: 1.4;
        }
        .info-sidebar {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-gold);
            padding: 24px 20px;
        }
        .info-sidebar h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }

        @media (max-width: 800px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============ PLAN COMPARISON ============ */
        .plan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .plan-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(245,158,11,0.15);
            padding: 28px 22px;
            text-align: center;
            transition: all 0.25s ease;
            position: relative;
        }
        .plan-card.featured {
            border-color: var(--accent-gold);
            box-shadow: 0 8px 32px rgba(245,158,11,0.2);
            transform: scale(1.03);
        }
        .plan-card .plan-tag {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-red);
            color: #FFF;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 4px 16px;
            border-radius: 20px;
            white-space: nowrap;
            letter-spacing: 0.03em;
        }
        .plan-name {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 6px;
            color: #FFFFFF;
        }
        .plan-amount {
            font-size: 2rem;
            font-weight: 800;
            background: var(--accent-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 8px 0;
        }
        .plan-features {
            list-style: none;
            text-align: left;
            margin: 16px 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .plan-features li i {
            color: var(--accent-gold);
            margin-right: 6px;
        }

        @media (max-width: 640px) {
            .plan-card.featured {
                transform: none;
            }
        }

        /* ============ TRUST BAR ============ */
        .trust-bar {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 20px 0;
        }
        .trust-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px 40px;
            align-items: center;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .trust-item i {
            color: var(--accent-gold);
            font-size: 1.1rem;
        }

        /* ============ CONVERSION FORM ============ */
        .conversion-section {
            background: linear-gradient(135deg, var(--bg-card) 0%, #0A3B26 100%);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            text-align: center;
        }
        .conv-form {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }
        .conv-form input {
            padding: 13px 18px;
            border-radius: 28px;
            border: 1.5px solid var(--border-gold);
            background: rgba(5,31,20,0.6);
            color: #FFF;
            font-size: 0.95rem;
            min-width: 240px;
            outline: none;
            transition: border-color 0.2s ease;
        }
        .conv-form input:focus {
            border-color: var(--accent-gold-light);
        }
        .conv-form .btn-solid {
            border-radius: 28px;
            padding: 13px 28px;
            font-size: 1rem;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            padding: 50px 0 28px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.87rem;
            transition: color 0.2s ease;
        }
        .footer-col ul li a:hover {
            color: var(--accent-gold-light);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(245,158,11,0.15);
            padding-top: 20px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(220,38,38,0.15);
            border: 1px solid rgba(220,38,38,0.4);
            border-radius: 20px;
            padding: 4px 14px;
            font-weight: 700;
            font-size: 0.78rem;
            color: #FCA5A5;
            margin-top: 10px;
        }

        /* ============ REMAINING UTILITY CLASSES ============ */
        .text-left { text-align: left; }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 4px; }
        .mb-2 { margin-bottom: 8px; }
        .mb-3 { margin-bottom: 12px; }
        .mb-4 { margin-bottom: 16px; }
        .mb-6 { margin-bottom: 24px; }
        .mt-2 { margin-top: 8px; }
        .mt-4 { margin-top: 16px; }
        .mt-6 { margin-top: 24px; }
        .gap-2 { gap: 8px; }
        .gap-3 { gap: 12px; }
        .gap-4 { gap: 16px; }
        .flex-center { display: flex; align-items: center; }
        .flex-wrap { flex-wrap: wrap; }
        .font-bold { font-weight: 700; }

        /* ============ FAB ============ */
        .fab {
            position: fixed;
            left: 20px;
            bottom: 100px;
            z-index: 999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 40%, #FCD34D, #B45309);
            border: 2.5px solid #F59E0B;
            box-shadow: 0 6px 28px rgba(245,158,11,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.82;
            animation: fabFloat 3.5s ease-in-out infinite;
        }
        .fab:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 10px 34px rgba(245,158,11,0.55);
        }
        .fab i {
            font-size: 1.5rem;
            color: #051F14;
        }
        .fab-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 16px;
            height: 16px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid #FFF;
        }

        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        @media (max-width: 640px) {
            .fab {
                left: 14px;
                bottom: 80px;
                width: 48px;
                height: 48px;
            }
        }

        /* ============ BONUS SECTIONS STYLES ============ */
        .method-band {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 36px 28px;
            border: 1px solid rgba(245,158,11,0.12);
        }
        .method-band img {
            border-radius: var(--radius-lg);
        }
        @media (max-width: 700px) {
            .method-band {
                grid-template-columns: 1fr;
                padding: 24px 18px;
            }
        }
        .objection-accordion details {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid rgba(245,158,11,0.1);
            padding: 16px 20px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .objection-accordion details:hover {
            border-color: var(--border-gold);
        }
        .objection-accordion summary {
            font-weight: 700;
            color: #FFFFFF;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .objection-accordion summary::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-gold);
        }
        .objection-accordion details[open] summary::after {
            content: '\f106';
        }
        .objection-accordion .answer {
            margin-top: 10px;
            color: var(--text-muted);
            line-height: 1.55;
            font-size: 0.9rem;
        }
        .contributor-list {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .contributor-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            border-radius: 30px;
            padding: 8px 18px;
            border: 1px solid rgba(245,158,11,0.15);
        }
        .contributor-chip span {
            font-weight: 600;
            color: var(--text-secondary);
        }

/* roulang page: category1 */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-card: #083121;
            --accent-gold: #F59E0B;
            --accent-gold-light: #FCD34D;
            --accent-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
            --accent-red: #DC2626;
            --accent-red-dark: #991B1B;
            --text-primary: #F8FAFC;
            --text-secondary: #D1FAE5;
            --text-muted: #A3A375;
            --border-gold: rgba(245, 158, 11, 0.35);
            --shadow-gold: 0 6px 28px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.35);
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --container-max: 1280px;
            --font-heading: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
            --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease, opacity 0.2s ease;
        }

        a:hover {
            color: var(--accent-gold-light);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 31, 20, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-gold);
            transition: background 0.3s ease;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 24px;
        }

        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 0.02em;
            color: var(--accent-gold-light);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .logo i {
            -webkit-text-fill-color: #F59E0B;
            font-size: 1.4rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-gold-light);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline {
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1.5px solid var(--border-gold);
            background: transparent;
            color: var(--accent-gold);
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-gold-light);
            border-color: var(--accent-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245,158,11,0.18);
        }

        .btn-solid {
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(245,158,11,0.35);
        }

        .btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.5);
            filter: brightness(1.08);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 1.3rem;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(245,158,11,0.1);
        }

        /* ============ HERO ============ */
        .hero-section {
            padding: 120px 0 80px;
            background: linear-gradient(180deg, #051F14 0%, #0B2E1E 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-gold);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-text {
            flex: 1 1 480px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245,158,11,0.12);
            border: 1px solid var(--border-gold);
            border-radius: 30px;
            padding: 6px 18px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--accent-gold-light);
            margin-bottom: 20px;
        }

        .hero-badge i {
            color: var(--accent-red);
            font-size: 0.75rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero-text h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .hero-text h1 span {
            background: var(--accent-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.7;
            max-width: 580px;
        }

        .hero-visual {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-visual img {
            max-width: 420px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-gold);
            border: 1px solid var(--border-gold);
        }

        /* ============ FISHING GAME CARDS ============ */
        .section-fishing {
            padding: 70px 0;
            background: var(--bg-secondary);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-header h2 i {
            color: var(--accent-gold);
            font-size: 1.6rem;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }

        .game-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(245,158,11,0.3);
            border-color: rgba(245,158,11,0.6);
        }

        .game-card-img {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: #041A10;
        }

        .game-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .game-card:hover .game-card-img img {
            transform: scale(1.06);
        }

        .game-card-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--accent-red-dark);
            color: #F8FAFC;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.04em;
            border: 1px solid var(--accent-red);
            z-index: 2;
        }

        .game-card-body {
            padding: 18px 16px 20px;
        }

        .game-card-body h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .game-card-body .provider {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .game-card-body .features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .feature-chip {
            font-size: 0.72rem;
            background: rgba(245,158,11,0.08);
            border: 1px solid var(--border-gold);
            border-radius: 16px;
            padding: 4px 12px;
            color: var(--accent-gold-light);
            font-weight: 500;
        }

        .btn-play {
            width: 100%;
            padding: 11px 0;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.25s ease;
        }

        .btn-play:hover {
            box-shadow: 0 6px 20px rgba(245,158,11,0.45);
            transform: translateY(-2px);
        }

        /* ============ MILESTONES ============ */
        .milestones {
            padding: 60px 0;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .milestones-grid {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: space-around;
        }

        .milestone-item {
            text-align: center;
            flex: 1 1 180px;
            min-width: 140px;
        }

        .milestone-item .number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--accent-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1.1;
        }

        .milestone-item .label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 4px;
            font-weight: 500;
        }

        /* ============ HOW IT WORKS ============ */
        .how-works {
            padding: 70px 0;
            background: var(--bg-secondary);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 28px;
            margin-top: 24px;
        }

        .step-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
            transition: all 0.25s ease;
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-4px);
            border-color: rgba(245,158,11,0.55);
        }

        .step-number {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--accent-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 10px;
        }

        .step-card h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ CTA BANNER ============ */
        .cta-banner {
            padding: 60px 0;
            background: linear-gradient(135deg, #0B2E1E 0%, #051F14 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
            top: -60px;
            right: -80px;
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            border: 1.5px solid var(--border-gold);
            box-shadow: var(--shadow-gold);
        }

        .cta-text {
            flex: 1 1 320px;
        }

        .cta-text h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .cta-text p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
        }

        .cta-btn-wrap {
            flex-shrink: 0;
        }

        .btn-cta-large {
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            box-shadow: 0 6px 24px rgba(245,158,11,0.4);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(245,158,11,0.6);
        }

        /* ============ BLOG LIST ============ */
        .blog-section {
            padding: 60px 0;
            background: var(--bg-primary);
        }

        .blog-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }

        .blog-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.25s ease;
        }

        .blog-item:hover {
            transform: translateY(-4px);
            border-color: rgba(245,158,11,0.55);
        }

        .blog-item img {
            aspect-ratio: 16/9;
            object-fit: cover;
            width: 100%;
        }

        .blog-item-body {
            padding: 16px;
        }

        .blog-item-body h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .blog-item-body .meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ============ FAQ ============ */
        .faq-section {
            padding: 60px 0;
            background: var(--bg-secondary);
        }

        .faq-grid {
            display: grid;
            gap: 16px;
            max-width: 800px;
            margin: 24px auto 0;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 20px 22px;
            border: 1px solid var(--border-gold);
            transition: all 0.2s ease;
        }

        .faq-item:hover {
            border-color: rgba(245,158,11,0.55);
        }

        .faq-item h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--accent-gold-light);
        }

        .faq-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #041A10;
            padding: 50px 0 30px;
            border-top: 1px solid var(--border-gold);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--accent-gold-light);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--border-gold);
            padding-top: 22px;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(245,158,11,0.08);
            border: 1px solid var(--border-gold);
            border-radius: 20px;
            padding: 6px 18px;
            font-size: 0.78rem;
            margin-top: 10px;
            color: var(--accent-gold-light);
            font-weight: 600;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.97);
                flex-direction: column;
                padding: 16px 20px;
                gap: 4px;
                border-bottom: 1px solid var(--border-gold);
                backdrop-filter: blur(12px);
            }
            .nav-links.open {
                display: flex;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .game-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 520px) {
            .game-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .cta-text h2 {
                font-size: 1.5rem;
            }
        }

/* roulang page: article */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-card: #083121;
            --bg-card-alt: #0A3624;
            --accent-gold: #F59E0B;
            --accent-gold-light: #FCD34D;
            --accent-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
            --accent-red: #DC2626;
            --accent-red-dark: #991B1B;
            --text-primary: #F8FAFC;
            --text-secondary: #D1FAE5;
            --text-muted: #A3A375;
            --border-gold: rgba(245, 158, 11, 0.35);
            --border-gold-light: rgba(245, 158, 11, 0.2);
            --shadow-gold: 0 6px 28px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.35);
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --container-max: 1280px;
            --font-heading: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
            --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            padding-top: 64px;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease, opacity 0.2s ease;
        }
        a:hover {
            color: var(--accent-gold-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 31, 20, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-gold);
            transition: background 0.3s ease;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 24px;
        }
        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 0.02em;
            color: var(--accent-gold-light);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .logo i {
            -webkit-text-fill-color: #F59E0B;
            font-size: 1.4rem;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-gold-light);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-outline {
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1.5px solid var(--border-gold);
            background: transparent;
            color: var(--accent-gold);
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-gold-light);
            border-color: var(--accent-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245,158,11,0.18);
        }
        .btn-solid {
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(245,158,11,0.35);
        }
        .btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.5);
            filter: brightness(1.08);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 1.3rem;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        .mobile-menu-toggle:hover {
            background: rgba(245,158,11,0.1);
        }

        /* ============ ARTICLE PAGE SPECIFIC ============ */
        .article-main {
            padding: 48px 0 64px;
        }
        .article-layout {
            display: grid;
            grid-template-columns: 1fr;
            max-width: 860px;
            margin: 0 auto;
            gap: 32px;
        }
        .article-banner {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            position: relative;
            border: 1px solid var(--border-gold-light);
        }
        .article-banner img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/7;
            object-fit: cover;
            display: block;
        }
        .article-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5,31,20,0.9) 0%, rgba(5,31,20,0.15) 60%);
            pointer-events: none;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            padding: 0 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-gold-light);
            padding-bottom: 20px;
            margin-bottom: 8px;
        }
        .article-meta .badge-category {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(245,158,11,0.12);
            color: var(--accent-gold-light);
            padding: 5px 14px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            border: 1px solid var(--border-gold);
        }
        .article-meta .meta-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent-gold);
            opacity: 0.6;
        }
        .article-content {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--text-secondary);
        }
        .article-content h2 {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 36px 0 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-gold);
            line-height: 1.35;
        }
        .article-content h3 {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--accent-gold-light);
            margin: 28px 0 12px;
            line-height: 1.4;
        }
        .article-content p {
            margin-bottom: 18px;
            text-align: left;
        }
        .article-content ul, .article-content ol {
            margin: 16px 0 20px 24px;
            list-style-position: outside;
        }
        .article-content li {
            margin-bottom: 10px;
            padding-left: 4px;
        }
        .article-content strong {
            color: var(--accent-gold-light);
            font-weight: 600;
        }
        .article-content a {
            color: var(--accent-gold);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .article-content a:hover {
            color: var(--accent-gold-light);
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent-gold);
            background: var(--bg-card);
            margin: 24px 0;
            padding: 20px 24px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 1.05rem;
            box-shadow: inset 0 1px 0 rgba(245,158,11,0.1);
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            text-align: left;
            margin-top: 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            box-shadow: var(--shadow-gold);
        }
        .cta-section h3 {
            margin: 0;
            color: var(--text-primary);
            font-size: 1.3rem;
            font-weight: 700;
        }
        .cta-section p {
            margin: 8px 0 0;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .cta-section .btn-solid {
            padding: 12px 28px;
            font-size: 1rem;
            border-radius: 28px;
        }

        /* Related Posts */
        .related-section {
            margin-top: 40px;
            border-top: 1px solid var(--border-gold-light);
            padding-top: 32px;
        }
        .related-section h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
        }
        .related-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-gold-light);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            cursor: pointer;
        }
        .related-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
        }
        .related-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .related-card-body {
            padding: 16px;
        }
        .related-card-body h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .related-card-body .related-date {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Not Found */
        .not-found {
            text-align: left;
            padding: 48px 20px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-gold);
            color: var(--text-secondary);
        }
        .not-found h2 {
            font-size: 1.8rem;
            margin-bottom: 12px;
            color: var(--accent-gold-light);
        }
        .not-found a {
            color: var(--accent-gold);
            font-weight: 600;
            text-decoration: underline;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 16px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            opacity: 0.8;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 2px solid var(--border-gold);
            padding: 48px 0 24px;
            margin-top: 48px;
            color: var(--text-secondary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--accent-gold-light);
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: var(--accent-gold-light);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--border-gold-light);
            padding-top: 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(245,158,11,0.1);
            padding: 6px 16px;
            border-radius: 20px;
            margin-top: 10px;
            font-weight: 600;
            color: var(--accent-gold-light);
            border: 1px solid var(--border-gold-light);
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 20px;
                right: 20px;
                background: rgba(5,31,20,0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 12px;
                border-radius: var(--radius-md);
                border: 1px solid var(--border-gold);
                box-shadow: var(--shadow-gold);
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                padding: 12px 16px;
                border-radius: var(--radius-sm);
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-actions .btn-outline,
            .nav-actions .btn-solid {
                padding: 8px 16px;
                font-size: 0.82rem;
            }
            .article-layout {
                max-width: 100%;
                padding: 0 8px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                gap: 12px;
            }
            .logo {
                font-size: 0.95rem;
            }
            .article-banner img {
                aspect-ratio: 16/9;
            }
            .cta-section {
                flex-direction: column;
                text-align: left;
                align-items: flex-start;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .article-content h2 {
                font-size: 1.45rem;
            }
            .article-content h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 520px) {
            .nav-actions .btn-outline {
                padding: 7px 14px;
                font-size: 0.78rem;
            }
            .nav-actions .btn-solid {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .article-content {
                font-size: 0.98rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-card: #083121;
            --accent-gold: #F59E0B;
            --accent-gold-light: #FCD34D;
            --accent-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
            --accent-red: #DC2626;
            --accent-red-dark: #991B1B;
            --text-primary: #F8FAFC;
            --text-secondary: #D1FAE5;
            --text-muted: #A3A375;
            --border-gold: rgba(245, 158, 11, 0.35);
            --shadow-gold: 0 6px 28px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.35);
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --container-max: 1280px;
            --font-heading: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
            --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            padding-top: 64px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease, opacity 0.2s ease;
        }
        a:hover {
            color: var(--accent-gold-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 31, 20, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-gold);
            transition: background 0.3s ease;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 24px;
        }
        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 0.02em;
            color: var(--accent-gold-light);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .logo i {
            -webkit-text-fill-color: #F59E0B;
            font-size: 1.4rem;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-gold-light);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-outline {
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1.5px solid var(--border-gold);
            background: transparent;
            color: var(--accent-gold);
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-gold-light);
            border-color: var(--accent-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245,158,11,0.18);
        }
        .btn-solid {
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(245,158,11,0.35);
        }
        .btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.5);
            filter: brightness(1.08);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 1.3rem;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        .mobile-menu-toggle:hover {
            background: rgba(245,158,11,0.1);
        }
        .section-padding {
            padding: 64px 0;
        }
        .section-padding-lg {
            padding: 80px 0;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 18px;
        }
        h2 {
            font-size: 1.9rem;
            margin-bottom: 16px;
        }
        h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 24px;
            background: rgba(245,158,11,0.1);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold-light);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .card-gold {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        .card-gold:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }
        .provider-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            background: rgba(245,158,11,0.08);
            color: var(--accent-gold-light);
            border: 1px solid rgba(245,158,11,0.2);
        }
        .metric-stat {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--accent-gold-light);
            font-size: 2.4rem;
            line-height: 1.1;
        }
        .site-footer {
            background: var(--bg-secondary);
            border-top: 2px solid var(--border-gold);
            padding: 56px 0 32px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: var(--accent-gold-light);
            font-size: 1.05rem;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: var(--accent-gold-light);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--border-gold);
            padding-top: 24px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
            color: var(--accent-gold-light);
            font-weight: 600;
            font-size: 0.82rem;
        }
        .fab-floating {
            position: fixed;
            left: 20px;
            bottom: 80px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #0B2E1E, #051F14);
            border: 2px solid #F59E0B;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(245,158,11,0.35);
            transition: all 0.3s ease;
            opacity: 0.8;
            animation: floatIdle 3s ease-in-out infinite;
        }
        .fab-floating:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(245,158,11,0.55);
        }
        .fab-floating i {
            font-size: 1.6rem;
            color: #FCD34D;
            transition: transform 0.3s ease;
        }
        .fab-floating:hover i {
            transform: rotate(360deg);
        }
        .fab-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid #F8FAFC;
        }
        @keyframes floatIdle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 20px;
                right: 20px;
                flex-direction: column;
                background: rgba(8, 49, 33, 0.98);
                backdrop-filter: blur(20px);
                border: 1px solid var(--border-gold);
                border-radius: var(--radius-md);
                padding: 16px;
                gap: 6px;
                box-shadow: var(--shadow-gold);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                justify-content: center;
                width: 100%;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-actions {
                gap: 6px;
            }
            .btn-outline, .btn-solid {
                padding: 7px 14px;
                font-size: 0.82rem;
            }
            h1 { font-size: 1.7rem; }
            h2 { font-size: 1.4rem; }
            .section-padding { padding: 40px 0; }
            .section-padding-lg { padding: 56px 0; }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                gap: 12px;
            }
            .logo {
                font-size: 0.95rem;
            }
            .btn-outline { padding: 6px 12px; font-size: 0.78rem; }
            .btn-solid { padding: 7px 14px; font-size: 0.8rem; }
            h1 { font-size: 1.5rem; }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-card: #083121;
            --accent-gold: #F59E0B;
            --accent-gold-light: #FCD34D;
            --accent-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
            --accent-red: #DC2626;
            --accent-red-dark: #991B1B;
            --text-primary: #F8FAFC;
            --text-secondary: #D1FAE5;
            --text-muted: #A3A375;
            --border-gold: rgba(245, 158, 11, 0.35);
            --shadow-gold: 0 6px 28px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.35);
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --container-max: 1280px;
            --font-heading: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
            --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            padding-top: 64px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease, opacity 0.2s ease;
        }
        a:hover {
            color: var(--accent-gold-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 31, 20, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-gold);
            transition: background 0.3s ease;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 24px;
        }
        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 0.02em;
            color: var(--accent-gold-light);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .logo i {
            -webkit-text-fill-color: #F59E0B;
            font-size: 1.4rem;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-gold-light);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-outline {
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1.5px solid var(--border-gold);
            background: transparent;
            color: var(--accent-gold);
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-gold-light);
            border-color: var(--accent-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245,158,11,0.18);
        }
        .btn-solid {
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(245,158,11,0.35);
        }
        .btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.5);
            filter: brightness(1.08);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 1.3rem;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        .mobile-menu-toggle:hover {
            background: rgba(245,158,11,0.1);
        }
        /* ============ HERO ============ */
        .hero-category {
            padding: 60px 0 50px;
            background: linear-gradient(135deg, #031A12 0%, #062E20 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid var(--border-gold);
            padding: 6px 18px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-gold-light);
            margin-bottom: 20px;
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--text-primary);
            margin-bottom: 18px;
            letter-spacing: -0.01em;
        }
        .hero-title span {
            background: var(--accent-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 28px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-img-wrap {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-gold);
            border: 2px solid var(--border-gold);
        }
        .hero-img-wrap img {
            width: 100%;
            max-width: 480px;
            border-radius: var(--radius-xl);
        }
        .hero-stats {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .hero-stat-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 15px 20px;
            border: 1px solid var(--border-gold);
            text-align: center;
            flex: 1;
        }
        .hero-stat-num {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .hero-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        /* ============ SECTION STYLES ============ */
        .section {
            padding: 70px 0;
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.25;
            margin-bottom: 12px;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 0.98rem;
            line-height: 1.6;
            max-width: 700px;
        }
        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(245, 158, 11, 0.15);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
        }
        .card-img {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
        }
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card:hover .card-img img {
            transform: scale(1.06);
        }
        .card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent-red);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 14px;
            letter-spacing: 0.03em;
        }
        .card-body {
            padding: 18px 20px 22px;
        }
        .card-title {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .card-text {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 14px;
        }
        .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        /* ============ FISHING TABLE ============ */
        .fishing-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-gold);
        }
        .fishing-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
        }
        .fishing-table th {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-gold-light);
            font-weight: 700;
            font-size: 0.88rem;
            text-align: left;
            padding: 16px 18px;
            border-bottom: 1px solid var(--border-gold);
        }
        .fishing-table td {
            padding: 14px 18px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(245, 158, 11, 0.08);
        }
        .table-prize {
            color: var(--accent-gold);
            font-weight: 700;
        }
        /* ============ FAQ ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid rgba(245, 158, 11, 0.12);
            overflow: hidden;
            transition: border-color 0.2s;
        }
        .faq-item:hover {
            border-color: var(--border-gold);
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }
        .faq-answer {
            padding: 0 22px 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }
        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--accent-gold);
        }
        /* ============ CTA ============ */
        .cta-section {
            background: linear-gradient(135deg, #062E20 0%, #031A12 100%);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
            border: 1px solid var(--border-gold);
        }
        .cta-title {
            font-family: var(--font-heading);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .cta-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        /* ============ FOOTER ============ */
        .site-footer {
            background: #031A12;
            border-top: 1px solid var(--border-gold);
            padding: 50px 0 30px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent-gold-light);
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.88rem;
            color: var(--text-secondary);
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: var(--accent-gold-light);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(245, 158, 11, 0.15);
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.8rem;
        }
        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 20px;
                right: 20px;
                background: rgba(8, 49, 33, 0.98);
                backdrop-filter: blur(20px);
                border: 1px solid var(--border-gold);
                border-radius: var(--radius-lg);
                flex-direction: column;
                padding: 16px;
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .hero-title {
                font-size: 1.9rem;
            }
            .hero-stats {
                flex-wrap: wrap;
            }
            .card-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .section {
                padding: 50px 0;
            }
            .cta-section {
                padding: 36px 24px;
            }
            .cta-title {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 520px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
            .hero-stats {
                flex-direction: column;
            }
            .hero-title {
                font-size: 1.6rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .fishing-table th,
            .fishing-table td {
                padding: 10px 12px;
                font-size: 0.78rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

@keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

/* roulang page: category4 */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-card: #083121;
            --accent-gold: #F59E0B;
            --accent-gold-light: #FCD34D;
            --accent-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
            --accent-red: #DC2626;
            --accent-red-dark: #991B1B;
            --text-primary: #F8FAFC;
            --text-secondary: #D1FAE5;
            --text-muted: #A3A375;
            --border-gold: rgba(245, 158, 11, 0.35);
            --shadow-gold: 0 6px 28px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.35);
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --container-max: 1280px;
            --font-heading: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
            --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            padding-top: 64px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease, opacity 0.2s ease;
        }

        a:hover {
            color: var(--accent-gold-light);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 31, 20, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-gold);
            transition: background 0.3s ease;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 24px;
        }

        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 0.02em;
            color: var(--accent-gold-light);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .logo i {
            -webkit-text-fill-color: #F59E0B;
            font-size: 1.4rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-gold-light);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline {
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1.5px solid var(--border-gold);
            background: transparent;
            color: var(--accent-gold);
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-gold-light);
            border-color: var(--accent-gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(245,158,11,0.18);
        }

        .btn-solid {
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            background: var(--accent-gold-gradient);
            color: #051F14;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(245,158,11,0.35);
        }

        .btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.5);
            filter: brightness(1.08);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 1.3rem;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(245,158,11,0.1);
        }

        /* Section Spacing */
        section {
            padding: 60px 0;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold-light);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 800px;
            line-height: 1.6;
        }

        /* HERO BANNER */
        .hero-category {
            position: relative;
            padding: 80px 0 60px;
            background: linear-gradient(180deg, rgba(11,46,30,0.9) 0%, rgba(5,31,20,0.95) 100%);
            overflow: hidden;
        }

        .hero-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('/assets/images/backpic/back-4.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }

        .hero-category .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-category h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 60%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .hero-category .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.7;
            max-width: 540px;
        }

        .hero-stats {
            display: flex;
            gap: 28px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .hero-stat-item {
            text-align: left;
        }

        .hero-stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-gold-light);
            line-height: 1.1;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .hero-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-gold);
            border: 1.5px solid var(--border-gold);
        }

        .hero-visual img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-visual:hover img {
            transform: scale(1.04);
        }

        /* CARD STYLE */
        .card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(245,158,11,0.3);
            border-color: rgba(245,158,11,0.5);
        }

        .card-icon {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 16px;
            display: block;
        }

        .card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent-gold-light);
            margin-bottom: 8px;
        }

        .card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Grid */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        /* Badge */
        .badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            background: rgba(245,158,11,0.15);
            color: var(--accent-gold-light);
            border: 1px solid var(--border-gold);
            white-space: nowrap;
        }

        .badge-red {
            background: rgba(220,38,38,0.15);
            color: #FCA5A5;
            border-color: rgba(220,38,38,0.4);
        }

        /* Metric Board */
        .metrics-board {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            border: 1px solid var(--border-gold);
        }

        .metric-item {
            text-align: center;
        }

        .metric-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold-light);
            line-height: 1.1;
        }

        .metric-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* Comparison Table */
        .compare-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 12px;
        }

        .compare-table th,
        .compare-table td {
            padding: 18px 20px;
            text-align: left;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
        }

        .compare-table th {
            background: rgba(245,158,11,0.12);
            color: var(--accent-gold-light);
            font-weight: 700;
            font-size: 1rem;
            border-bottom: 2px solid var(--border-gold);
        }

        .compare-table td {
            color: var(--text-secondary);
            border: 1px solid transparent;
            font-size: 0.95rem;
        }

        .compare-table tr td:first-child {
            font-weight: 600;
            color: var(--text-primary);
        }

        .highlight-row td {
            border: 1.5px solid var(--border-gold);
            background: rgba(245,158,11,0.08);
        }

        /* Timeline / Steps */
        .steps-flow {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .step-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            border: 1px solid var(--border-gold);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 6px 24px rgba(245,158,11,0.2);
            transform: translateY(-3px);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent-gold-gradient);
            color: #051F14;
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }

        .step-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-gold-light);
            margin-bottom: 6px;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* News list */
        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .news-item {
            display: flex;
            gap: 16px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 18px;
            border: 1px solid rgba(245,158,11,0.15);
            transition: all 0.3s ease;
            align-items: flex-start;
        }

        .news-item:hover {
            border-color: var(--border-gold);
            box-shadow: 0 4px 18px rgba(245,158,11,0.15);
            transform: translateY(-2px);
        }

        .news-thumb {
            width: 90px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: var(--bg-secondary);
        }

        .news-content h5 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-gold-light);
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .news-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* FAQ */
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            border: 1px solid rgba(245,158,11,0.15);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-question {
            padding: 20px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
            font-size: 1.02rem;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--accent-gold-light);
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--accent-gold);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(245,158,11,0.05) 100%);
            border-radius: var(--radius-lg);
            padding: 48px 36px;
            text-align: center;
            border: 1.5px solid var(--border-gold);
        }

        .cta-banner h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold-light);
            margin-bottom: 12px;
        }

        .cta-banner p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 24px;
            line-height: 1.6;
        }

        /* Platform badges */
        .platform-badges {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .platform-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 30px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.15);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .platform-badge:hover {
            border-color: var(--accent-gold);
            background: rgba(245,158,11,0.1);
            color: var(--accent-gold-light);
        }

        /* Footer */
        .site-footer {
            background: #030F0A;
            border-top: 1.5px solid var(--border-gold);
            padding: 48px 0 28px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent-gold-light);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--accent-gold-light);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(245,158,11,0.2);
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .footer-badge {
            display: inline-block;
            background: rgba(245,158,11,0.1);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.82rem;
            color: var(--accent-gold-light);
            margin-top: 10px;
            border: 1px solid var(--border-gold);
        }

        /* FAB */
        .fab-float {
            position: fixed;
            left: 24px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--accent-gold);
            box-shadow: 0 6px 25px rgba(245,158,11,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.8;
            animation: floatBreath 3s ease-in-out infinite;
        }

        @keyframes floatBreath {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .fab-float:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(245,158,11,0.5);
        }

        .fab-float:active {
            transform: scale(0.95);
        }

        .fab-float i {
            font-size: 1.4rem;
            color: var(--accent-gold);
        }

        .fab-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #DC2626;
            border: 2px solid #F8FAFC;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .metrics-board {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-flow {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-category .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero-category h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 20px;
                right: 20px;
                background: rgba(5,31,20,0.98);
                backdrop-filter: blur(20px);
                border-radius: var(--radius-md);
                border: 1px solid var(--border-gold);
                flex-direction: column;
                padding: 20px;
                gap: 4px;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                padding: 12px 16px;
                border-radius: 10px;
                width: 100%;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .grid-3, .grid-2 {
                grid-template-columns: 1fr;
            }
            .metrics-board {
                grid-template-columns: 1fr 1fr;
            }
            .steps-flow {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-category {
                padding: 50px 0 40px;
            }
            .hero-category h1 {
                font-size: 1.7rem;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
            section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 520px) {
            .metrics-board {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero-stats {
                gap: 16px;
            }
            .compare-table {
                font-size: 0.8rem;
            }
        }
