/* roulang page: index */
:root {
            --bg-primary: #121212;
            --bg-secondary: #1C1C1E;
            --bg-card: #1E1E21;
            --accent-gold: #C5A059;
            --accent-amber: #FFBF00;
            --accent-bronze: #A0784C;
            --text-white: #F5F5F7;
            --text-muted: #D4AC0D;
            --text-secondary: #A6A6B0;
            --border-subtle: rgba(197, 160, 89, 0.15);
            --border-active: rgba(197, 160, 89, 0.4);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
            --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition-base);
        }
        
        a:hover {
            color: var(--accent-amber);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(18, 18, 18, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-base);
        }
        
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }
        
        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        
        .nav-logo:hover {
            color: var(--accent-amber);
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-white);
            border-bottom-color: var(--accent-gold);
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-login {
            color: var(--text-white);
            background: transparent;
            border: 1px solid var(--border-active);
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        
        .btn-login:hover {
            background: rgba(197, 160, 89, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .btn-signup {
            color: #121212;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            border: none;
            padding: 9px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition-base);
            box-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
            white-space: nowrap;
        }
        
        .btn-signup:hover {
            background: linear-gradient(135deg, #F5C640, var(--accent-amber));
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.45);
            color: #121212;
        }
        
        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-active);
            color: var(--text-white);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 140px 0 80px;
            background: linear-gradient(160deg, #121212 0%, #1C1C1E 40%, #1A1814 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(197, 160, 89, 0.12);
            border: 1px solid var(--border-active);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-amber);
            margin-bottom: 20px;
        }
        
        .hero-badge i {
            font-size: 0.7rem;
            animation: pulse-dot 2s infinite;
        }
        
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 18px;
            color: var(--text-white);
            letter-spacing: -0.5px;
        }
        
        .hero-title span {
            color: var(--accent-amber);
        }
        
        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.65;
            margin-bottom: 30px;
        }
        
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        
        .btn-primary-gold {
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            color: #121212;
            border: none;
            padding: 12px 28px;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition-base);
            box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(197, 160, 89, 0.55);
            color: #121212;
        }
        
        .btn-outline-gold {
            background: transparent;
            border: 1.5px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 12px 28px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-base);
        }
        
        .btn-outline-gold:hover {
            background: rgba(197, 160, 89, 0.1);
            color: var(--accent-amber);
            border-color: var(--accent-amber);
        }
        
        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .hero-stat-item {
            text-align: left;
        }
        
        .hero-stat-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent-amber);
        }
        
        .hero-stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        
        .hero-image-stage {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-gold);
            border: 1px solid var(--border-active);
        }
        
        /* Section Common */
        .section-pad {
            padding: 70px 0;
        }
        
        .section-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent-amber);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-white);
        }
        
        .section-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 650px;
            margin-bottom: 36px;
            line-height: 1.6;
        }
        
        /* Feature Comparison Table */
        .compare-table-wrapper {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
        }
        
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        
        .compare-table th {
            background: var(--bg-secondary);
            color: var(--accent-amber);
            font-weight: 700;
            padding: 16px 20px;
            text-align: left;
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border-active);
        }
        
        .compare-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .compare-table tr:last-child td {
            border-bottom: none;
        }
        
        .compare-table .highlight-row {
            background: rgba(197, 160, 89, 0.04);
        }
        
        .compare-check {
            color: #4CAF50;
            font-weight: bold;
        }
        
        /* Recommend Tier */
        .tier-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: var(--transition-base);
            position: relative;
        }
        
        .tier-card.featured {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
            background: linear-gradient(160deg, #1E1E21 0%, #1A1814 100%);
        }
        
        .tier-badge {
            position: absolute;
            top: -14px;
            right: 24px;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            color: #121212;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 6px 16px;
            border-radius: 50px;
            letter-spacing: 0.5px;
        }
        
        .tier-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-white);
            margin-bottom: 10px;
        }
        
        .tier-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }
        
        .tier-features {
            list-style: none;
            padding: 0;
        }
        
        .tier-features li {
            padding: 7px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            font-size: 0.9rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .tier-features li i {
            color: var(--accent-amber);
            font-size: 0.75rem;
        }
        
        /* News List */
        .news-list {
            list-style: none;
            padding: 0;
        }
        
        .news-item {
            display: flex;
            align-items: baseline;
            gap: 16px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-base);
        }
        
        .news-item:hover {
            background: rgba(197, 160, 89, 0.03);
        }
        
        .news-date {
            font-size: 0.8rem;
            color: var(--accent-amber);
            white-space: nowrap;
            min-width: 80px;
            font-weight: 600;
        }
        
        .news-title-link {
            font-weight: 600;
            color: var(--text-white);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .news-title-link:hover {
            color: var(--accent-amber);
        }
        
        .news-excerpt {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }
        
        .news-category-tag {
            display: inline-block;
            background: rgba(197, 160, 89, 0.1);
            color: var(--accent-amber);
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 8px;
        }
        
        /* Sidebar Recommend */
        .sidebar-recommend {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 24px;
        }
        
        .sidebar-recommend h4 {
            color: var(--accent-amber);
            font-weight: 700;
            margin-bottom: 16px;
            font-size: 1rem;
        }
        
        .side-item {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .side-item:last-child {
            border-bottom: none;
        }
        
        .side-item a {
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* FAQ */
        .faq-item {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--bg-card);
        }
        
        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            color: var(--text-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-base);
        }
        
        .faq-question:hover {
            background: rgba(197, 160, 89, 0.04);
        }
        
        .faq-answer {
            padding: 0 22px 18px;
            color: var(--text-secondary);
            line-height: 1.65;
            font-size: 0.9rem;
        }
        
        /* FAB */
        .fab-floating {
            position: fixed;
            left: 20px;
            bottom: 80px;
            z-index: 50;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 2px solid var(--accent-gold);
            box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-base);
            animation: float-breath 3s ease-in-out infinite;
        }
        
        @keyframes float-breath {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        
        .fab-floating:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(197, 160, 89, 0.55);
            border-color: var(--accent-amber);
        }
        
        .fab-floating i {
            color: var(--accent-amber);
            font-size: 1.4rem;
        }
        
        .fab-notify {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 10px;
            height: 10px;
            background: #D32F2F;
            border-radius: 50%;
            animation: blink 1.5s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }
        
        /* Footer */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            padding: 40px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .footer-col h5 {
            color: var(--accent-amber);
            font-weight: 700;
            margin-bottom: 14px;
            font-size: 1rem;
        }
        
        .footer-col a {
            display: block;
            color: var(--text-secondary);
            padding: 4px 0;
            font-size: 0.85rem;
        }
        
        .footer-col a:hover {
            color: var(--accent-gold);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                gap: 14px;
            }
            .nav-links a {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(18, 18, 18, 0.97);
                backdrop-filter: blur(12px);
                flex-direction: column;
                padding: 20px;
                gap: 8px;
                border-bottom: 1px solid var(--border-subtle);
            }
            
            .nav-links.show {
                display: flex;
            }
            
            .nav-actions {
                gap: 6px;
            }
            
            .btn-login, .btn-signup {
                padding: 7px 14px;
                font-size: 0.8rem;
            }
            
            .hero-section {
                padding: 120px 0 50px;
            }
            
            .hero-stats {
                gap: 16px;
            }
            
            .section-pad {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 520px) {
            .nav-logo {
                font-size: 1rem;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-primary-gold, .btn-outline-gold {
                text-align: center;
                justify-content: center;
            }
        }

/* roulang page: article */
:root {
            --bg-primary: #121212;
            --bg-secondary: #1C1C1E;
            --bg-card: #1E1E21;
            --accent-gold: #C5A059;
            --accent-amber: #FFBF00;
            --accent-bronze: #A0784C;
            --text-white: #F5F5F7;
            --text-muted: #D4AC0D;
            --text-secondary: #A6A6B0;
            --border-subtle: rgba(197, 160, 89, 0.15);
            --border-active: rgba(197, 160, 89, 0.4);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
            --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition-base);
        }
        
        a:hover {
            color: var(--accent-amber);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(18, 18, 18, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-base);
        }
        
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }
        
        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        
        .nav-logo:hover {
            color: var(--accent-amber);
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-white);
            border-bottom-color: var(--accent-gold);
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-login {
            color: var(--text-white);
            background: transparent;
            border: 1px solid var(--border-active);
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-base);
            white-space: nowrap;
            cursor: pointer;
        }
        
        .btn-login:hover {
            background: rgba(197, 160, 89, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .btn-signup {
            color: #121212;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            border: none;
            padding: 9px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition-base);
            box-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
            white-space: nowrap;
            cursor: pointer;
        }
        
        .btn-signup:hover {
            background: linear-gradient(135deg, #F5C640, var(--accent-amber));
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.45);
            color: #121212;
        }
        
        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-active);
            color: var(--text-white);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
        }
        
        /* Article Content Area */
        .article-wrapper {
            padding-top: 100px;
            padding-bottom: 60px;
            min-height: 60vh;
        }
        
        .article-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-subtle);
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        
        .article-category-badge {
            display: inline-block;
            background: rgba(197, 160, 89, 0.15);
            color: var(--accent-amber);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid var(--border-active);
        }
        
        .article-date {
            color: var(--text-secondary);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .article-date i {
            color: var(--accent-gold);
        }
        
        .article-title {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        
        .article-featured-image {
            width: 100%;
            border-radius: var(--radius-md);
            margin: 28px 0 36px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-subtle);
        }
        
        .article-body {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.75;
        }
        
        .article-body h2 {
            font-family: var(--font-heading);
            color: var(--text-white);
            font-size: 1.6rem;
            font-weight: 700;
            margin: 36px 0 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .article-body h3 {
            font-family: var(--font-heading);
            color: var(--text-white);
            font-size: 1.25rem;
            font-weight: 600;
            margin: 28px 0 12px;
        }
        
        .article-body p {
            margin-bottom: 16px;
        }
        
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px;
            padding-left: 24px;
        }
        
        .article-body li {
            margin-bottom: 8px;
        }
        
        .article-body strong {
            color: var(--accent-amber);
            font-weight: 600;
        }
        
        .article-body a {
            font-weight: 500;
            border-bottom: 1px dashed var(--accent-gold);
        }
        
        .article-body a:hover {
            border-bottom-style: solid;
        }
        
        .article-body blockquote {
            background: rgba(197, 160, 89, 0.05);
            border-left: 4px solid var(--accent-gold);
            padding: 16px 20px;
            margin: 24px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: var(--text-muted);
        }
        
        .not-found-state {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-secondary);
        }
        
        .not-found-state i {
            font-size: 4rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            display: block;
            opacity: 0.6;
        }
        
        .not-found-state h2 {
            font-family: var(--font-heading);
            color: var(--text-white);
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        
        .btn-back-home {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            color: #121212;
            font-weight: 700;
            border-radius: var(--radius-sm);
            transition: var(--transition-base);
            box-shadow: var(--shadow-gold);
        }
        
        .btn-back-home:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(197, 160, 89, 0.35);
            color: #121212;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(160deg, #1C1C1E 0%, #1A1814 100%);
            padding: 60px 0;
            margin-top: 60px;
            border-top: 1px solid var(--border-subtle);
        }
        
        .cta-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            border: 1px solid var(--border-active);
            box-shadow: var(--shadow-lg);
        }
        
        .cta-card h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 12px;
        }
        
        .cta-card p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }
        
        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            color: #121212;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
        }
        
        .btn-cta-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(197, 160, 89, 0.45);
            color: #121212;
        }
        
        /* Footer */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        
        .footer-col h5 {
            font-family: var(--font-heading);
            color: var(--text-white);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .footer-col a {
            display: block;
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 4px 0;
            transition: var(--transition-base);
        }
        
        .footer-col a:hover {
            color: var(--accent-amber);
            padding-left: 4px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        
        /* FAB */
        .fab-floating {
            position: fixed;
            left: 20px;
            bottom: 80px;
            z-index: 999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            border: 2px solid var(--accent-amber);
            box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            color: #121212;
            transition: var(--transition-base);
            animation: floatBreath 3s ease-in-out infinite;
        }
        
        .fab-floating:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(197, 160, 89, 0.5);
        }
        
        @keyframes floatBreath {
            0%, 100% { opacity: 0.7; transform: translateY(0); }
            50% { opacity: 1; transform: translateY(-6px); }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .article-container {
                padding: 32px 24px;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(18, 18, 18, 0.98);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--border-subtle);
                gap: 12px;
            }
            
            .nav-links.active-mobile {
                display: flex;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .btn-login {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
            
            .btn-signup {
                padding: 7px 16px;
                font-size: 0.8rem;
            }
            
            .article-container {
                padding: 24px 20px;
            }
            
            .article-title {
                font-size: 1.5rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .cta-card {
                padding: 28px 20px;
            }
            
            .fab-floating {
                width: 48px;
                height: 48px;
                left: 12px;
                bottom: 60px;
            }
        }
        
        @media (max-width: 520px) {
            .nav-logo {
                font-size: 1.1rem;
            }
            
            .btn-login,
            .btn-signup {
                padding: 5px 10px;
                font-size: 0.75rem;
            }
            
            .article-title {
                font-size: 1.3rem;
            }
            
            .article-body {
                font-size: 0.95rem;
            }
            
            .article-container {
                padding: 20px 16px;
                border-radius: var(--radius-md);
            }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #121212;
            --bg-secondary: #1C1C1E;
            --bg-card: #1E1E21;
            --accent-gold: #C5A059;
            --accent-amber: #FFBF00;
            --accent-bronze: #A0784C;
            --text-white: #F5F5F7;
            --text-muted: #D4AC0D;
            --text-secondary: #A6A6B0;
            --border-subtle: rgba(197, 160, 89, 0.15);
            --border-active: rgba(197, 160, 89, 0.4);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
            --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition-base);
        }

        a:hover {
            color: var(--accent-amber);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-base);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .nav-logo:hover {
            color: var(--accent-amber);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-links a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-white);
            border-bottom-color: var(--accent-gold);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-login {
            color: var(--text-white);
            background: transparent;
            border: 1px solid var(--border-active);
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-login:hover {
            background: rgba(197, 160, 89, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .btn-signup {
            color: #121212;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            border: none;
            padding: 9px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition-base);
            box-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
            white-space: nowrap;
        }

        .btn-signup:hover {
            background: linear-gradient(135deg, #F5C640, var(--accent-amber));
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.45);
            color: #121212;
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-active);
            color: var(--text-white);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
        }

        /* Hero Section */
        .hero-section {
            padding: 140px 0 80px;
            background: linear-gradient(160deg, #121212 0%, #1C1C1E 40%, #1A1814 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(197, 160, 89, 0.12);
            border: 1px solid var(--border-active);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-amber);
            margin-bottom: 20px;
        }

        .hero-badge i {
            font-size: 0.7rem;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(180deg, #FFFFFF 0%, #D4AC0D 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.6;
            max-width: 640px;
        }

        .btn-primary-gold {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            color: #121212;
            padding: 14px 32px;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 1.05rem;
            border: none;
            transition: var(--transition-base);
            box-shadow: var(--shadow-gold);
        }

        .btn-primary-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 24px rgba(197, 160, 89, 0.5);
            color: #121212;
        }

        .hero-visual {
            position: relative;
            z-index: 2;
            background: url('/assets/images/coverpic/cover-1.jpg') center/cover no-repeat;
            border-radius: var(--radius-lg);
            min-height: 360px;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-lg);
        }

        /* Section Common */
        .section {
            padding: 80px 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent-amber);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-white);
            line-height: 1.3;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /* Game Cards Grid */
        .game-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .game-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .game-card:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-4px);
        }

        .game-card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(255, 191, 0, 0.08));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--accent-amber);
            margin-bottom: 16px;
        }

        .game-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-white);
        }

        .game-card-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            flex-grow: 1;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .game-card-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(197, 160, 89, 0.1);
            border: 1px solid var(--border-subtle);
            border-radius: 50px;
            padding: 5px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-amber);
            width: fit-content;
        }

        /* Steps Flow */
        .steps-flow {
            display: flex;
            gap: 24px;
            justify-content: space-between;
        }

        .step-item {
            flex: 1;
            text-align: left;
            padding: 24px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            position: relative;
        }

        .step-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            opacity: 0.25;
            margin-bottom: 8px;
            line-height: 1;
        }

        .step-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .step-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* FAQ */
        .faq-list {
            max-width: 820px;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
            padding: 20px 0;
        }

        .faq-question {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
        }

        .faq-answer {
            padding-top: 10px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        /* CTA Sticky Bar */
        .cta-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--border-active);
            z-index: 1040;
            padding: 12px 0;
        }

        .cta-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .cta-bar-text {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-white);
        }

        .btn-cta-bar {
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            color: #121212;
            padding: 10px 28px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .btn-cta-bar:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.5);
        }

        /* FAB */
        .fab-left {
            position: fixed;
            left: 24px;
            bottom: 96px;
            z-index: 1050;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #121212, #1C1C1E);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-amber);
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: var(--transition-base);
            animation: float-vertical 3s ease-in-out infinite;
        }

        .fab-left:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 24px rgba(197, 160, 89, 0.5);
        }

        @keyframes float-vertical {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* Footer */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            padding: 50px 0 24px;
            margin-bottom: 70px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col h5 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--accent-amber);
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 8px;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--text-white);
        }

        .footer-bottom {
            font-size: 0.85rem;
            color: var(--text-secondary);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            text-align: center;
        }

        @media (max-width: 1024px) {
            .game-card-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-title { font-size: 2.2rem; }
            .steps-flow { flex-direction: column; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-secondary); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border-subtle); }
            .nav-links.show { display: flex; }
            .mobile-toggle { display: block; }
            .game-card-grid { grid-template-columns: 1fr; }
            .hero-section { padding: 120px 0 60px; }
            .hero-title { font-size: 1.8rem; }
            .cta-bar-inner { flex-direction: column; text-align: center; }
            .footer-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 520px) {
            .hero-title { font-size: 1.6rem; }
            .section-title { font-size: 1.5rem; }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #121212;
            --bg-secondary: #1C1C1E;
            --bg-card: #1E1E21;
            --accent-gold: #C5A059;
            --accent-amber: #FFBF00;
            --accent-bronze: #A0784C;
            --text-white: #F5F5F7;
            --text-muted: #D4AC0D;
            --text-secondary: #A6A6B0;
            --border-subtle: rgba(197, 160, 89, 0.15);
            --border-active: rgba(197, 160, 89, 0.4);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
            --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition-base);
        }

        a:hover {
            color: var(--accent-amber);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(18, 18, 18, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-base);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .nav-logo:hover {
            color: var(--accent-amber);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-links a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-white);
            border-bottom-color: var(--accent-gold);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-login {
            color: var(--text-white);
            background: transparent;
            border: 1px solid var(--border-active);
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-login:hover {
            background: rgba(197, 160, 89, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .btn-signup {
            color: #121212;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            border: none;
            padding: 9px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition-base);
            box-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
            white-space: nowrap;
        }

        .btn-signup:hover {
            background: linear-gradient(135deg, #F5C640, var(--accent-amber));
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.45);
            color: #121212;
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-active);
            color: var(--text-white);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
        }

        .inner-hero {
            padding: 140px 0 80px;
            background: linear-gradient(160deg, #121212 0%, #1C1C1E 40%, #1A1814 100%);
            position: relative;
            overflow: hidden;
        }

        .inner-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(197, 160, 89, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .creator-profile {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
        }

        .creator-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: #121212;
            flex-shrink: 0;
            border: 3px solid var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }

        .creator-info h1 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 4px;
            line-height: 1.2;
        }

        .creator-info .subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin: 0;
        }

        .stats-badges {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .stat-badge {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 16px 24px;
            text-align: center;
            min-width: 120px;
            transition: var(--transition-base);
        }

        .stat-badge:hover {
            border-color: var(--border-active);
            box-shadow: var(--shadow-gold);
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-amber);
            display: block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #121212;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            border: none;
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition-base);
            box-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
            text-decoration: none;
        }

        .btn-primary-gold:hover {
            background: linear-gradient(135deg, #F5C640, var(--accent-amber));
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(197, 160, 89, 0.45);
            color: #121212;
        }

        .btn-outline-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-gold);
            background: transparent;
            border: 1px solid var(--border-active);
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-base);
            text-decoration: none;
        }

        .btn-outline-gold:hover {
            background: rgba(197, 160, 89, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-amber);
        }

        .section {
            padding: 80px 0;
        }

        .section-dark {
            background-color: var(--bg-secondary);
        }

        .section-header {
            margin-bottom: 48px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-amber);
            margin-bottom: 8px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 12px;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .feature-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px;
            transition: var(--transition-base);
        }

        .feature-item:hover {
            border-color: var(--border-active);
            box-shadow: var(--shadow-gold);
            transform: translateY(-2px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: rgba(197, 160, 89, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 16px;
        }

        .feature-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 8px;
        }

        .feature-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        .game-showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .game-showcase-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-base);
        }

        .game-showcase-card:hover {
            border-color: var(--border-active);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }

        .game-showcase-image {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .game-showcase-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-hot-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #D32F2F, #B71C1C);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 50px;
            letter-spacing: 0.5px;
        }

        .game-showcase-body {
            padding: 18px 20px;
        }

        .game-showcase-body h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 6px;
        }

        .game-showcase-body p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0 0 12px;
            line-height: 1.5;
        }

        .game-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--accent-amber);
        }

        .game-meta i {
            font-size: 0.7rem;
        }

        .scenario-list {
            list-style: none;
            padding: 0;
            margin: 32px 0 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
        }

        .scenario-list li {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: var(--transition-base);
        }

        .scenario-list li:hover {
            border-color: var(--border-active);
        }

        .scenario-list li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .scenario-list li strong {
            display: block;
            font-size: 1rem;
            color: var(--text-white);
            margin-bottom: 4px;
        }

        .scenario-list li span {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .trust-banner {
            background: rgba(197, 160, 89, 0.06);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .trust-banner-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(197, 160, 89, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 2rem;
            flex-shrink: 0;
        }

        .trust-banner-text h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 8px;
        }

        .trust-banner-text p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        .faq-list {
            max-width: 800px;
        }

        .faq-item {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            background: var(--bg-card);
            overflow: hidden;
            transition: var(--transition-base);
        }

        .faq-item:hover {
            border-color: var(--border-active);
        }

        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: var(--text-white);
            font-size: 1rem;
            font-weight: 600;
            padding: 18px 24px;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: var(--transition-base);
        }

        .faq-question:hover {
            color: var(--accent-amber);
        }

        .faq-question i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            color: var(--accent-gold);
        }

        .faq-question[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px 18px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
        }

        .faq-answer.show {
            display: block;
        }

        .cta-strip {
            background: linear-gradient(135deg, #1A1814, #1C1C1E);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            text-align: center;
        }

        .cta-strip h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 12px;
        }

        .cta-strip p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin: 0 0 24px;
        }

        .bottom-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--border-subtle);
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            z-index: 1040;
            flex-wrap: wrap;
        }

        .bottom-sticky-bar .btn-primary-gold {
            padding: 12px 28px;
            font-size: 0.95rem;
        }

        .bottom-sticky-bar .btn-outline-gold {
            padding: 12px 28px;
            font-size: 0.95rem;
            border-color: var(--border-active);
        }

        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
            margin-bottom: 70px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 40px;
        }

        .footer-col h5 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 16px;
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 8px;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-amber);
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-bottom p {
            margin: 0;
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 16px;
            }
            .nav-links a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(18, 18, 18, 0.98);
                backdrop-filter: blur(16px);
                border-bottom: 1px solid var(--border-subtle);
                padding: 16px 20px;
                gap: 12px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .inner-hero {
                padding: 120px 0 60px;
            }
            .creator-profile {
                flex-direction: column;
                text-align: center;
            }
            .creator-info h1 {
                font-size: 1.6rem;
            }
            .stats-badges {
                justify-content: center;
            }
            .cta-group {
                justify-content: center;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .game-showcase-grid {
                grid-template-columns: 1fr;
            }
            .scenario-list {
                grid-template-columns: 1fr;
            }
            .trust-banner {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .creator-info h1 {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .btn-primary-gold,
            .btn-outline-gold {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #121212;
            --bg-secondary: #1C1C1E;
            --bg-card: #1E1E21;
            --accent-gold: #C5A059;
            --accent-amber: #FFBF00;
            --accent-bronze: #A0784C;
            --text-white: #F5F5F7;
            --text-muted: #D4AC0D;
            --text-secondary: #A6A6B0;
            --border-subtle: rgba(197, 160, 89, 0.15);
            --border-active: rgba(197, 160, 89, 0.4);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
            --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition-base);
        }
        
        a:hover {
            color: var(--accent-amber);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(18, 18, 18, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-base);
        }
        
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }
        
        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        
        .nav-logo:hover {
            color: var(--accent-amber);
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-white);
            border-bottom-color: var(--accent-gold);
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-login {
            color: var(--text-white);
            background: transparent;
            border: 1px solid var(--border-active);
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-base);
            white-space: nowrap;
            cursor: pointer;
        }
        
        .btn-login:hover {
            background: rgba(197, 160, 89, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .btn-signup {
            color: #121212;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            border: none;
            padding: 9px 20px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition-base);
            box-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
            white-space: nowrap;
            cursor: pointer;
        }
        
        .btn-signup:hover {
            background: linear-gradient(135deg, #F5C640, var(--accent-amber));
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.45);
            color: #121212;
        }
        
        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-active);
            color: var(--text-white);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
        }
        
        /* Page Banner */
        .page-banner {
            padding: 140px 0 70px;
            background: linear-gradient(160deg, #121212 0%, #1C1C1E 40%, #1A1814 100%);
            position: relative;
            overflow: hidden;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .page-banner-content {
            position: relative;
            z-index: 2;
        }
        
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(197, 160, 89, 0.12);
            border: 1px solid var(--border-active);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-amber);
            margin-bottom: 20px;
        }
        
        .banner-badge i {
            font-size: 0.7rem;
            animation: pulse-dot 2s infinite;
        }
        
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        
        .banner-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text-white);
        }
        
        .banner-title .highlight {
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .banner-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 0;
        }
        
        /* Section Common */
        .section-padding {
            padding: 70px 0;
        }
        
        .section-bg-alt {
            background-color: var(--bg-secondary);
        }
        
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-white);
        }
        
        .section-desc {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 700px;
        }
        
        /* Game Highlight Cards */
        .game-highlight-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition-base);
            height: 100%;
            position: relative;
        }
        
        .game-highlight-card:hover {
            border-color: var(--border-active);
            box-shadow: var(--shadow-gold);
            transform: translateY(-4px);
        }
        
        .game-highlight-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
        }
        
        .game-highlight-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-base);
        }
        
        .game-highlight-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }
        
        .game-highlight-card .new-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #FF4500, #FF0000);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            z-index: 3;
            letter-spacing: 0.5px;
        }
        
        .game-highlight-card .card-body {
            padding: 20px;
        }
        
        .game-highlight-card .card-body h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        
        .game-highlight-card .card-body p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }
        
        .game-highlight-card .card-body .btn-outline-gold {
            color: var(--accent-gold);
            border: 1px solid var(--border-active);
            background: transparent;
            padding: 7px 16px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition-base);
            cursor: pointer;
        }
        
        .game-highlight-card .card-body .btn-outline-gold:hover {
            background: rgba(197, 160, 89, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-amber);
        }
        
        /* Event Timeline */
        .event-timeline {
            position: relative;
            padding-left: 32px;
        }
        
        .event-timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border-active);
        }
        
        .event-item {
            position: relative;
            margin-bottom: 32px;
            padding-left: 24px;
        }
        
        .event-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent-gold);
            border: 3px solid var(--bg-primary);
            box-shadow: 0 0 0 3px var(--border-subtle);
        }
        
        .event-item .event-date {
            font-size: 0.8rem;
            color: var(--accent-amber);
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .event-item h5 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
        }
        
        .event-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0;
        }
        
        /* CTA Block */
        .cta-block {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
        }
        
        .cta-block h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-white);
        }
        
        .cta-block p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            color: #121212;
            border: none;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition-base);
            box-shadow: 0 4px 16px rgba(197, 160, 89, 0.3);
            cursor: pointer;
        }
        
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(197, 160, 89, 0.45);
            color: #121212;
        }
        
        .btn-gold-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--transition-base);
            cursor: pointer;
        }
        
        .btn-gold-outline:hover {
            background: rgba(197, 160, 89, 0.1);
            color: var(--accent-amber);
        }
        
        /* Stats Row */
        .stats-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            flex: 1;
            min-width: 140px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
        }
        
        .stat-item .stat-number {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-item .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 6px;
        }
        
        /* Footer */
        .site-footer {
            background-color: #0E0E0E;
            border-top: 1px solid var(--border-subtle);
            padding: 50px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-col h5 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }
        
        .footer-col a {
            display: block;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 8px;
            transition: var(--transition-base);
        }
        
        .footer-col a:hover {
            color: var(--text-white);
            padding-left: 4px;
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .banner-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(18, 18, 18, 0.98);
                flex-direction: column;
                padding: 16px 0;
                border-bottom: 1px solid var(--border-subtle);
            }
            
            .nav-links.active-mobile {
                display: flex;
            }
            
            .nav-links a {
                padding: 10px 20px;
                border-bottom: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .banner-title {
                font-size: 1.8rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .section-padding {
                padding: 50px 0;
            }
            
            .stats-row {
                flex-direction: column;
            }
        }
        
        @media (max-width: 520px) {
            .banner-title {
                font-size: 1.5rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .btn-login,
            .btn-signup {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            
            .nav-logo {
                font-size: 1.1rem;
            }
        }
