/* roulang page: index */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-card: rgba(18, 62, 37, 0.85);
            --bg-overlay: rgba(10, 46, 28, 0.92);
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --accent-amber: #FFBF00;
            --text-white: #FFFFFF;
            --text-mint: #D1F2EB;
            --text-muted: #A3D1C6;
            --border-gold: rgba(255, 215, 0, 0.35);
            --border-red: rgba(211, 47, 47, 0.4);
            --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.15);
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.25);
            --shadow-btn: 0 4px 14px rgba(211, 47, 47, 0.35);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --transition: all 0.25s ease;
            --font-primary: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            --font-secondary: 'Georgia', 'Times New Roman', serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-primary);
            background: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 20% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(211, 47, 47, 0.03) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 50%, rgba(18, 62, 37, 0.6) 0%, var(--bg-primary) 80%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-md);
        }

        button,
        input,
        .button {
            outline: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-primary);
            transition: var(--transition);
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* HEADER & NAV */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 46, 28, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-gold);
            box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
            transition: var(--transition);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 66px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--accent-gold);
            letter-spacing: 0.4px;
            text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
            flex-shrink: 0;
            max-width: 280px;
            line-height: 1.25;
            word-break: break-word;
        }

        .logo i {
            font-size: 1.7rem;
            color: var(--accent-gold);
            filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-mint);
            padding: 8px 0;
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-login {
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }

        .btn-login:hover {
            background: rgba(255, 215, 0, 0.12);
            border-color: #FFE44D;
            box-shadow: 0 0 16px rgba(255, 215, 0, 0.3);
        }

        .btn-signup {
            background: var(--accent-red);
            color: var(--text-white);
            padding: 8px 22px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            box-shadow: var(--shadow-btn);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .btn-signup:hover {
            background: #E53935;
            box-shadow: 0 6px 22px rgba(211, 47, 47, 0.5);
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px;
        }

        /* HERO SECTION */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            background-position: center 30%;
            margin-top: 66px;
            padding: 60px 0 80px;
            isolation: isolate;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(10, 46, 28, 0.88) 0%,
                    rgba(18, 62, 37, 0.78) 40%,
                    rgba(10, 46, 28, 0.92) 100%);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            right: -80px;
            top: 30%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 620px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-badge i {
            color: var(--accent-amber);
            font-size: 0.75rem;
        }

        .hero-title {
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 800;
            line-height: 1.18;
            color: var(--text-white);
            margin-bottom: 18px;
            letter-spacing: -0.3px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

        .hero-title span {
            color: var(--accent-gold);
            text-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
        }

        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-mint);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .btn-hero-primary {
            background: var(--accent-red);
            color: #fff;
            padding: 13px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 22px rgba(211, 47, 47, 0.45);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-hero-primary:hover {
            background: #E53935;
            box-shadow: 0 8px 28px rgba(211, 47, 47, 0.55);
            transform: translateY(-2px);
        }

        .btn-hero-secondary {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: #FFE44D;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 18px;
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .hero-trust i {
            color: var(--accent-gold);
            font-size: 1rem;
            margin-right: 4px;
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* SECTION COMMON */
        .section {
            padding: 70px 0;
            position: relative;
            z-index: 2;
        }

        .section-dark {
            background: var(--bg-secondary);
            border-top: 1px solid rgba(255, 215, 0, 0.08);
            border-bottom: 1px solid rgba(255, 215, 0, 0.08);
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--accent-gold);
            margin-bottom: 10px;
            background: rgba(255, 215, 0, 0.08);
            padding: 4px 14px;
            border-radius: 50px;
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
            letter-spacing: -0.2px;
            text-align: left;
        }

        .section-desc {
            font-size: 0.95rem;
            color: var(--text-mint);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 700px;
            text-align: left;
        }

        /* BRAND STORY */
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .story-image-wrapper {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-gold);
        }

        .story-image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: var(--radius-xl);
        }

        .story-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid var(--border-gold);
            border-radius: var(--radius-xl);
            pointer-events: none;
        }

        .story-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 20px;
        }

        .story-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-mint);
            line-height: 1.6;
        }

        .story-features li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
            filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
        }

        /* COUNTDOWN ENTRY */
        .countdown-bar {
            background: linear-gradient(135deg, #1A0A0A, #3D1414);
            border: 1px solid rgba(211, 47, 47, 0.5);
            border-radius: var(--radius-lg);
            padding: 24px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            box-shadow: 0 4px 24px rgba(211, 47, 47, 0.2);
        }

        .countdown-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 4px;
        }

        .countdown-text p {
            font-size: 0.9rem;
            color: var(--text-mint);
            margin: 0;
        }

        .countdown-timer {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .timer-block {
            background: rgba(0, 0, 0, 0.45);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-sm);
            padding: 10px 16px;
            text-align: center;
            min-width: 60px;
        }

        .timer-block .num {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.1;
        }

        .timer-block .label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-countdown {
            background: var(--accent-red);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: var(--shadow-btn);
            white-space: nowrap;
        }

        .btn-countdown:hover {
            background: #E53935;
            box-shadow: 0 6px 24px rgba(211, 47, 47, 0.55);
        }

        /* FEATURED CONTENT CARDS */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: #FFE44D;
            box-shadow: var(--shadow-gold);
        }

        .feature-card .card-img {
            height: 180px;
            overflow: hidden;
        }

        .feature-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .feature-card:hover .card-img img {
            transform: scale(1.05);
        }

        .feature-card .card-body {
            padding: 20px;
        }

        .feature-card .card-tag {
            display: inline-block;
            background: rgba(211, 47, 47, 0.18);
            color: var(--accent-red);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .feature-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .feature-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* MEMBERSHIP */
        .membership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .membership-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            text-align: left;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            position: relative;
        }

        .membership-card.vip {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }

        .membership-card.vip::before {
            content: 'VIP';
            position: absolute;
            top: 12px;
            right: 14px;
            background: var(--accent-gold);
            color: #000;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 50px;
            letter-spacing: 0.5px;
        }

        .membership-card .tier-icon {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }

        .membership-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .membership-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .membership-card ul {
            list-style: none;
            font-size: 0.82rem;
            color: var(--text-mint);
        }

        .membership-card ul li {
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .membership-card ul li i {
            color: var(--accent-gold);
            font-size: 0.7rem;
        }

        .btn-membership {
            display: inline-block;
            background: var(--accent-red);
            color: #fff;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-top: 14px;
            box-shadow: var(--shadow-btn);
        }

        .btn-membership:hover {
            background: #E53935;
        }

        /* TESTIMONIAL BUBBLES */
        .testimonials-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: flex-start;
        }

        .testimonial-bubble {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            max-width: 350px;
            flex: 1 1 280px;
            box-shadow: var(--shadow-card);
            position: relative;
        }

        .testimonial-bubble::before {
            content: '\201C';
            font-size: 3rem;
            color: var(--accent-gold);
            position: absolute;
            top: -10px;
            left: 12px;
            opacity: 0.5;
            font-family: var(--font-secondary);
            line-height: 1;
        }

        .testimonial-bubble .quote {
            font-size: 0.9rem;
            color: var(--text-mint);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 14px;
            padding-top: 8px;
        }

        .testimonial-bubble .author {
            font-weight: 700;
            color: var(--accent-gold);
            font-size: 0.85rem;
        }

        .testimonial-bubble .author span {
            display: block;
            font-weight: 400;
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        /* NEWS LIST */
        .news-layout {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 36px;
            align-items: start;
        }

        .news-list {
            list-style: none;
        }

        .news-list li {
            border-bottom: 1px solid rgba(255, 215, 0, 0.12);
            padding: 16px 0;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 12px;
        }

        .news-list li a {
            font-weight: 600;
            color: var(--text-mint);
            font-size: 0.95rem;
            transition: var(--transition);
            flex: 1;
            line-height: 1.4;
        }

        .news-list li a:hover {
            color: var(--accent-gold);
        }

        .news-list .news-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .news-sidebar {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-card);
        }

        .news-sidebar h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }

        .news-sidebar p {
            font-size: 0.9rem;
            color: var(--text-mint);
            line-height: 1.7;
        }

        /* SUBSCRIBE ENTRY */
        .subscribe-block {
            background: linear-gradient(135deg, rgba(18, 62, 37, 0.8), rgba(10, 46, 28, 0.9));
            border: 2px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            text-align: left;
            box-shadow: var(--shadow-gold);
            position: relative;
            overflow: hidden;
        }

        .subscribe-block::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .subscribe-block h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }

        .subscribe-block p {
            font-size: 0.95rem;
            color: var(--text-mint);
            margin-bottom: 20px;
        }

        .subscribe-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 500px;
        }

        .subscribe-form input {
            flex: 1 1 240px;
            padding: 12px 18px;
            border-radius: 50px;
            border: 1px solid var(--border-gold);
            background: rgba(0, 0, 0, 0.35);
            color: var(--text-white);
            font-size: 0.95rem;
        }

        .subscribe-form input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-form .btn-submit {
            background: var(--accent-red);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: var(--shadow-btn);
        }

        .subscribe-form .btn-submit:hover {
            background: #E53935;
        }

        /* FOOTER */
        .site-footer {
            background: #061A10;
            border-top: 2px solid var(--border-gold);
            padding: 48px 0 28px;
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 215, 0, 0.15);
            padding-top: 20px;
            text-align: left;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-bottom span {
            color: var(--accent-gold);
            font-weight: 600;
        }

        /* FAB */
        .fab-left {
            position: fixed;
            left: 20px;
            bottom: 96px;
            z-index: 99;
            width: 52px;
            height: 52px;
            background: rgba(10, 46, 28, 0.85);
            backdrop-filter: blur(8px);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
            cursor: pointer;
            animation: floatFab 3s ease-in-out infinite;
            transition: var(--transition);
        }

        .fab-left:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(255, 215, 0, 0.4);
            background: rgba(18, 62, 37, 0.95);
        }

        @keyframes floatFab {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .story-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .news-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                height: 60px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: rgba(10, 46, 28, 0.98);
                flex-direction: column;
                padding: 20px 24px;
                gap: 14px;
                border-bottom: 1px solid var(--border-gold);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hero-section {
                min-height: 70vh;
                padding: 40px 0 60px;
                margin-top: 60px;
                background-position: center 20%;
            }
            .hero-cta-group {
                flex-direction: column;
                gap: 10px;
            }
            .countdown-bar {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .cards-grid {
                grid-template-columns: 1fr;
            }
            .membership-grid {
                grid-template-columns: 1fr 1fr;
            }
            .testimonials-row {
                flex-direction: column;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .section {
                padding: 48px 0;
            }
            .logo {
                font-size: 1rem;
                max-width: 220px;
            }
        }

        @media (max-width: 520px) {
            .membership-grid {
                grid-template-columns: 1fr;
            }
            .timer-block {
                min-width: 48px;
                padding: 8px 10px;
            }
            .timer-block .num {
                font-size: 1.3rem;
            }
            .fab-left {
                left: 12px;
                bottom: 80px;
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
            .container {
                padding: 0 16px;
            }
        }

/* roulang page: article */
:root {
            --primary-bg: #0B3C25;
            --secondary-bg: #062315;
            --accent-gold: #FFCC00;
            --accent-lime: #32CD32;
            --text-light: #FFFDF0;
            --text-muted: #C5E2D2;
            --text-body: #E8F5E9;
            --border-soft: rgba(255,204,0,0.25);
            --shadow-card: 0 6px 20px rgba(0,0,0,0.35);
            --shadow-gold: 0 2px 12px rgba(255,204,0,0.25);
            --radius-card: 16px;
            --radius-btn: 30px;
            --transition-smooth: all 0.25s ease;
        }
        * { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: var(--accent-gold); transition: var(--transition-smooth); }
        a:hover { color: var(--accent-lime); }
        .container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
        
        .site-header {
            background: var(--secondary-bg);
            border-bottom: 1px solid var(--border-soft);
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: var(--shadow-gold);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: -0.5px;
            white-space: nowrap;
        }
        .logo i { margin-right: 6px; color: var(--accent-lime); }
        .nav-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-muted);
            padding: 6px 10px;
            border-radius: 20px;
        }
        .nav-links a.active, .nav-links a:hover {
            background: rgba(255,204,0,0.12);
            color: var(--accent-gold);
        }
        .header-btns { display: flex; gap: 10px; align-items: center; }
        .btn-login {
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .btn-login:hover { background: rgba(255,204,0,0.1); }
        .btn-signup {
            background: var(--accent-gold);
            color: var(--secondary-bg);
            border: none;
            padding: 8px 20px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-gold);
        }
        .btn-signup:hover { background: var(--accent-lime); transform: translateY(-1px); }

        .article-hero {
            background: linear-gradient(135deg, #062315 0%, #0B3C25 100%);
            border-bottom: 2px solid var(--border-soft);
            padding: 50px 0 40px;
            text-align: left;
        }
        .article-hero .category-tag {
            display: inline-block;
            background: var(--accent-lime);
            color: #062315;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 18px;
            text-transform: uppercase;
        }
        .article-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-light);
            line-height: 1.3;
            margin-bottom: 12px;
            max-width: 800px;
        }
        .article-meta {
            display: flex;
            gap: 24px;
            color: var(--text-muted);
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .article-meta i { margin-right: 5px; color: var(--accent-gold); }

        .article-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .article-main {
            background: var(--secondary-bg);
            border-radius: var(--radius-card);
            padding: 30px;
            box-shadow: var(--shadow-card);
            color: var(--text-body);
            line-height: 1.75;
            word-wrap: break-word;
        }
        .article-main img {
            border-radius: 12px;
            margin: 20px 0;
        }
        .article-main h2 {
            color: var(--accent-gold);
            font-size: 1.6rem;
            margin-top: 30px;
        }
        .article-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .sidebar-card {
            background: var(--secondary-bg);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
        }
        .sidebar-card h4 {
            color: var(--accent-gold);
            font-size: 1.15rem;
            margin-bottom: 14px;
            border-left: 3px solid var(--accent-lime);
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .sidebar-card li a { color: var(--text-muted); font-size: 0.9rem; }
        .sidebar-card li a:hover { color: var(--accent-gold); }

        .cta-section {
            background: linear-gradient(135deg, #0B3C25, #062315);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-card);
            padding: 35px 25px;
            text-align: center;
            margin: 30px 0;
            box-shadow: var(--shadow-gold);
        }
        .cta-section h3 {
            color: var(--accent-gold);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .btn-download {
            background: var(--accent-gold);
            color: #062315;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 40px;
            display: inline-block;
            margin: 15px 8px;
            transition: var(--transition-smooth);
            font-size: 1.1rem;
            box-shadow: var(--shadow-gold);
        }
        .btn-download:hover { background: var(--accent-lime); transform: translateY(-2px); color: #062315; }

        .site-footer {
            background: var(--secondary-bg);
            border-top: 1px solid var(--border-soft);
            padding: 45px 0 20px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 30px;
        }
        .footer-col h4 {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-col ul { list-style: none; margin: 0; padding: 0; }
        .footer-col li { margin-bottom: 8px; }
        .footer-col a { color: var(--text-muted); font-size: 0.9rem; }
        .footer-col a:hover { color: var(--accent-lime); }
        .footer-bottom {
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,204,0,0.15);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .footer-bottom span { color: var(--accent-gold); font-weight: 600; }

        .not-found-msg {
            background: #1b1b1b;
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            color: #ccc;
        }

        @media(max-width:1024px) {
            .article-layout { grid-template-columns: 1fr; }
        }
        @media(max-width:768px) {
            .header-inner { flex-direction: column; gap: 10px; }
            .nav-links { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .article-hero h1 { font-size: 1.8rem; }
        }
        @media(max-width:520px) {
            .header-btns { width: 100%; justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .article-main { padding: 20px; }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-card: #0D3623;
            --accent-gold: #FFD700;
            --accent-red: #D32F2F;
            --accent-lime: #CCFF00;
            --text-white: #FFFFFF;
            --text-pale: #D1F2EB;
            --text-muted: #A0C8B9;
            --border-gold: rgba(255, 215, 0, 0.25);
            --border-light: rgba(255, 255, 255, 0.08);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.15);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.45);
            --spacing-section: 80px;
            --spacing-element: 40px;
            --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            --font-body: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition-base);
        }

        a:hover {
            color: #FFE55C;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER & NAVIGATION ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 46, 28, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-gold);
            transition: background var(--transition-base);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 1.5rem;
            color: var(--accent-gold);
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .nav-links a {
            display: inline-block;
            padding: 10px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-pale);
            transition: all var(--transition-base);
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .nav-links a.active {
            font-weight: 600;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 20px;
        }

        .btn-login {
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition-base);
            white-space: nowrap;
        }

        .btn-login:hover {
            background: rgba(255, 215, 0, 0.12);
            border-color: #FFE55C;
            color: #FFE55C;
        }

        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #FFC107 100%);
            border: none;
            color: #0A2E1C;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-base);
            white-space: nowrap;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(255, 215, 0, 0.35);
            color: #0A2E1C;
        }

        .btn-signup:active {
            transform: translateY(0);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--accent-gold);
            font-size: 1.6rem;
            padding: 8px;
            line-height: 1;
        }

        @media (max-width: 1024px) {
            .nav-links a {
                padding: 8px 12px;
                font-size: 0.88rem;
            }
            .logo {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 46, 28, 0.98);
                backdrop-filter: blur(18px);
                padding: 20px 24px;
                gap: 6px;
                border-bottom: 2px solid var(--border-gold);
            }
            .nav-links.show {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .header-actions {
                margin-left: auto;
                gap: 8px;
            }
            .btn-login,
            .btn-signup {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            .logo {
                font-size: 1rem;
            }
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            padding: 130px 0 70px;
            background: linear-gradient(180deg, #0F3B29 0%, var(--bg-primary) 100%);
            border-bottom: 1px solid var(--border-gold);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.25;
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }

        .hero-text h1 span {
            color: var(--accent-gold);
            background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .subtitle {
            font-size: 1.15rem;
            color: var(--text-pale);
            margin-bottom: 28px;
            line-height: 1.7;
            max-width: 520px;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 30px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--border-gold);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-gold);
            white-space: nowrap;
        }

        .badge i {
            font-size: 0.95rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #F0B800 100%);
            border: none;
            color: #0A2E1C;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 36px rgba(255, 215, 0, 0.35);
            color: #0A2E1C;
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: #FFE55C;
            color: #FFE55C;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-visual img {
            max-width: 420px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-gold);
            border: 2px solid var(--border-gold);
        }

        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 36px;
                text-align: left;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-visual img {
                max-width: 300px;
            }
        }

        @media (max-width: 520px) {
            .hero-text h1 {
                font-size: 1.7rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary,
            .btn-outline {
                justify-content: center;
            }
        }

        /* ========== SECTION BASE ========== */
        .section {
            padding: var(--spacing-section) 0;
        }

        .section-header {
            margin-bottom: var(--spacing-element);
            max-width: 800px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--text-pale);
            line-height: 1.65;
        }

        /* ========== PROMO CARDS GRID ========== */
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            gap: 28px;
        }

        .promo-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            padding: 32px 28px;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .promo-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-gold);
        }

        .promo-card.featured {
            border: 1.5px solid var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }

        .promo-tag {
            position: absolute;
            top: 20px;
            right: 18px;
            background: var(--accent-red);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 5px 12px;
            border-radius: 20px;
            letter-spacing: 0.4px;
        }

        .promo-icon {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }

        .promo-card h3 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 10px;
        }

        .promo-card .promo-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .promo-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .promo-card .btn-small {
            display: inline-block;
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition-base);
        }

        .promo-card .btn-small:hover {
            background: rgba(255, 215, 0, 0.12);
            border-color: #FFE55C;
        }

        .promo-card.featured .btn-small {
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            color: #0A2E1C;
            border: none;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .promo-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== HOW-TO CLAIM STEPS ========== */
        .steps-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 28px;
            max-width: 800px;
        }

        .step-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 24px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
        }

        .step-item:hover {
            border-color: var(--border-gold);
        }

        .step-num {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-gold), #FFC107);
            color: #0A2E1C;
            font-size: 1.3rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-content h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
        }

        .step-content p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* ========== BONUS COMPARISON TABLE ========== */
        .bonus-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
        }

        .bonus-table {
            width: 100%;
            min-width: 700px;
            border-collapse: collapse;
            background: var(--bg-card);
        }

        .bonus-table thead th {
            background: rgba(255, 215, 0, 0.08);
            color: var(--accent-gold);
            font-weight: 700;
            padding: 16px 18px;
            text-align: left;
            font-size: 0.9rem;
            border-bottom: 2px solid var(--border-gold);
        }

        .bonus-table tbody td {
            padding: 14px 18px;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.9rem;
            color: var(--text-pale);
        }

        .bonus-table tbody tr:hover {
            background: rgba(255, 215, 0, 0.04);
        }

        .amount-highlight {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1rem;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: var(--text-white);
            font-weight: 700;
            font-size: 1.02rem;
            padding: 20px 24px;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background var(--transition-base);
        }

        .faq-question:hover {
            background: rgba(255, 215, 0, 0.05);
        }

        .faq-question i {
            color: var(--accent-gold);
            transition: transform var(--transition-base);
            font-size: 1rem;
        }

        .faq-answer {
            padding: 0 24px 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, #123E25 0%, #0A2E1C 100%);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            text-align: center;
        }

        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 14px;
        }

        .cta-section p {
            font-size: 1.05rem;
            color: var(--text-pale);
            margin-bottom: 28px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #071f14;
            border-top: 2px solid var(--border-gold);
            padding: 58px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 34px;
            margin-bottom: 36px;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 0.9rem;
            color: var(--text-pale);
            transition: color var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a:hover {
            color: var(--accent-gold);
        }

        .footer-col ul li a i {
            font-size: 0.85rem;
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-light);
            padding-top: 22px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .footer-bottom span {
            color: var(--accent-gold);
            font-weight: 600;
        }

        /* ========== FAB ========== */
        .fab {
            position: fixed;
            left: 20px;
            bottom: 100px;
            z-index: 90;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0A2E1C, #123E25);
            border: 2px solid var(--accent-gold);
            box-shadow: var(--shadow-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.4rem;
            opacity: 0.7;
            transition: all var(--transition-base);
            animation: fabFloat 3s ease-in-out infinite;
        }

        .fab:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(255, 215, 0, 0.35);
        }

        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        @media (max-width: 520px) {
            .fab {
                width: 46px;
                height: 46px;
                left: 14px;
                bottom: 90px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0A0B0F;
            --bg-secondary: #12141D;
            --bg-card: #1A1D2B;
            --accent-primary: #FF4500;
            --accent-secondary: #FF6B35;
            --accent-glow: #FF4500;
            --text-primary: #FFFFFF;
            --text-secondary: #CCCCCC;
            --text-muted: #999999;
            --border-card: #2A2D3B;
            --border-glow: rgba(255,69,0,0.4);
            --btn-gradient: linear-gradient(135deg, #FF4500 0%, #FF6B35 100%);
            --shadow-card: 0 4px 20px rgba(0,0,0,0.4);
            --shadow-glow: 0 0 30px rgba(255,69,0,0.3);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-xxl: 6rem;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-secondary);
            background: var(--bg-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        /* Header & Navigation */
        .site-header {
            background: rgba(10, 11, 15, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-card);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.75rem 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--space-sm);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--btn-gradient);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
            line-height: 1.3;
        }

        .logo-text span {
            color: var(--accent-primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .nav-links li a {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-muted);
            transition: all 0.25s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-links li a:hover {
            color: var(--text-primary);
            background: rgba(255,69,0,0.1);
        }

        .nav-links li a.active {
            color: var(--accent-primary);
            background: rgba(255,69,0,0.15);
            font-weight: 600;
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: var(--accent-primary);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-login {
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
            background: transparent;
            border: 1.5px solid var(--border-card);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .btn-login:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        .btn-signup {
            padding: 0.5rem 1.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            background: var(--btn-gradient);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 4px 15px rgba(255,69,0,0.3);
        }

        .btn-signup:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 25px rgba(255,69,0,0.45);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem;
        }

        /* Hero Section */
        .category-hero {
            background: var(--bg-secondary);
            padding: var(--space-xxl) 0 var(--space-xl);
            position: relative;
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,69,0,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.25;
            margin-bottom: var(--space-md);
        }

        .hero-content h1 .highlight {
            color: var(--accent-primary);
        }

        .hero-content .hero-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: var(--space-lg);
            max-width: 540px;
        }

        .hero-stats {
            display: flex;
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-primary);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: var(--space-sm);
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--btn-gradient);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(255,69,0,0.35);
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 35px rgba(255,69,0,0.5);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-card);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-outline:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-glow);
            max-height: 380px;
            object-fit: cover;
        }

        /* Section Styles */
        .section {
            padding: var(--space-xxl) 0;
        }

        .section-header {
            margin-bottom: var(--space-xl);
            max-width: 700px;
        }

        .section-header h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
            line-height: 1.3;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .section-header.left-align {
            text-align: left;
            margin-left: 0;
            margin-right: auto;
        }

        /* Promotion Cards */
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: var(--space-lg);
        }

        .promo-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-card);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .promo-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 8px 30px rgba(255,69,0,0.15);
            transform: translateY(-3px);
        }

        .promo-card .card-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .badge-hot {
            background: var(--accent-primary);
            color: #fff;
        }

        .badge-new {
            background: #00F0FF;
            color: #000;
        }

        .badge-exclusive {
            background: #FFD700;
            color: #000;
        }

        .promo-card .card-img-wrap {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .promo-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .promo-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .promo-card .card-body {
            padding: var(--space-md);
        }

        .promo-card .card-body h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .promo-card .card-body p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: var(--space-sm);
        }

        .promo-card .card-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--accent-primary);
            font-weight: 600;
        }

        .promo-card .card-meta i {
            font-size: 0.9rem;
        }

        .promo-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-primary);
            margin: 0.5rem 0;
        }

        /* Feature List */
        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin: var(--space-md) 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .feature-list li i {
            color: var(--accent-primary);
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        /* Process / How-to Section */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: var(--space-lg);
        }

        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 6px 25px rgba(255,69,0,0.12);
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--btn-gradient);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: var(--space-sm);
        }

        .step-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.4rem;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Data Dashboard */
        .data-row {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: var(--space-lg);
            margin: var(--space-lg) 0;
        }

        .data-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            text-align: center;
            transition: all 0.3s ease;
        }

        .data-card:hover {
            border-color: var(--border-glow);
        }

        .data-card .data-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-primary);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .data-card .data-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            max-width: 800px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.25s ease;
        }

        .faq-item:hover {
            border-color: var(--border-glow);
        }

        .faq-question {
            padding: var(--space-md);
            font-weight: 700;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-sm);
            font-size: 1rem;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--accent-primary);
        }

        .faq-answer {
            padding: 0 var(--space-md) var(--space-md);
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.open {
            border-color: var(--border-glow);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255,69,0,0.05) 100%);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-xl);
            padding: var(--space-xxl) var(--space-xl);
            text-align: center;
            margin: var(--space-xl) 0;
        }

        .cta-section h3 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .cta-section p {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: var(--space-lg);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-card);
            padding: var(--space-xxl) 0 var(--space-lg);
            margin-top: var(--space-xl);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: var(--space-xl);
            margin-bottom: var(--space-xl);
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-col ul li a {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--space-lg);
            border-top: 1px solid var(--border-card);
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .footer-bottom span {
            color: var(--accent-primary);
            font-weight: 600;
        }

        /* FAB */
        .fab-left {
            position: fixed;
            left: 1rem;
            bottom: 4rem;
            z-index: 999;
        }

        .fab-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(18,20,29,0.85);
            backdrop-filter: blur(12px);
            border: 1.5px solid var(--accent-primary);
            color: var(--accent-primary);
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255,69,0,0.3);
            position: relative;
        }

        .fab-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(255,69,0,0.5);
            background: var(--accent-primary);
            color: #fff;
        }

        .fab-btn .notif-dot {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 10px;
            height: 10px;
            background: #00ff00;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-visual img {
                max-height: 280px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10,11,15,0.98);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--border-card);
                padding: var(--space-md);
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .header-actions .btn-login,
            .header-actions .btn-signup {
                padding: 0.4rem 1rem;
                font-size: 0.85rem;
            }
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .promo-grid {
                grid-template-columns: 1fr;
            }
            .steps-grid {
                grid-template-columns: 1fr 1fr;
            }
            .data-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 520px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .data-row {
                grid-template-columns: 1fr;
            }
            .hero-stats {
                flex-direction: column;
                gap: var(--space-sm);
            }
            .header-inner {
                gap: 0.5rem;
            }
            .logo-text {
                font-size: 0.95rem;
            }
        }

/* roulang page: category3 */
:root {
            --pri-gold: #C5A059;
            --pri-amber: #FFBF00;
            --pri-bronze: #A67B3D;
            --bg-obsidian: #121212;
            --bg-charcoal: #1C1C1E;
            --bg-elevated: #252527;
            --text-warm-white: #F5F5F7;
            --text-muted-gold: #D4AC0D;
            --text-soft: #A3A3AA;
            --border-subtle: rgba(197, 160, 89, 0.2);
            --border-gold: rgba(197, 160, 89, 0.5);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            --shadow-gold: 0 2px 16px rgba(197, 160, 89, 0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            --transition-smooth: all 0.25s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-obsidian);
            color: var(--text-warm-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background-color: rgba(18, 18, 18, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--pri-gold);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
            color: var(--pri-amber);
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 4px;
        }

        .nav-links li a {
            display: block;
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-soft);
            transition: var(--transition-smooth);
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--text-warm-white);
            background-color: rgba(197, 160, 89, 0.08);
        }

        .nav-links li a.active {
            color: var(--pri-gold);
            background-color: rgba(197, 160, 89, 0.12);
            font-weight: 600;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-login {
            padding: 10px 22px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-warm-white);
            background: transparent;
            border: 1px solid var(--border-gold);
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .btn-login:hover {
            background-color: rgba(197, 160, 89, 0.1);
            border-color: var(--pri-gold);
        }

        .btn-signup {
            padding: 10px 24px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--bg-obsidian);
            background: linear-gradient(135deg, var(--pri-amber) 0%, var(--pri-gold) 100%);
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-gold);
        }

        .btn-signup:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 101;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background-color: var(--text-warm-white);
            border-radius: 2px;
            transition: var(--transition-smooth);
        }

        /* Hero Section */
        .page-hero {
            padding: 140px 0 80px;
            background: linear-gradient(180deg, var(--bg-charcoal) 0%, var(--bg-obsidian) 100%);
            border-bottom: 1px solid var(--border-subtle);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -120px;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-warm-white);
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--pri-gold);
        }

        .hero-content .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-soft);
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 520px;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-bottom: 32px;
        }

        .hero-stat-item {
            text-align: left;
        }

        .hero-stat-item .stat-number {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--pri-amber);
            line-height: 1;
        }

        .hero-stat-item .stat-label {
            font-size: 0.85rem;
            color: var(--text-soft);
            margin-top: 6px;
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-gold);
            max-width: 100%;
        }

        .hero-badge {
            position: absolute;
            top: -16px;
            right: -16px;
            background: linear-gradient(135deg, var(--pri-amber) 0%, var(--pri-gold) 100%);
            color: var(--bg-obsidian);
            padding: 10px 20px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.3);
        }

        /* Promo Highlights */
        .section-promo-highlights {
            padding: 80px 0;
        }

        .section-header {
            margin-bottom: 48px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--pri-gold);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-warm-white);
            margin-bottom: 12px;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-soft);
            max-width: 680px;
            line-height: 1.7;
        }

        .promo-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }

        .promo-card {
            background: var(--bg-charcoal);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .promo-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-4px);
        }

        .promo-card-tag {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            background: rgba(255, 191, 0, 0.15);
            color: var(--pri-amber);
            margin-bottom: 16px;
        }

        .promo-card-tag.hot {
            background: rgba(211, 47, 47, 0.2);
            color: #f87171;
        }

        .promo-card h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-warm-white);
            margin-bottom: 10px;
        }

        .promo-card p {
            font-size: 0.95rem;
            color: var(--text-soft);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .promo-card .promo-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--text-muted-gold);
        }

        .promo-card .promo-meta i {
            margin-right: 4px;
        }

        /* Data Dashboard */
        .section-data-dashboard {
            padding: 80px 0;
            background: var(--bg-charcoal);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .dashboard-card {
            background: var(--bg-elevated);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            text-align: left;
            border: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }

        .dashboard-card:hover {
            border-color: var(--border-gold);
        }

        .dashboard-card .dash-icon {
            font-size: 2rem;
            color: var(--pri-gold);
            margin-bottom: 16px;
        }

        .dashboard-card .dash-value {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-warm-white);
            line-height: 1;
            margin-bottom: 8px;
        }

        .dashboard-card .dash-label {
            font-size: 0.9rem;
            color: var(--text-soft);
        }

        /* How To Claim */
        .section-how-to {
            padding: 80px 0;
        }

        .steps-vertical {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            position: relative;
        }

        .step-item {
            padding: 32px 24px;
            border-right: 1px solid var(--border-subtle);
            text-align: left;
        }

        .step-item:last-child {
            border-right: none;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--pri-amber) 0%, var(--pri-gold) 100%);
            color: var(--bg-obsidian);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .step-item h4 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-warm-white);
            margin-bottom: 10px;
        }

        .step-item p {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.6;
        }

        /* Comparison Table */
        .section-comparison {
            padding: 80px 0;
            background: var(--bg-charcoal);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .comparison-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        .comparison-table thead th {
            background: var(--bg-elevated);
            padding: 16px 20px;
            text-align: left;
            font-weight: 600;
            color: var(--pri-gold);
            font-size: 0.9rem;
            border-bottom: 2px solid var(--border-gold);
        }

        .comparison-table tbody td {
            padding: 14px 20px;
            font-size: 0.9rem;
            color: var(--text-soft);
            border-bottom: 1px solid var(--border-subtle);
        }

        .comparison-table tbody tr {
            transition: var(--transition-smooth);
        }

        .comparison-table tbody tr:hover {
            background: rgba(197, 160, 89, 0.03);
        }

        .comparison-table .highlight-cell {
            color: var(--pri-amber);
            font-weight: 600;
        }

        .badge-check {
            color: #4ade80;
        }

        /* FAQ */
        .section-faq {
            padding: 80px 0;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 860px;
        }

        .faq-item {
            background: var(--bg-charcoal);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-warm-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-body);
        }

        .faq-question i {
            transition: var(--transition-smooth);
            color: var(--pri-gold);
            font-size: 0.9rem;
        }

        .faq-answer {
            padding: 0 24px 20px;
            font-size: 0.95rem;
            color: var(--text-soft);
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .section-cta {
            padding: 80px 0 100px;
        }

        .cta-card {
            background: linear-gradient(135deg, var(--bg-charcoal) 0%, var(--bg-elevated) 100%);
            border-radius: var(--radius-lg);
            padding: 60px 48px;
            text-align: left;
            border: 1px solid var(--border-gold);
            position: relative;
            overflow: hidden;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-card h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-warm-white);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .cta-card p {
            font-size: 1.05rem;
            color: var(--text-soft);
            margin-bottom: 28px;
            max-width: 580px;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 1rem;
            background: linear-gradient(135deg, var(--pri-amber) 0%, var(--pri-gold) 100%);
            color: var(--bg-obsidian);
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-gold);
            text-align: center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
        }

        .btn-outline {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 1rem;
            background: transparent;
            border: 1px solid var(--border-gold);
            color: var(--text-warm-white);
            cursor: pointer;
            transition: var(--transition-smooth);
            text-align: center;
        }

        .btn-outline:hover {
            background: rgba(197, 160, 89, 0.08);
        }

        /* Footer */
        .site-footer {
            background-color: var(--bg-charcoal);
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--pri-gold);
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 0.9rem;
            color: var(--text-soft);
            transition: var(--transition-smooth);
        }

        .footer-col ul li a:hover {
            color: var(--pri-gold);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            text-align: left;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--text-soft);
        }

        .footer-bottom span {
            color: var(--pri-gold);
            font-weight: 600;
        }

        /* FAB */
        .fab {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 52px;
            height: 52px;
            border-radius: 100px;
            background: rgba(12, 12, 14, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 2px solid transparent;
            background-clip: padding-box;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
            opacity: 0.65;
        }

        .fab::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 100px;
            background: linear-gradient(135deg, #CCFF00, #00F0FF);
            z-index: -1;
            opacity: 0.7;
        }

        .fab:hover {
            transform: scale(1.1);
            opacity: 1;
            box-shadow: 0 0 28px rgba(0, 240, 255, 0.45);
        }

        .fab i {
            color: #00F0FF;
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
        }

        .fab .fab-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            background: #FF007F;
            border-radius: 50%;
            border: 2px solid #0F0C20;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-vertical {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--bg-obsidian);
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                padding: 80px 32px;
                gap: 12px;
                transform: translateX(100%);
                transition: var(--transition-smooth);
                z-index: 99;
            }
            .nav-links.open {
                transform: translateX(0);
            }
            .nav-links li a {
                font-size: 1.2rem;
                padding: 14px 20px;
                width: 100%;
            }
            .hamburger {
                display: flex;
            }
            .header-actions {
                gap: 8px;
            }
            .btn-login, .btn-signup {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .promo-cards-grid {
                grid-template-columns: 1fr;
            }
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            .steps-vertical {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .step-item {
                border-right: none;
                border-bottom: 1px solid var(--border-subtle);
                padding: 24px 0;
            }
            .step-item:last-child {
                border-bottom: none;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .cta-card {
                padding: 40px 24px;
            }
            .cta-card h2 {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 16px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .hero-content h1 {
                font-size: 1.5rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .btn-primary, .btn-outline {
                width: 100%;
                text-align: center;
            }
            .promo-card {
                padding: 20px;
            }
        }
