/* roulang page: index */
:root {
            --bg-primary: #0F0C20;
            --bg-secondary: #0B1A30;
            --bg-card: rgba(15, 12, 32, 0.85);
            --accent-green: #CCFF00;
            --accent-cyan: #00F0FF;
            --text-white: #FFFFFF;
            --text-muted: #A6ACAF;
            --border-neon: rgba(0, 240, 255, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.25);
            --shadow-glow-green: 0 0 18px rgba(204, 255, 0, 0.35);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: linear-gradient(175deg, var(--bg-primary) 0%, var(--bg-secondary) 55%, #0A1628 100%);
            color: var(--text-white);
            line-height: 1.65;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
            z-index: 1;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        /* === CONTAINER === */
        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* === TOP COUNTDOWN BAR === */
        .countdown-bar {
            background: linear-gradient(90deg, #0B1A30 0%, #1E0B36 50%, #0B1A30 100%);
            border-bottom: 1px solid rgba(0, 240, 255, 0.25);
            padding: 9px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 60;
        }
        .countdown-bar .countdown-label {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--accent-cyan);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .countdown-timer {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .countdown-unit {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 6px;
            padding: 4px 8px;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            min-width: 42px;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
        .countdown-unit span {
            display: block;
            font-size: 9px;
            color: var(--text-muted);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        /* === HEADER / NAV === */
        .site-header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 55;
            background: rgba(15, 12, 32, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 240, 255, 0.18);
            transition: var(--transition);
        }
        .site-header.scrolled {
            background: rgba(15, 12, 32, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 16px;
            flex-wrap: wrap;
        }
        .nav-logo {
            font-size: 19px;
            font-weight: 800;
            letter-spacing: -0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-white);
        }
        .nav-logo .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: #0F0C20;
            font-weight: 900;
            flex-shrink: 0;
        }
        .nav-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .nav-logo .logo-text .logo-main {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
        }
        .nav-logo .logo-text .logo-sub {
            font-size: 10px;
            color: var(--accent-cyan);
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-links a {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--text-white);
            background: rgba(0, 240, 255, 0.1);
        }
        .nav-links a.active {
            color: #fff;
            background: rgba(204, 255, 0, 0.15);
            box-shadow: inset 0 0 0 1px rgba(204, 255, 0, 0.3);
        }
        .nav-auth {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 9px 18px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            border-radius: 999px;
            background: transparent;
            border: 1.5px solid rgba(0, 240, 255, 0.45);
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-login:hover {
            background: rgba(0, 240, 255, 0.12);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 14px rgba(0, 240, 255, 0.3);
        }
        .btn-signup {
            padding: 9px 20px;
            font-size: 13px;
            font-weight: 800;
            color: #0F0C20;
            border-radius: 999px;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            transition: var(--transition);
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(204, 255, 0, 0.3);
        }
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(204, 255, 0, 0.45);
            filter: brightness(1.05);
        }
        .btn-signup:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(204, 255, 0, 0.3);
        }
        .mobile-toggle {
            display: none;
            padding: 9px;
            border-radius: 8px;
            color: #fff;
            font-size: 22px;
            line-height: 1;
            border: 1px solid rgba(0, 240, 255, 0.3);
            background: rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            flex-shrink: 0;
        }
        .mobile-toggle:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
        }

        /* === HERO === */
        .hero-section {
            position: relative;
            overflow: hidden;
            min-height: 72vh;
            display: flex;
            align-items: center;
            padding: 90px 0 70px;
            z-index: 2;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 12, 32, 0.88) 0%, rgba(11, 26, 48, 0.78) 45%, rgba(15, 12, 32, 0.7) 100%);
            z-index: 1;
        }
        .hero-overlay::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.13) 0%, transparent 60%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }
        .hero-tag-list {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .hero-tag {
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            background: rgba(204, 255, 0, 0.15);
            color: var(--accent-green);
            border: 1px solid rgba(204, 255, 0, 0.3);
            transition: var(--transition);
        }
        .hero-tag:hover {
            background: rgba(204, 255, 0, 0.25);
            box-shadow: 0 0 10px rgba(204, 255, 0, 0.3);
        }
        .hero-h1 {
            font-size: clamp(30px, 5vw, 52px);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 18px;
            color: #fff;
        }
        .hero-h1 .highlight-green {
            color: var(--accent-green);
            text-shadow: 0 0 18px rgba(204, 255, 0, 0.4);
        }
        .hero-h1 .highlight-cyan {
            color: var(--accent-cyan);
            text-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
        }
        .hero-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 560px;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 36px;
        }
        .btn-primary-neon {
            padding: 14px 30px;
            font-size: 15px;
            font-weight: 800;
            border-radius: 999px;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            color: #0F0C20;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(204, 255, 0, 0.35);
            letter-spacing: 0.2px;
        }
        .btn-primary-neon:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 34px rgba(0, 240, 255, 0.5);
            filter: brightness(1.06);
        }
        .btn-primary-neon:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(204, 255, 0, 0.3);
        }
        .btn-ghost-neon {
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            border: 1.5px solid rgba(0, 240, 255, 0.5);
            transition: var(--transition);
            letter-spacing: 0.2px;
        }
        .btn-ghost-neon:hover {
            background: rgba(0, 240, 255, 0.12);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
            transform: translateY(-2px);
        }
        .hero-stats {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .hero-stat .stat-value {
            font-size: 28px;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.5px;
        }
        .hero-stat .stat-value em {
            font-style: normal;
            color: var(--accent-cyan);
        }
        .hero-stat .stat-label {
            font-size: 12.5px;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .hero-play-wrap {
            position: absolute;
            right: 4%;
            bottom: -12%;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 210px;
            height: 210px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, rgba(0, 240, 255, 0.25) 0%, rgba(15, 12, 32, 0.8) 65%);
            border: 1.5px solid rgba(0, 240, 255, 0.45);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.3), inset 0 0 30px rgba(0, 240, 255, 0.1);
            animation: heroPulse 3.5s ease-in-out infinite;
        }
        .hero-play-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(204, 255, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--accent-green);
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(8px);
            box-shadow: 0 0 24px rgba(204, 255, 0, 0.35);
        }
        .hero-play-btn:hover {
            transform: scale(1.1);
            background: rgba(204, 255, 0, 0.2);
            box-shadow: 0 0 36px rgba(204, 255, 0, 0.55);
        }
        @keyframes heroPulse {
            0%, 100% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.3), inset 0 0 30px rgba(0, 240, 255, 0.1); }
            50% { box-shadow: 0 0 60px rgba(0, 240, 255, 0.5), inset 0 0 40px rgba(0, 240, 255, 0.2); }
        }
        .hero-play-label {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            color: var(--text-muted);
            white-space: nowrap;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* === SECTION BASE === */
        .section {
            padding: 74px 0;
            position: relative;
            z-index: 2;
        }
        .section-alt {
            background: rgba(11, 26, 48, 0.55);
            border-top: 1px solid rgba(0, 240, 255, 0.12);
            border-bottom: 1px solid rgba(0, 240, 255, 0.12);
        }
        .section-title {
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            line-height: 1.25;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 34px;
        }
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .section-head .section-title {
            margin-bottom: 0;
        }
        .link-more {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--accent-cyan);
            padding: 8px 4px;
            transition: var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .link-more:hover {
            color: var(--accent-green);
            letter-spacing: 0.3px;
        }

        /* === FLASH SALE TRACK === */
        .flash-track {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 18px;
            margin-top: 8px;
        }
        .game-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(0, 240, 255, 0.22);
            transition: var(--transition);
            position: relative;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .game-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 240, 255, 0.55);
            box-shadow: 0 12px 32px rgba(0, 240, 255, 0.25);
        }
        .game-card .card-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        .game-card:hover .card-img {
            filter: brightness(1.08);
        }
        .game-card .card-body {
            padding: 16px 16px 18px;
        }
        .game-card .card-title {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: -0.3px;
        }
        .game-card .card-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            background: rgba(204, 255, 0, 0.9);
            color: #0F0C20;
            z-index: 3;
        }
        .card-tag.hot {
            background: rgba(255, 0, 0, 0.85);
            color: #fff;
        }
        .card-tag.new {
            background: rgba(0, 240, 255, 0.85);
            color: #0F0C20;
        }

        /* === STOCK INDICATOR === */
        .stock-panel {
            background: rgba(15, 12, 32, 0.7);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0, 240, 255, 0.2);
            padding: 32px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .stock-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .stock-item {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .stock-item .stock-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .stock-item .stock-label .stock-pct {
            color: var(--accent-cyan);
            font-weight: 800;
        }
        .stock-bar {
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            overflow: hidden;
            position: relative;
        }
        .stock-bar .stock-fill {
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, #CCFF00 0%, #00F0FF 100%);
            transition: width 1.2s ease-out;
            box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
        }
        .stock-note {
            font-size: 11.5px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* === NEWS / CMS LIST === */
        .news-layout {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 36px;
            align-items: start;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .news-list-item {
            display: flex;
            gap: 16px;
            padding: 18px 4px;
            border-bottom: 1px solid rgba(0, 240, 255, 0.12);
            transition: var(--transition);
            align-items: flex-start;
        }
        .news-list-item:hover {
            background: rgba(0, 240, 255, 0.04);
            padding-left: 12px;
            border-radius: 6px;
            border-bottom-color: rgba(0, 240, 255, 0.3);
        }
        .news-list-item .news-index {
            font-size: 26px;
            font-weight: 900;
            color: rgba(204, 255, 0, 0.6);
            min-width: 48px;
            text-align: center;
            line-height: 1.2;
            flex-shrink: 0;
        }
        .news-list-item .news-content {
            flex: 1;
        }
        .news-list-item .news-title {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
            transition: var(--transition);
            line-height: 1.4;
        }
        .news-list-item .news-title:hover {
            color: var(--accent-cyan);
        }
        .news-list-item .news-excerpt {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 6px;
        }
        .news-list-item .news-meta {
            font-size: 11.5px;
            color: rgba(166, 172, 175, 0.7);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .news-empty {
            padding: 28px;
            text-align: center;
            color: var(--text-muted);
            font-size: 15px;
            border: 1px dashed rgba(0, 240, 255, 0.3);
            border-radius: var(--radius-md);
        }
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-card {
            background: rgba(15, 12, 32, 0.65);
            border-radius: var(--radius-md);
            padding: 22px;
            border: 1px solid rgba(0, 240, 255, 0.18);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .sidebar-card .sidebar-card-title {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card .sidebar-card-title i {
            color: var(--accent-green);
            font-size: 14px;
        }
        .sidebar-reco-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .sidebar-reco-item {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
            transition: var(--transition);
            padding: 6px 4px;
            border-radius: 6px;
        }
        .sidebar-reco-item:hover {
            color: #fff;
            background: rgba(204, 255, 0, 0.08);
        }
        .sidebar-reco-item .reco-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
        }
        .sidebar-img-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(204, 255, 0, 0.3);
            transition: var(--transition);
        }
        .sidebar-img-card:hover {
            box-shadow: 0 6px 22px rgba(204, 255, 0, 0.25);
            transform: translateY(-3px);
        }
        .sidebar-img-card img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .sidebar-img-card .sidebar-img-label {
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            background: rgba(15, 12, 32, 0.9);
        }

        /* === CTA BUTTON GROUP === */
        .cta-btn-group {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .cta-btn-main {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 34px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 0.2px;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            color: #0F0C20;
            transition: var(--transition);
            box-shadow: 0 6px 24px rgba(204, 255, 0, 0.4);
        }
        .cta-btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 240, 255, 0.5);
            filter: brightness(1.06);
        }
        .cta-btn-main:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(204, 255, 0, 0.3);
        }
        .cta-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 700;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(0, 240, 255, 0.55);
            transition: var(--transition);
        }
        .cta-btn-outline:hover {
            border-color: var(--accent-cyan);
            background: rgba(0, 240, 255, 0.1);
            box-shadow: 0 0 18px rgba(0, 240, 255, 0.3);
            transform: translateY(-2px);
        }
        .cta-note {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* === TIMELINE === */
        .timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 18px;
            position: relative;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #CCFF00 0%, #00F0FF 50%, rgba(0, 240, 255, 0.2) 100%);
            z-index: 0;
        }
        .timeline-node {
            position: relative;
            z-index: 1;
            background: rgba(15, 12, 32, 0.8);
            border-radius: var(--radius-md);
            padding: 20px;
            border: 1px solid rgba(0, 240, 255, 0.22);
            transition: var(--transition);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .timeline-node:hover {
            border-color: rgba(0, 240, 255, 0.5);
            box-shadow: 0 6px 20px rgba(0, 240, 255, 0.2);
            transform: translateY(-4px);
        }
        .timeline-node .tl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent-green);
            box-shadow: 0 0 12px rgba(204, 255, 0, 0.7);
            margin-bottom: 14px;
            display: block;
        }
        .timeline-node .tl-time {
            font-size: 11px;
            color: var(--accent-cyan);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .timeline-node .tl-title {
            font-size: 14.5px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
        }
        .timeline-node .tl-action {
            font-size: 12.5px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* === ENTRY MATRIX === */
        .entry-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 16px;
        }
        .entry-tile {
            background: rgba(15, 12, 32, 0.7);
            border-radius: var(--radius-md);
            padding: 22px 18px;
            border: 1px solid rgba(0, 240, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            cursor: pointer;
        }
        .entry-tile:hover {
            border-color: rgba(204, 255, 0, 0.55);
            box-shadow: 0 6px 22px rgba(204, 255, 0, 0.2);
            transform: translateY(-4px);
        }
        .entry-tile .entry-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.18) 0%, rgba(0, 240, 255, 0.18) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            color: var(--accent-green);
            flex-shrink: 0;
            border: 1px solid rgba(204, 255, 0, 0.3);
        }
        .entry-tile .entry-info .entry-title {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 2px;
        }
        .entry-tile .entry-info .entry-desc {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* === FAQ === */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 780px;
        }
        .faq-item {
            background: rgba(15, 12, 32, 0.65);
            border-radius: var(--radius-md);
            border: 1px solid rgba(0, 240, 255, 0.18);
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(0, 240, 255, 0.4);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            transition: var(--transition);
            gap: 12px;
            user-select: none;
            -webkit-user-select: none;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-question .faq-toggle {
            font-size: 16px;
            color: var(--accent-green);
            transition: var(--transition);
            flex-shrink: 0;
        }
        .faq-answer {
            padding: 0 22px 18px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            display: none;
        }
        .faq-answer.open {
            display: block;
            animation: faqFade 0.3s ease-out;
        }
        @keyframes faqFade {
            from { opacity: 0; transform: translateY(-6px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* === FINAL CTA === */
        .final-cta {
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.12) 0%, rgba(0, 240, 255, 0.12) 100%);
            border: 1px solid rgba(204, 255, 0, 0.3);
            border-radius: var(--radius-lg);
            padding: 44px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.12) 0%, transparent 65%);
            pointer-events: none;
        }
        .final-cta .cta-title {
            font-size: clamp(20px, 3vw, 30px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }
        .final-cta .cta-sub {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 26px;
            position: relative;
            z-index: 1;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }
        .final-cta .cta-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* === FOOTER === */
        .site-footer {
            background: rgba(11, 13, 22, 0.95);
            border-top: 1px solid rgba(0, 240, 255, 0.18);
            padding: 48px 0 28px;
            position: relative;
            z-index: 2;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr;
            gap: 36px;
            margin-bottom: 32px;
        }
        .footer-brand .footer-logo {
            font-size: 17px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-brand .footer-logo i {
            color: var(--accent-green);
            font-size: 16px;
        }
        .footer-brand p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 320px;
        }
        .footer-links h4, .footer-extra h4 {
            font-size: 13px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .footer-links ul, .footer-extra ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links ul a, .footer-extra ul a {
            font-size: 13px;
            color: var(--text-muted);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-links ul a:hover, .footer-extra ul a:hover {
            color: var(--accent-cyan);
            transform: translateX(4px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-copy {
            font-size: 12px;
            color: rgba(166, 172, 175, 0.65);
        }
        .footer-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-badge {
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            background: rgba(204, 255, 0, 0.1);
            color: var(--accent-green);
            border: 1px solid rgba(204, 255, 0, 0.25);
        }

        /* === FAB === */
        .fab-left {
            position: fixed;
            left: 18px;
            bottom: 96px;
            z-index: 50;
            width: 58px;
            height: 58px;
            border-radius: 999px;
            background: rgba(15, 12, 32, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 2px solid transparent;
            background-image: linear-gradient(rgba(15, 12, 32, 0.7), rgba(15, 12, 32, 0.7)), linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            background-origin: padding-box, border-box;
            background-clip: padding-box, border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.45), 0 0 30px rgba(204, 255, 0, 0.2);
            transition: var(--transition);
            cursor: pointer;
            opacity: 0.65;
            animation: fabGlow 2.8s ease-in-out infinite;
        }
        .fab-left:hover {
            opacity: 1;
            transform: scale(1.12);
            box-shadow: 0 0 26px rgba(0, 240, 255, 0.7), 0 0 48px rgba(204, 255, 0, 0.4);
            color: var(--accent-green);
        }
        .fab-left:active {
            transform: scale(0.94);
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
        }
        .fab-left .fab-dot {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #FF0055;
            border: 2px solid #0F0C20;
            animation: dotBlink 1.2s ease-in-out infinite;
        }
        @keyframes fabGlow {
            0%, 100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.45), 0 0 30px rgba(204, 255, 0, 0.2); }
            50% { box-shadow: 0 0 26px rgba(0, 240, 255, 0.65), 0 0 42px rgba(204, 255, 0, 0.35); }
        }
        @keyframes dotBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }

        /* === RESPONSIVE === */
        @media (max-width: 1024px) {
            .hero-play-wrap {
                width: 160px;
                height: 160px;
                right: 2%;
                bottom: -8%;
            }
            .hero-play-btn {
                width: 64px;
                height: 64px;
                font-size: 20px;
            }
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 10px 0 6px;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 10px 14px;
                width: 100%;
                border-radius: 8px;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-auth {
                margin-left: auto;
            }
            .hero-section {
                padding: 56px 0 48px;
                min-height: auto;
            }
            .hero-play-wrap {
                display: none;
            }
            .hero-stats {
                gap: 18px;
            }
            .news-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .stock-panel {
                padding: 22px;
            }
            .section {
                padding: 50px 0;
            }
            .flash-track {
                grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
            }
            .cta-btn-group {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .cta-btn-main, .cta-btn-outline {
                justify-content: center;
            }
            .timeline::before {
                display: none;
            }
            .timeline {
                grid-template-columns: 1fr;
            }
            .entry-matrix {
                grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
            }
            .final-cta {
                padding: 30px 22px;
            }
            .fab-left {
                width: 50px;
                height: 50px;
                font-size: 19px;
                left: 12px;
                bottom: 80px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .nav-wrapper {
                padding: 10px 0;
                gap: 8px;
            }
            .nav-logo .logo-text .logo-main {
                font-size: 13px;
            }
            .nav-logo .logo-text .logo-sub {
                font-size: 9px;
            }
            .nav-logo .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            .btn-login, .btn-signup {
                padding: 7px 13px;
                font-size: 11.5px;
            }
            .hero-h1 {
                font-size: 26px;
            }
            .hero-desc {
                font-size: 14px;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary-neon, .btn-ghost-neon {
                padding: 12px 20px;
                font-size: 14px;
                text-align: center;
                justify-content: center;
            }
            .hero-stat .stat-value {
                font-size: 22px;
            }
            .section-title {
                font-size: 22px;
            }
            .flash-track {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 12px;
            }
            .game-card .card-title {
                font-size: 13px;
            }
            .countdown-bar .countdown-label {
                font-size: 11px;
            }
            .countdown-unit {
                font-size: 12px;
                padding: 3px 6px;
                min-width: 34px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .faq-question {
                font-size: 14px;
                padding: 15px 16px;
            }
            .faq-answer {
                padding: 0 16px 15px;
                font-size: 13px;
            }
            .entry-tile {
                padding: 16px 14px;
                gap: 10px;
            }
            .entry-tile .entry-icon {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }
        }
        @media (min-width: 769px) {
            .mobile-toggle {
                display: none !important;
            }
            .nav-links {
                display: flex !important;
            }
        }

/* roulang page: article */
:root {
            --bg-primary: #0F0C20;
            --bg-secondary: #0B1A30;
            --bg-card: rgba(15, 12, 32, 0.85);
            --accent-green: #CCFF00;
            --accent-cyan: #00F0FF;
            --text-white: #FFFFFF;
            --text-muted: #A6ACAF;
            --border-neon: rgba(0, 240, 255, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.25);
            --shadow-glow-green: 0 0 18px rgba(204, 255, 0, 0.35);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: var(--font-sans);
            background: linear-gradient(175deg, var(--bg-primary) 0%, var(--bg-secondary) 55%, #0A1628 100%);
            color: var(--text-white);
            line-height: 1.65;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
            z-index: 1;
        }
        a { color: inherit; text-decoration: none; transition: var(--transition); }
        img { max-width: 100%; height: auto; display: block; }
        button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
        button { cursor: pointer; border: none; background: none; }
        .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

        /* HEADER / NAV */
        .site-header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 55;
            background: rgba(15, 12, 32, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 240, 255, 0.18);
            transition: var(--transition);
        }
        .site-header.scrolled {
            background: rgba(15, 12, 32, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 16px;
            flex-wrap: wrap;
        }
        .nav-logo {
            font-size: 19px;
            font-weight: 800;
            letter-spacing: -0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-white);
        }
        .nav-logo .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: #0F0C20;
            font-weight: 900;
            flex-shrink: 0;
        }
        .nav-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .nav-logo .logo-text .logo-main {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
        }
        .nav-logo .logo-text .logo-sub {
            font-size: 10px;
            color: var(--accent-cyan);
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-links a {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--text-white);
            background: rgba(0, 240, 255, 0.1);
        }
        .nav-links a.active {
            color: #fff;
            background: rgba(204, 255, 0, 0.15);
            box-shadow: inset 0 0 0 1px rgba(204, 255, 0, 0.3);
        }
        .nav-auth {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 9px 18px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            border-radius: 999px;
            background: transparent;
            border: 1.5px solid rgba(0, 240, 255, 0.45);
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-login:hover {
            background: rgba(0, 240, 255, 0.12);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 14px rgba(0, 240, 255, 0.3);
        }
        .btn-signup {
            padding: 9px 20px;
            font-size: 13px;
            font-weight: 800;
            color: #0F0C20;
            border-radius: 999px;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            transition: var(--transition);
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(204, 255, 0, 0.3);
        }
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(204, 255, 0, 0.45);
            filter: brightness(1.05);
        }
        .btn-signup:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(204, 255, 0, 0.3);
        }
        .mobile-toggle {
            display: none;
            padding: 9px;
            border-radius: 8px;
            font-size: 22px;
            color: var(--accent-cyan);
            transition: var(--transition);
        }
        .mobile-toggle:hover {
            background: rgba(0, 240, 255, 0.1);
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
        }

        /* FOOTER */
        .site-footer {
            background: rgba(10, 22, 40, 0.95);
            border-top: 1px solid rgba(0, 240, 255, 0.18);
            padding: 60px 0 30px;
            margin-top: 80px;
            position: relative;
            z-index: 2;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-logo {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-logo i {
            color: var(--accent-green);
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
        }
        .footer-links h4,
        .footer-extra h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 18px;
        }
        .footer-links ul,
        .footer-extra ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li,
        .footer-extra li {
            margin-bottom: 12px;
        }
        .footer-links a,
        .footer-extra a {
            color: var(--text-muted);
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a i,
        .footer-extra a i {
            font-size: 12px;
            color: var(--accent-cyan);
        }
        .footer-links a:hover,
        .footer-extra a:hover {
            color: var(--text-white);
            transform: translateX(4px);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-copy {
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-badges {
            display: flex;
            gap: 10px;
        }
        .footer-badge {
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(0, 240, 255, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 240, 255, 0.25);
        }

        /* ARTICLE SPECIFIC */
        .article-hero {
            padding: 80px 0 60px;
            background-size: cover;
            background-position: center;
            position: relative;
            z-index: 2;
        }
        .article-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 12, 32, 0.85) 0%, rgba(15, 12, 32, 0.95) 100%);
            z-index: 0;
        }
        .article-hero .container {
            position: relative;
            z-index: 1;
        }
        .article-category {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(204, 255, 0, 0.2);
            color: var(--accent-green);
            border: 1px solid rgba(204, 255, 0, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .article-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            max-width: 900px;
        }
        .article-meta {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            color: var(--text-muted);
            font-size: 14px;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta i {
            color: var(--accent-cyan);
        }
        .article-main {
            padding: 40px 0 80px;
        }
        .article-featured-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 40px;
            border: 1px solid var(--border-neon);
            box-shadow: var(--shadow-neon);
        }
        .article-featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .article-body {
            max-width: 860px;
            margin: 0 auto;
            color: #D1D5DB;
            font-size: 16px;
            line-height: 1.8;
        }
        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-top: 40px;
            margin-bottom: 20px;
            color: #fff;
            line-height: 1.3;
        }
        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 32px;
            margin-bottom: 16px;
            color: var(--accent-cyan);
        }
        .article-body p {
            margin-bottom: 20px;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 24px;
        }
        .article-body li {
            margin-bottom: 10px;
        }
        .article-body img {
            border-radius: var(--radius-md);
            margin: 30px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .article-body blockquote {
            border-left: 4px solid var(--accent-green);
            background: rgba(204, 255, 0, 0.05);
            padding: 20px 24px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 30px 0;
            font-style: italic;
            color: #E5E7EB;
        }
        .not-found {
            text-align: center;
            padding: 60px 20px;
            background: rgba(15, 12, 32, 0.7);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-neon);
        }
        .not-found i {
            font-size: 48px;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        .not-found h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .not-found p {
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .btn-neon {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 14px;
            color: #0F0C20;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            box-shadow: 0 4px 18px rgba(204, 255, 0, 0.4);
            transition: var(--transition);
        }
        .btn-neon:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(204, 255, 0, 0.6);
            filter: brightness(1.05);
        }

        /* METRICS SECTION */
        .metrics-section {
            padding: 60px 0;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .metric-card {
            background: rgba(15, 12, 32, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-neon);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            transition: var(--transition);
        }
        .metric-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 240, 255, 0.2);
            border-color: var(--accent-cyan);
        }
        .metric-icon {
            font-size: 28px;
            color: var(--accent-green);
            margin-bottom: 12px;
        }
        .metric-number {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }
        .metric-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* COMPARISON TABLE */
        .comparison-section {
            padding: 60px 0;
        }
        .comparison-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-neon);
            background: rgba(15, 12, 32, 0.8);
            backdrop-filter: blur(12px);
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 240, 255, 0.1);
            font-size: 14px;
        }
        .comparison-table th {
            background: rgba(0, 240, 255, 0.08);
            color: var(--accent-cyan);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        .comparison-table td {
            color: #D1D5DB;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table .highlight {
            color: var(--accent-green);
            font-weight: 700;
        }

        /* FAQ */
        .faq-section {
            padding: 60px 0;
        }
        .faq-item {
            background: rgba(15, 12, 32, 0.85);
            border: 1px solid var(--border-neon);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
        }
        .faq-question {
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: #fff;
            cursor: pointer;
            transition: var(--transition);
            user-select: none;
        }
        .faq-question:hover {
            background: rgba(0, 240, 255, 0.08);
        }
        .faq-question i {
            color: var(--accent-cyan);
            transition: var(--transition);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 24px;
            color: var(--text-muted);
        }
        .faq-answer-inner {
            padding-bottom: 20px;
            line-height: 1.7;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA */
        .cta-section {
            padding: 70px 0;
            text-align: center;
        }
        .cta-box {
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.12) 0%, rgba(0, 240, 255, 0.12) 100%);
            border: 1px solid var(--border-neon);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            box-shadow: var(--shadow-neon);
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 20%, rgba(204, 255, 0, 0.1) 0%, transparent 60%),
                              radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-box h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .cta-box p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 32px;
            position: relative;
            z-index: 1;
        }
        .cta-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn-primary {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 15px;
            color: #0F0C20;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            box-shadow: 0 4px 18px rgba(204, 255, 0, 0.4);
            transition: var(--transition);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(204, 255, 0, 0.6);
        }
        .btn-secondary {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 15px;
            color: #fff;
            background: transparent;
            border: 2px solid var(--accent-cyan);
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background: rgba(0, 240, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }

        /* FAB */
        .fab-support {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(15, 12, 32, 0.9);
            border: 2px solid transparent;
            background-image: linear-gradient(rgba(15, 12, 32, 0.9), rgba(15, 12, 32, 0.9)), linear-gradient(135deg, #CCFF00, #00F0FF);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-cyan);
            font-size: 22px;
            opacity: 0.7;
            transition: var(--transition);
            cursor: pointer;
        }
        .fab-support:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
        }
        .fab-notify {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #FF007F;
            border: 2px solid #0F0C20;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.6; }
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .metrics-grid { grid-template-columns: repeat(2, 1fr); }
            .article-hero h1 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .nav-wrapper { flex-wrap: nowrap; }
            .nav-links, .nav-auth { display: none; }
            .mobile-toggle { display: block; }
            .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15, 12, 32, 0.98); padding: 20px 24px; border-bottom: 1px solid var(--border-neon); gap: 8px; }
            .nav-auth.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15, 12, 32, 0.98); padding: 0 24px 20px; gap: 10px; justify-content: flex-end; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .article-hero h1 { font-size: 1.6rem; }
            .article-meta { flex-direction: column; gap: 8px; }
            .comparison-table { font-size: 13px; }
            .metrics-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
            .cta-box { padding: 40px 20px; }
            .cta-box h2 { font-size: 1.5rem; }
        }
        @media (max-width: 520px) {
            .container { padding: 0 16px; }
            .metrics-grid { grid-template-columns: 1fr; }
            .article-hero { padding: 50px 0 40px; }
            .article-body { font-size: 15px; }
            .btn-primary, .btn-secondary { width: 100%; text-align: center; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0F0C20;
            --bg-secondary: #0B1A30;
            --bg-card: rgba(15, 12, 32, 0.85);
            --accent-green: #CCFF00;
            --accent-cyan: #00F0FF;
            --text-white: #FFFFFF;
            --text-muted: #A6ACAF;
            --border-neon: rgba(0, 240, 255, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.25);
            --shadow-glow-green: 0 0 18px rgba(204, 255, 0, 0.35);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --glass-bg: rgba(255, 255, 255, 0.06);
            --glass-border: rgba(255, 255, 255, 0.12);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
            --input-bg: rgba(11, 26, 48, 0.85);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: linear-gradient(175deg, var(--bg-primary) 0%, var(--bg-secondary) 55%, #0A1628 100%);
            color: var(--text-white);
            line-height: 1.65;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
            z-index: 1;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 55;
            background: rgba(15, 12, 32, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 240, 255, 0.18);
            transition: var(--transition);
        }

        .site-header.scrolled {
            background: rgba(15, 12, 32, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 16px;
            flex-wrap: wrap;
        }

        .nav-logo {
            font-size: 19px;
            font-weight: 800;
            letter-spacing: -0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-white);
        }

        .nav-logo .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: #0F0C20;
            font-weight: 900;
            flex-shrink: 0;
        }

        .nav-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .nav-logo .logo-text .logo-main {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
        }

        .nav-logo .logo-text .logo-sub {
            font-size: 10px;
            color: var(--accent-cyan);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .nav-links a {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text-white);
            background: rgba(0, 240, 255, 0.1);
        }

        .nav-links a.active {
            color: #fff;
            background: rgba(204, 255, 0, 0.15);
            box-shadow: inset 0 0 0 1px rgba(204, 255, 0, 0.3);
        }

        .nav-auth {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-login {
            padding: 9px 18px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            border-radius: 999px;
            background: transparent;
            border: 1.5px solid rgba(0, 240, 255, 0.45);
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-login:hover {
            background: rgba(0, 240, 255, 0.12);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 14px rgba(0, 240, 255, 0.3);
        }

        .btn-signup {
            padding: 9px 20px;
            font-size: 13px;
            font-weight: 800;
            color: #0F0C20;
            border-radius: 999px;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            transition: var(--transition);
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(204, 255, 0, 0.3);
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(204, 255, 0, 0.45);
            filter: brightness(1.05);
        }

        .btn-signup:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(204, 255, 0, 0.3);
        }

        .mobile-toggle {
            display: none;
            padding: 9px;
            border-radius: 10px;
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.3);
            color: #fff;
            font-size: 20px;
            line-height: 1;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            background: rgba(0, 240, 255, 0.2);
        }

        /* Hero */
        .category-hero {
            padding: 70px 0 50px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(ellipse at top right, rgba(0, 240, 255, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse at bottom left, rgba(204, 255, 0, 0.08) 0%, transparent 50%),
                linear-gradient(160deg, #0F0C20 0%, #0B1A30 100%);
        }

        .category-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.14;
            z-index: 0;
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 16px;
            border-radius: 999px;
            background: rgba(204, 255, 0, 0.15);
            border: 1px solid rgba(204, 255, 0, 0.35);
            color: var(--accent-green);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.3px;
            margin-bottom: 18px;
            text-transform: uppercase;
        }

        .hero-badge i {
            font-size: 11px;
        }

        .hero-title {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
            color: #fff;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 16.5px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 12px;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: var(--glass-shadow);
            max-width: 500px;
        }

        .hero-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 999px;
            border: 1.5px solid rgba(0, 240, 255, 0.3);
            background: var(--input-bg);
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: var(--transition);
        }

        .hero-form input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .hero-form input:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
        }

        .hero-form button {
            padding: 12px 24px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 14px;
            color: #0F0C20;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            transition: var(--transition);
            box-shadow: 0 2px 14px rgba(204, 255, 0, 0.35);
            white-space: nowrap;
        }

        .hero-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(204, 255, 0, 0.5);
        }

        .hero-form button:active {
            transform: translateY(0);
        }

        .hero-visual {
            position: relative;
            min-height: 360px;
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0, 240, 255, 0.25);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.15);
        }

        .hero-visual .float-badge {
            position: absolute;
            bottom: -16px;
            left: -16px;
            background: rgba(15, 12, 32, 0.92);
            border: 1px solid rgba(204, 255, 0, 0.4);
            border-radius: var(--radius-md);
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(12px);
        }

        .hero-visual .float-badge i {
            font-size: 22px;
            color: var(--accent-green);
        }

        .hero-visual .float-badge .fb-value {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }

        .hero-visual .float-badge .fb-label {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* Section common */
        .section {
            padding: 55px 0;
        }

        .section-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .section-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-cyan);
            margin-bottom: 8px;
        }

        .section-title {
            font-size: clamp(22px, 2.6vw, 32px);
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.4px;
            color: #fff;
            margin-bottom: 10px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 580px;
            line-height: 1.7;
        }

        /* Stats Dashboard */
        .stats-dashboard {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .stat-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 24px 22px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #CCFF00, #00F0FF);
            opacity: 0.6;
        }

        .stat-card:hover {
            border-color: rgba(0, 240, 255, 0.45);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.15);
        }

        .stat-card .stat-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 12px;
            background: rgba(204, 255, 0, 0.12);
            border: 1px solid rgba(204, 255, 0, 0.3);
            color: var(--accent-green);
        }

        .stat-card .stat-value {
            font-size: 30px;
            font-weight: 900;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 4px;
        }

        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Service Matrix */
        .game-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .game-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            position: relative;
            cursor: pointer;
        }

        .game-card:hover {
            border-color: rgba(0, 240, 255, 0.5);
            transform: scale(1.02);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 28px rgba(0, 240, 255, 0.2);
        }

        .game-card .gc-img {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .game-card .gc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .game-card:hover .gc-img img {
            transform: scale(1.08);
        }

        .game-card .gc-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(15, 12, 32, 0.92) 100%);
        }

        .game-card .gc-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 3;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 10.5px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: rgba(204, 255, 0, 0.2);
            border: 1px solid rgba(204, 255, 0, 0.45);
            color: var(--accent-green);
            backdrop-filter: blur(8px);
        }

        .game-card .gc-body {
            padding: 18px 20px 20px;
        }

        .game-card .gc-title {
            font-size: 17px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }

        .game-card .gc-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .game-card .gc-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .game-card .gc-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .game-card .gc-meta i {
            font-size: 11px;
            color: var(--accent-cyan);
        }

        .game-card .gc-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .game-card .gc-rating .stars {
            color: #FFD700;
            font-size: 12px;
        }

        .game-card .gc-rating .rating-value {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
        }

        /* Comparison */
        .comparison-wrapper {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--glass-shadow);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .comparison-table thead {
            background: rgba(0, 240, 255, 0.08);
        }

        .comparison-table th {
            padding: 16px 18px;
            text-align: left;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--accent-cyan);
            border-bottom: 1px solid rgba(0, 240, 255, 0.2);
            white-space: nowrap;
        }

        .comparison-table td {
            padding: 14px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            vertical-align: top;
        }

        .comparison-table tbody tr {
            transition: var(--transition);
        }

        .comparison-table tbody tr:hover {
            background: rgba(204, 255, 0, 0.05);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .game-name {
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .comparison-table .game-name i {
            color: var(--accent-green);
            font-size: 12px;
        }

        .comparison-table .badge-check {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            background: rgba(204, 255, 0, 0.15);
            border: 1px solid rgba(204, 255, 0, 0.35);
            color: var(--accent-green);
            white-space: nowrap;
        }

        .comparison-table .badge-neutral {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(166, 172, 175, 0.15);
            border: 1px solid rgba(166, 172, 175, 0.3);
            color: var(--text-muted);
            white-space: nowrap;
        }

        .comparison-note {
            padding: 16px 18px;
            font-size: 12.5px;
            color: var(--text-muted);
            background: rgba(0, 240, 255, 0.04);
            border-top: 1px solid rgba(0, 240, 255, 0.12);
            text-align: center;
        }

        .comparison-note i {
            color: var(--accent-cyan);
            margin-right: 4px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .faq-item:hover {
            border-color: rgba(0, 240, 255, 0.35);
        }

        .faq-item.active {
            border-color: rgba(204, 255, 0, 0.4);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            cursor: pointer;
            transition: var(--transition);
            text-align: left;
            width: 100%;
        }

        .faq-question:hover {
            color: var(--accent-green);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 1.5px solid rgba(0, 240, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--accent-cyan);
            transition: var(--transition);
        }

        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
            border-color: var(--accent-green);
            color: var(--accent-green);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 18px;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-box {
            background: linear-gradient(145deg, rgba(15, 12, 32, 0.95) 0%, rgba(11, 26, 48, 0.95) 100%);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: var(--radius-lg);
            padding: 46px 40px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.12);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(204, 255, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -10%;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 32px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .cta-desc {
            font-size: 14.5px;
            color: var(--text-muted);
            max-width: 500px;
            line-height: 1.7;
        }

        .cta-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 280px;
        }

        .cta-form input {
            padding: 14px 20px;
            border-radius: 999px;
            border: 1.5px solid rgba(0, 240, 255, 0.3);
            background: rgba(11, 26, 48, 0.85);
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: var(--transition);
        }

        .cta-form input:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
        }

        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .cta-form button {
            padding: 14px 28px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 14px;
            color: #0F0C20;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            transition: var(--transition);
            box-shadow: 0 2px 14px rgba(204, 255, 0, 0.35);
            white-space: nowrap;
        }

        .cta-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(204, 255, 0, 0.5);
        }

        .cta-form button:active {
            transform: translateY(0);
        }

        /* Footer */
        .site-footer {
            background: rgba(11, 26, 48, 0.75);
            border-top: 1px solid rgba(0, 240, 255, 0.18);
            padding: 50px 0 0;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 36px;
        }

        .footer-logo {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .footer-logo i {
            color: var(--accent-green);
            font-size: 20px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 380px;
        }

        .footer-links h4,
        .footer-extra h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .footer-links ul,
        .footer-extra ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a,
        .footer-extra a {
            font-size: 13px;
            color: var(--text-muted);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a:hover,
        .footer-extra a:hover {
            color: var(--accent-cyan);
            transform: translateX(3px);
        }

        .footer-links a i,
        .footer-extra a i {
            font-size: 10px;
            color: var(--accent-green);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-copy {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .footer-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .footer-badge {
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 1px solid rgba(0, 240, 255, 0.3);
            color: var(--accent-cyan);
            background: rgba(0, 240, 255, 0.08);
        }

        /* FAB */
        .fab-support {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(15, 12, 32, 0.72);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 2px solid transparent;
            background-clip: padding-box;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.5), 0 4px 20px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: var(--transition);
            min-height: 48px;
            border-image: linear-gradient(135deg, #CCFF00, #00F0FF) 1;
            border-radius: 999px;
            opacity: 0.6;
            white-space: nowrap;
        }

        .fab-support:hover {
            opacity: 1;
            transform: scale(1.05);
            box-shadow: 0 0 22px rgba(0, 240, 255, 0.7), 0 6px 26px rgba(0, 0, 0, 0.45);
        }

        .fab-support:active {
            transform: scale(0.95);
            opacity: 0.9;
        }

        .fab-support i {
            font-size: 17px;
            color: var(--accent-cyan);
            filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.7));
            animation: neonPulse 2s ease-in-out infinite;
        }

        .fab-support .fab-label {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.3px;
        }

        .fab-support .fab-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #FF0040;
            position: absolute;
            top: 4px;
            right: 4px;
            animation: blink 1.4s ease-in-out infinite;
        }

        @keyframes neonPulse {
            0%, 100% {
                filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.6));
            }
            50% {
                filter: drop-shadow(0 0 12px rgba(0, 240, 255, 1));
            }
        }

        @keyframes blink {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(0.8);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .stats-dashboard {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-matrix {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-wrapper {
                padding: 10px 0;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 10px 0;
                gap: 2px;
                order: 10;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 12px 16px;
                border-radius: 12px;
                text-align: left;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-auth {
                display: flex;
                gap: 8px;
            }
            .nav-auth .btn-login,
            .nav-auth .btn-signup {
                padding: 8px 14px;
                font-size: 12px;
            }
            .hero-title {
                font-size: 26px;
            }
            .hero-subtitle {
                font-size: 14.5px;
            }
            .hero-form {
                flex-direction: column;
            }
            .hero-form input,
            .hero-form button {
                width: 100%;
                text-align: center;
            }
            .stats-dashboard {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-card {
                padding: 16px;
            }
            .stat-card .stat-value {
                font-size: 24px;
            }
            .game-matrix {
                grid-template-columns: 1fr;
            }
            .comparison-wrapper {
                overflow-x: auto;
            }
            .comparison-table {
                min-width: 600px;
                font-size: 12.5px;
            }
            .comparison-table th,
            .comparison-table td {
                padding: 10px 12px;
            }
            .cta-box {
                padding: 28px 20px;
            }
            .cta-title {
                font-size: 21px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .section {
                padding: 40px 0;
            }
            .section-header {
                flex-direction: column;
                gap: 8px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .nav-logo .logo-text .logo-main {
                font-size: 13px;
            }
            .nav-logo .logo-text .logo-sub {
                font-size: 8.5px;
            }
            .nav-logo .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            .nav-auth .btn-login {
                padding: 7px 12px;
                font-size: 11px;
            }
            .nav-auth .btn-signup {
                padding: 7px 13px;
                font-size: 11px;
            }
            .hero-title {
                font-size: 21px;
            }
            .hero-subtitle {
                font-size: 13.5px;
            }
            .hero-visual .float-badge {
                left: 8px;
                bottom: 8px;
                padding: 8px 14px;
            }
            .hero-visual .float-badge .fb-value {
                font-size: 15px;
            }
            .stats-dashboard {
                grid-template-columns: 1fr;
            }
            .game-card .gc-img {
                height: 160px;
            }
            .cta-form input,
            .cta-form button {
                padding: 12px 18px;
                font-size: 13px;
            }
            .fab-support {
                left: 10px;
                bottom: 72px;
                padding: 8px 14px;
                min-height: 44px;
            }
            .fab-support .fab-label {
                font-size: 11px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0F0C20;
            --bg-secondary: #0B1A30;
            --bg-card: rgba(15, 12, 32, 0.85);
            --bg-glass: rgba(15, 12, 32, 0.65);
            --accent-green: #CCFF00;
            --accent-cyan: #00F0FF;
            --text-white: #FFFFFF;
            --text-muted: #A6ACAF;
            --border-neon: rgba(0, 240, 255, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 30px;
            --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.25);
            --shadow-glow-green: 0 0 18px rgba(204, 255, 0, 0.35);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --navbar-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background: linear-gradient(175deg, var(--bg-primary) 0%, var(--bg-secondary) 55%, #0A1628 100%);
            color: var(--text-white);
            line-height: 1.65;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
            z-index: 1;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }
        .site-header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 55;
            background: rgba(15, 12, 32, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 240, 255, 0.18);
            transition: var(--transition);
        }
        .site-header.scrolled {
            background: rgba(15, 12, 32, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 16px;
            flex-wrap: wrap;
        }
        .nav-logo {
            font-size: 19px;
            font-weight: 800;
            letter-spacing: -0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-white);
        }
        .nav-logo .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: #0F0C20;
            font-weight: 900;
            flex-shrink: 0;
        }
        .nav-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .nav-logo .logo-text .logo-main {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
        }
        .nav-logo .logo-text .logo-sub {
            font-size: 10px;
            color: var(--accent-cyan);
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-links a {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--text-white);
            background: rgba(0, 240, 255, 0.1);
        }
        .nav-links a.active {
            color: #fff;
            background: rgba(204, 255, 0, 0.15);
            box-shadow: inset 0 0 0 1px rgba(204, 255, 0, 0.3);
        }
        .nav-auth {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 9px 18px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            border-radius: 999px;
            background: transparent;
            border: 1.5px solid rgba(0, 240, 255, 0.45);
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-login:hover {
            background: rgba(0, 240, 255, 0.12);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 14px rgba(0, 240, 255, 0.3);
        }
        .btn-signup {
            padding: 9px 20px;
            font-size: 13px;
            font-weight: 800;
            color: #0F0C20;
            border-radius: 999px;
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            transition: var(--transition);
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(204, 255, 0, 0.3);
        }
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(204, 255, 0, 0.45);
            filter: brightness(1.05);
        }
        .btn-signup:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(204, 255, 0, 0.3);
        }
        .mobile-toggle {
            display: none;
            padding: 9px;
            border-radius: 10px;
            background: rgba(0, 240, 255, 0.1);
            color: #fff;
            font-size: 18px;
            border: 1px solid rgba(0, 240, 255, 0.3);
            transition: var(--transition);
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            cursor: pointer;
        }
        .mobile-toggle:hover {
            background: rgba(0, 240, 255, 0.2);
        }
        /* Glassmorphism card */
        .glass-card {
            background: var(--bg-glass);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(0, 240, 255, 0.2);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            overflow: hidden;
        }
        .glass-card:hover {
            border-color: rgba(0, 240, 255, 0.5);
            box-shadow: var(--shadow-neon), var(--shadow-card);
            transform: translateY(-3px);
        }
        .glass-card-glow-green {
            border-color: rgba(204, 255, 0, 0.3);
        }
        .glass-card-glow-green:hover {
            border-color: rgba(204, 255, 0, 0.6);
            box-shadow: var(--shadow-glow-green), var(--shadow-card);
        }
        .glow-btn {
            background: linear-gradient(135deg, #CCFF00 0%, #00F0FF 100%);
            color: #0F0C20;
            font-weight: 800;
            border-radius: 999px;
            padding: 14px 30px;
            font-size: 15px;
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }
        .glow-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(204, 255, 0, 0.45), 0 4px 20px rgba(0, 240, 255, 0.4);
            filter: brightness(1.08);
        }
        .glow-btn:active {
            transform: translateY(0);
        }
        .glow-btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(0, 240, 255, 0.6);
            box-shadow: none;
            font-weight: 700;
        }
        .glow-btn-outline:hover {
            background: rgba(0, 240, 255, 0.1);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
            transform: translateY(-3px);
        }
        /* Data badge */
        .data-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(0, 240, 255, 0.12);
            border: 1px solid rgba(0, 240, 255, 0.3);
            color: var(--accent-cyan);
            letter-spacing: 0.3px;
        }
        .data-badge-green {
            background: rgba(204, 255, 0, 0.12);
            border-color: rgba(204, 255, 0, 0.35);
            color: var(--accent-green);
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-cyan);
            margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            color: var(--text-white);
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 680px;
        }
        /* Stat bar */
        .stat-bar {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            border-radius: var(--radius-md);
            background: rgba(0, 240, 255, 0.05);
            border: 1px solid rgba(0, 240, 255, 0.15);
            transition: var(--transition);
        }
        .stat-bar:hover {
            background: rgba(0, 240, 255, 0.1);
            border-color: rgba(0, 240, 255, 0.3);
        }
        .stat-bar .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.2), rgba(0, 240, 255, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .stat-bar .stat-number {
            font-size: 28px;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
        }
        .stat-bar .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }
        /* Comparison table */
        .compare-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(0, 240, 255, 0.25);
        }
        .compare-table thead th {
            background: rgba(0, 240, 255, 0.1);
            padding: 16px 18px;
            text-align: left;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--accent-cyan);
            border-bottom: 1px solid rgba(0, 240, 255, 0.25);
        }
        .compare-table tbody td {
            padding: 16px 18px;
            font-size: 14px;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(0, 240, 255, 0.1);
            transition: var(--transition);
        }
        .compare-table tbody tr:hover td {
            background: rgba(0, 240, 255, 0.05);
            color: #fff;
        }
        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(0, 240, 255, 0.15);
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            padding: 4px 0;
            transition: var(--transition);
        }
        .faq-question h3 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            line-height: 1.4;
            margin: 0;
        }
        .faq-question .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--accent-cyan);
            flex-shrink: 0;
            transition: var(--transition);
        }
        .faq-question.active .faq-toggle {
            background: var(--accent-cyan);
            color: #0F0C20;
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            padding: 0;
        }
        .faq-answer.open {
            max-height: 300px;
            padding-top: 12px;
        }
        /* FAB */
        .fab-left {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: rgba(15, 12, 32, 0.75);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 2px solid transparent;
            background-image: linear-gradient(rgba(15, 12, 32, 0.75), rgba(15, 12, 32, 0.75)), linear-gradient(135deg, #CCFF00, #00F0FF);
            background-origin: padding-box, border-box;
            background-clip: padding-box, border-box;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0.7;
            animation: fabBreathe 3.5s ease-in-out infinite;
        }
        .fab-left:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 0 32px rgba(0, 240, 255, 0.65);
        }
        .fab-left:active {
            transform: scale(0.95);
        }
        @keyframes fabBreathe {
            0%, 100% { box-shadow: 0 0 18px rgba(0, 240, 255, 0.35); }
            50% { box-shadow: 0 0 32px rgba(0, 240, 255, 0.6); }
        }
        .fab-left .fab-notif {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #FF007F;
            border: 2px solid #0F0C20;
            animation: fabBlink 1.6s ease-in-out infinite;
        }
        @keyframes fabBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        /* Footer */
        .site-footer {
            background: rgba(10, 8, 24, 0.95);
            border-top: 1px solid rgba(0, 240, 255, 0.18);
            padding: 48px 0 24px;
            position: relative;
            z-index: 2;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand .footer-logo {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo i {
            color: var(--accent-cyan);
        }
        .footer-brand p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 380px;
        }
        .footer-links h4, .footer-extra h4 {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-links ul, .footer-extra ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links ul li, .footer-extra ul li {
            margin-bottom: 8px;
        }
        .footer-links ul li a, .footer-extra ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-links ul li a:hover, .footer-extra ul li a:hover {
            color: var(--accent-cyan);
            transform: translateX(3px);
        }
        .footer-links ul li a i, .footer-extra ul li a i {
            font-size: 10px;
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(0, 240, 255, 0.12);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copy {
            font-size: 12px;
            color: var(--text-muted);
        }
        .footer-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-badge {
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.25);
            color: var(--accent-cyan);
            white-space: nowrap;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
                gap: 28px;
            }
            .section-title {
                font-size: 32px;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            .nav-wrapper {
                flex-wrap: nowrap;
            }
            .mobile-toggle {
                display: flex;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 12, 32, 0.98);
                flex-direction: column;
                padding: 16px 20px;
                gap: 4px;
                border-bottom: 1px solid rgba(0, 240, 255, 0.2);
                box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
                z-index: 50;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                text-align: left;
                border-radius: var(--radius-sm);
            }
            .nav-auth {
                display: flex;
            }
            .nav-auth .btn-login, .nav-auth .btn-signup {
                padding: 8px 14px;
                font-size: 12px;
                white-space: nowrap;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .stat-bar .stat-number {
                font-size: 22px;
            }
            .section-title {
                font-size: 26px;
            }
            .compare-table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .compare-table thead th {
                padding: 12px 14px;
                font-size: 11px;
                white-space: nowrap;
            }
            .compare-table tbody td {
                padding: 12px 14px;
                font-size: 12px;
                white-space: nowrap;
            }
            .fab-left {
                width: 48px;
                height: 48px;
                font-size: 19px;
                left: 12px;
                bottom: 80px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 12px;
            }
            .nav-logo .logo-text .logo-main {
                font-size: 13px;
            }
            .nav-logo .logo-text .logo-sub {
                font-size: 9px;
            }
            .nav-logo .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            .nav-auth .btn-login, .nav-auth .btn-signup {
                padding: 7px 10px;
                font-size: 11px;
            }
            .section-title {
                font-size: 22px;
            }
            .section-tag {
                font-size: 11px;
                letter-spacing: 1px;
            }
            .section-desc {
                font-size: 14px;
            }
            .glow-btn {
                padding: 12px 22px;
                font-size: 13px;
            }
            .stat-bar {
                padding: 12px 14px;
                gap: 10px;
            }
            .stat-bar .stat-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            .stat-bar .stat-number {
                font-size: 20px;
            }
            .footer-copy {
                font-size: 11px;
                text-align: center;
            }
        }
