/* roulang page: index */
:root {
            --midnight-purple: #120224;
            --deep-purple: #1D0836;
            --dark-violet: #2A0E4E;
            --vibrant-purple: #3D1275;
            --mid-purple: #5A189A;
            --bright-purple: #7B2CBF;
            --neon-magenta: #FF007F;
            --electric-cyan: #00F0FF;
            --jackpot-gold: #FFD700;
            --orange-gold: #FF9E00;
            --neon-teal: #00F5D4;
            --neon-red: #FF3366;
            --bright-violet: #9D4EDD;
            --white: #FFFFFF;
            --light-lavender: #E0AAFF;
            --text-purple: #9D4EDD;
            --container-max: 1280px;
            --border-radius: 16px;
            --border-radius-sm: 8px;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 48px;
            --spacing-xl: 64px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(180deg, var(--midnight-purple) 0%, var(--deep-purple) 50%, var(--dark-violet) 100%);
            color: var(--white);
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 127, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px);
            pointer-events: none;
            z-index: 0;
        }

        .site-wrapper {
            position: relative;
            z-index: 1;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, textarea {
            font-family: inherit;
            border: none;
            outline: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(29, 8, 54, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 0, 127, 0.2);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--spacing-sm) var(--spacing-md);
            gap: var(--spacing-md);
        }

        .site-logo {
            font-size: 20px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--neon-magenta), var(--electric-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            letter-spacing: -0.5px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            flex: 1;
            justify-content: center;
        }

        .main-nav a {
            padding: 10px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
        }

        .main-nav a:hover {
            color: var(--neon-magenta);
            background: rgba(255, 0, 127, 0.1);
        }

        .main-nav a.active {
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-red));
            color: var(--white);
            box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .btn-login {
            background: transparent;
            color: var(--light-lavender);
            border: 2px solid rgba(224, 170, 255, 0.3);
        }

        .btn-login:hover {
            border-color: var(--electric-cyan);
            color: var(--electric-cyan);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-red));
            color: var(--white);
            box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 0, 127, 0.6);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--electric-cyan), var(--neon-teal));
            color: var(--midnight-purple);
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 240, 255, 0.5);
        }

        .mobile-menu-toggle {
            display: none;
            background: transparent;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

        /* Floating Action Button */
        .fab-support {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            background: rgba(29, 8, 54, 0.6);
            border: 2px solid var(--neon-magenta);
            border-radius: 50px;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            opacity: 0.8;
        }

        .fab-support:hover {
            opacity: 1;
            background: rgba(29, 8, 54, 0.9);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
            transform: translateY(-50%) scale(1.05);
        }

        .fab-support i {
            font-size: 24px;
            color: var(--neon-magenta);
        }

        .fab-support span {
            font-weight: 600;
            font-size: 14px;
        }

        /* Hero Section */
        .hero-section {
            padding: var(--spacing-xl) 0 var(--spacing-lg);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: var(--spacing-lg);
            align-items: center;
        }

        .hero-text {
            max-width: 680px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(0, 240, 255, 0.2));
            border: 1px solid var(--neon-magenta);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: var(--spacing-md);
            box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
        }

        .hero-badge i {
            color: var(--jackpot-gold);
            font-size: 16px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: var(--spacing-md);
            background: linear-gradient(135deg, var(--white), var(--light-lavender));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            color: var(--light-lavender);
            margin-bottom: var(--spacing-lg);
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-lg);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }

        .stat-item {
            text-align: left;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--jackpot-gold);
            display: block;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--light-lavender);
            font-weight: 500;
        }

        .hero-form {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.4), rgba(29, 8, 54, 0.6));
            border: 2px solid rgba(255, 0, 127, 0.3);
            border-radius: var(--border-radius);
            padding: var(--spacing-lg);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .form-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            text-align: center;
        }

        .form-subtitle {
            font-size: 14px;
            color: var(--light-lavender);
            text-align: center;
            margin-bottom: var(--spacing-md);
        }

        .form-group {
            margin-bottom: var(--spacing-sm);
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--light-lavender);
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            background: rgba(29, 8, 54, 0.6);
            border: 2px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius-sm);
            color: var(--white);
            font-size: 15px;
            transition: var(--transition);
        }

        .form-input:focus {
            border-color: var(--neon-magenta);
            box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
        }

        .form-input::placeholder {
            color: var(--text-purple);
        }

        .form-benefits {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: var(--spacing-md) 0;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--light-lavender);
        }

        .benefit-item i {
            color: var(--neon-teal);
            font-size: 16px;
        }

        .btn-full {
            width: 100%;
        }

        /* Promotion Trio Section */
        .promo-trio-section {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(180deg, transparent, rgba(61, 18, 117, 0.2));
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: var(--spacing-sm);
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--light-lavender);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .promo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }

        .promo-card {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.5), rgba(29, 8, 54, 0.8));
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            padding: var(--spacing-lg);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }

        .promo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.1), rgba(0, 240, 255, 0.1));
            opacity: 0;
            transition: var(--transition);
        }

        .promo-card:hover {
            border-color: var(--neon-magenta);
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(255, 0, 127, 0.4);
        }

        .promo-card:hover::before {
            opacity: 1;
        }

        .promo-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-red));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: var(--spacing-md);
            position: relative;
            z-index: 1;
        }

        .promo-card:nth-child(2) .promo-icon {
            background: linear-gradient(135deg, var(--electric-cyan), var(--neon-teal));
        }

        .promo-card:nth-child(3) .promo-icon {
            background: linear-gradient(135deg, var(--jackpot-gold), var(--orange-gold));
        }

        .promo-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            position: relative;
            z-index: 1;
        }

        .promo-desc {
            font-size: 15px;
            color: var(--light-lavender);
            line-height: 1.6;
            margin-bottom: var(--spacing-md);
            position: relative;
            z-index: 1;
        }

        .promo-amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--jackpot-gold);
            margin-bottom: var(--spacing-sm);
            position: relative;
            z-index: 1;
        }

        .promo-action {
            position: relative;
            z-index: 1;
        }

        /* Package Comparison */
        .package-section {
            padding: var(--spacing-xl) 0;
        }

        .package-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .package-card {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.3), rgba(29, 8, 54, 0.6));
            border: 2px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius);
            padding: var(--spacing-lg);
            position: relative;
            transition: var(--transition);
        }

        .package-card.featured {
            border-color: var(--neon-magenta);
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.15), rgba(29, 8, 54, 0.8));
            transform: scale(1.05);
            box-shadow: 0 12px 48px rgba(255, 0, 127, 0.4);
        }

        .package-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-red));
            color: var(--white);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 4px 16px rgba(255, 0, 127, 0.5);
        }

        .package-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
        }

        .package-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--jackpot-gold);
            margin-bottom: 8px;
        }

        .package-period {
            font-size: 14px;
            color: var(--light-lavender);
            margin-bottom: var(--spacing-md);
        }

        .package-features {
            list-style: none;
            margin: var(--spacing-md) 0;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(157, 78, 221, 0.2);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: var(--light-lavender);
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features i {
            color: var(--neon-teal);
            margin-top: 4px;
        }

        /* Timeline Section */
        .timeline-section {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(180deg, rgba(61, 18, 117, 0.2), transparent);
        }

        .timeline-container {
            position: relative;
            max-width: 900px;
            margin: var(--spacing-lg) auto 0;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-lg);
            position: relative;
        }

        .timeline-time {
            text-align: right;
            padding-top: 8px;
        }

        .time-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--neon-magenta);
            display: block;
        }

        .time-label {
            font-size: 13px;
            color: var(--light-lavender);
        }

        .timeline-content {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.4), rgba(29, 8, 54, 0.6));
            border: 2px solid rgba(255, 0, 127, 0.3);
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            left: -14px;
            top: 20px;
            width: 12px;
            height: 12px;
            background: var(--neon-magenta);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--neon-magenta);
        }

        .timeline-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .timeline-desc {
            font-size: 15px;
            color: var(--light-lavender);
            line-height: 1.6;
        }

        /* Rewards Preview */
        .rewards-section {
            padding: var(--spacing-xl) 0;
        }

        .rewards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .reward-card {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.5), rgba(29, 8, 54, 0.8));
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .reward-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: rotate(45deg);
            transition: var(--transition);
        }

        .reward-card:hover {
            border-color: var(--jackpot-gold);
            transform: translateY(-8px);
        }

        .reward-card:hover::before {
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .reward-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: var(--border-radius-sm);
            margin-bottom: var(--spacing-sm);
        }

        .reward-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .reward-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--jackpot-gold);
            margin-bottom: var(--spacing-sm);
        }

        .reward-btn {
            font-size: 14px;
            padding: 10px 20px;
        }

        /* Hot Topics */
        .topics-section {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(180deg, transparent, rgba(61, 18, 117, 0.2));
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--spacing-sm);
            margin-top: var(--spacing-lg);
        }

        .topic-tag {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.5), rgba(29, 8, 54, 0.7));
            border: 2px solid rgba(157, 78, 221, 0.3);
            border-radius: 50px;
            padding: 16px 24px;
            text-align: center;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            cursor: pointer;
        }

        .topic-tag:hover {
            border-color: var(--electric-cyan);
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(29, 8, 54, 0.8));
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 240, 255, 0.3);
        }

        /* Games Showcase */
        .games-section {
            padding: var(--spacing-xl) 0;
        }

        .games-filter {
            display: flex;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-lg);
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {background: rgba(61, 18, 117, 0.3);
            border: 2px solid rgba(157, 78, 221, 0.3);
            border-radius: 50px;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-red));
            border-color: var(--neon-magenta);
            box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: var(--spacing-md);
        }

        .game-card {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.4), rgba(29, 8, 54, 0.7));
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            transition: var(--transition);
            cursor: pointer;
        }

        .game-card:hover {
            border-color: var(--neon-magenta);
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(255, 0, 127, 0.5);
        }

        .game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            position: relative;
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent, rgba(18, 2, 36, 0.9));
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .play-btn {
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-red));
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            transform: scale(0.8);
            transition: var(--transition);
        }

        .game-card:hover .play-btn {
            transform: scale(1);
        }

        .game-tags {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .game-tag {
            background: var(--neon-red);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 2px 12px rgba(255, 51, 102, 0.5);
        }

        .game-tag.hot {
            background: var(--neon-magenta);
            animation: pulse 2s infinite;
        }

        .game-tag.new {
            background: var(--electric-cyan);
            color: var(--midnight-purple);
        }

        .game-tag.jackpot {
            background: var(--jackpot-gold);
            color: var(--midnight-purple);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 2px 12px rgba(255, 0, 127, 0.5); }
            50% { box-shadow: 0 2px 24px rgba(255, 0, 127, 0.8); }
        }

        .game-info {
            padding: var(--spacing-sm);
        }

        .game-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .game-provider {
            font-size: 13px;
            color: var(--text-purple);
            margin-bottom: 12px;
        }

        .game-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .game-rtp {
            font-size: 13px;
            color: var(--neon-teal);
            font-weight: 600;
        }

        .game-players {
            font-size: 13px;
            color: var(--light-lavender);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Trust Section */
        .trust-section {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(180deg, rgba(61, 18, 117, 0.2), transparent);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .trust-card {
            text-align: center;
            padding: var(--spacing-md);
        }

        .trust-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--spacing-sm);
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(0, 240, 255, 0.2));
            border: 2px solid var(--neon-magenta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            transition: var(--transition);
        }

        .trust-card:hover .trust-icon {
            transform: rotateY(360deg);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
        }

        .trust-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .trust-desc {
            font-size: 14px;
            color: var(--light-lavender);
            line-height: 1.5;
        }

        /* News Section */
        .news-section {
            padding: var(--spacing-xl) 0;
        }

        .news-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }

        .news-main {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .news-item {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.3), rgba(29, 8, 54, 0.6));
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            display: flex;
            gap: var(--spacing-md);
            transition: var(--transition);
            cursor: pointer;
        }

        .news-item:hover {
            border-color: var(--electric-cyan);
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(29, 8, 54, 0.8));
        }

        .news-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-purple);
            width: 50px;
            flex-shrink: 0;
        }

        .news-content {
            flex: 1;
        }

        .news-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .news-excerpt {
            font-size: 14px;
            color: var(--light-lavender);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .news-meta {
            display: flex;
            gap: var(--spacing-sm);
            font-size: 12px;
            color: var(--text-purple);
        }

        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .sidebar-card {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.4), rgba(29, 8, 54, 0.7));
            border: 2px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            padding-bottom: var(--spacing-sm);
            border-bottom: 2px solid rgba(255, 0, 127, 0.3);
        }

        .sidebar-list {
            list-style: none;
        }

        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(157, 78, 221, 0.2);
            font-size: 14px;
            transition: var(--transition);
            cursor: pointer;
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

        .sidebar-list li:hover {
            color: var(--neon-magenta);
            padding-left: 8px;
        }

        /* FAQ Section */
        .faq-section {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(180deg, transparent, rgba(61, 18, 117, 0.2));
        }

        .faq-container {
            max-width: 900px;
            margin: var(--spacing-lg) auto 0;
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(61, 18, 117, 0.3), rgba(29, 8, 54, 0.6));
            border: 2px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius);
            margin-bottom: var(--spacing-sm);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--neon-magenta);
        }

        .faq-question {
            padding: var(--spacing-md);
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: var(--spacing-sm);
        }

        .faq-question i {
            color: var(--neon-magenta);
            transition: var(--transition);
            font-size: 20px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 var(--spacing-md) var(--spacing-md);
            font-size: 15px;
            color: var(--light-lavender);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: var(--spacing-xl) 0;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(0, 240, 255, 0.2));
            border: 2px solid var(--neon-magenta);
            border-radius: var(--border-radius);
            padding: var(--spacing-xl);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: var(--spacing-sm);
            position: relative;
            z-index: 1;
        }

        .cta-subtitle {
            font-size: 20px;
            color: var(--light-lavender);
            margin-bottom: var(--spacing-lg);
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: var(--spacing-sm);
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .cta-bonus {
            margin-top: var(--spacing-md);
            font-size: 16px;
            font-weight: 600;
            color: var(--jackpot-gold);
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            background: linear-gradient(180deg, rgba(29, 8, 54, 0.8), var(--midnight-purple));
            border-top: 2px solid rgba(255, 0, 127, 0.2);
            padding: var(--spacing-xl) 0 var(--spacing-md);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--neon-magenta), var(--electric-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: var(--spacing-sm);
        }

        .footer-desc {
            font-size: 14px;
            color: var(--light-lavender);
            line-height: 1.6;
            margin-bottom: var(--spacing-md);
        }

        .footer-licenses {
            display: flex;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-sm);
        }

        .license-badge {
            background: rgba(61, 18, 117, 0.5);
            border: 1px solid var(--text-purple);
            padding: 8px 16px;
            border-radius: var(--border-radius-sm);
            font-size: 12px;
            font-weight: 600;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--light-lavender);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--neon-magenta);
            padding-left: 4px;
        }

        .footer-payment {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: var(--spacing-sm);
        }

        .payment-icon {
            background: rgba(61, 18, 117, 0.5);
            border: 1px solid var(--text-purple);
            padding: 8px 14px;
            border-radius: var(--border-radius-sm);
            font-size: 12px;
            font-weight: 600;
        }

        .footer-bottom {
            padding-top: var(--spacing-md);
            border-top: 1px solid rgba(157, 78, 221, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-purple);
        }

        .footer-age-warning {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--neon-red);
            font-weight: 600;
        }

        .age-badge {
            background: var(--neon-red);
            color: var(--white);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-form {
                max-width: 500px;
                margin: 0 auto;
            }

            .package-grid {
                grid-template-columns: 1fr;
            }

            .package-card.featured {
                transform: scale(1);
            }

            .games-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }

            .news-layout {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 38px;
            }

            .hero-description {
                font-size: 16px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .promo-grid {
                grid-template-columns: 1fr;
            }

            .rewards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 32px;
            }

            .cta-title {
                font-size: 36px;
            }

            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-container {
                padding: var(--spacing-sm);
            }

            .site-logo {
                font-size: 16px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .fab-support span {
                display: none;
            }

            .fab-support {
                padding: 14px;
                border-radius: 50%;
            }

            .timeline-item {
                grid-template-columns: 80px 1fr;
            }
        }

        @media (max-width: 520px) {
            .hero-cta {
                flex-direction: column;
            }

            .btn-full {
                width: 100%;
            }

            .rewards-grid {
                grid-template-columns: 1fr;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .topics-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category1 */
:root {
            --primary-purple: #120224;
            --deep-purple: #1D0836;
            --mid-purple: #2A0E4E;
            --bright-purple: #5A189A;
            --neon-magenta: #FF007F;
            --neon-cyan: #00F0FF;
            --jackpot-gold: #FFD700;
            --accent-gold: #FF9E00;
            --success-teal: #00F5D4;
            --error-red: #FF3366;
            --violet-accent: #9D4EDD;
            --text-primary: #FFFFFF;
            --text-secondary: #E0AAFF;
            --text-tertiary: #9D4EDD;
            --border-radius: 12px;
            --border-radius-sm: 8px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 50%, var(--mid-purple) 100%);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button {
            border: none;
            cursor: pointer;
            font-family: inherit;
            transition: var(--transition);
        }
        
        .site-header {
            background: rgba(18, 2, 36, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 127, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 0, 127, 0.15);
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 20px;
        }
        
        .site-logo {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            letter-spacing: -0.5px;
        }
        
        .main-nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        
        .main-nav a {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 8px 0;
        }
        
        .main-nav a:hover {
            color: var(--neon-cyan);
        }
        
        .main-nav a.active {
            color: var(--text-primary);
        }
        
        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));
            border-radius: 2px;
        }
        
        .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .btn {
            padding: 10px 24px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--text-secondary);
        }
        
        .btn-login:hover {
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--neon-magenta), #C7006E);
            color: var(--text-primary);
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 0, 127, 0.6);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 24px;
            padding: 8px;
        }
        
        .fab-button {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            background: rgba(29, 8, 54, 0.6);
            border: 2px solid var(--neon-magenta);
            border-radius: 50px;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 20px rgba(255, 0, 127, 0.3);
            transition: var(--transition);
            opacity: 0.6;
        }
        
        .fab-button:hover {
            opacity: 1;
            box-shadow: 0 6px 30px rgba(255, 0, 127, 0.5);
            transform: translateY(-50%) scale(1.05);
        }
        
        .fab-button i {
            font-size: 20px;
            color: var(--neon-magenta);
        }
        
        .hero-banner {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(18, 2, 36, 0.7), rgba(29, 8, 54, 0.8)), url('/assets/images/backpic/back-1.jpg') center/cover;
            margin-bottom: 60px;
            overflow: hidden;
        }
        
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 0, 127, 0.15), transparent 60%);
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 80px 0;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid var(--jackpot-gold);
            padding: 8px 20px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            color: var(--jackpot-gold);
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        
        .hero-badge i {
            font-size: 16px;
        }
        
        h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--text-primary);
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        
        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-large {
            padding: 16px 40px;
            font-size: 16px;
            border-radius: 30px;
            font-weight: 700;
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--neon-cyan);
            color: var(--neon-cyan);
        }
        
        .btn-secondary:hover {
            background: rgba(0, 240, 255, 0.15);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
        }
        
        .game-filters {
            background: rgba(29, 8, 54, 0.6);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius);
            padding: 24px;
            margin-bottom: 48px;
        }
        
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .filter-header h2 {
            font-size: 24px;
            color: var(--text-primary);
        }
        
        .filter-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .filter-tab {
            background: rgba(90, 24, 154, 0.2);
            border: 1px solid rgba(157, 78, 221, 0.4);
            padding: 10px 24px;
            border-radius: 24px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .filter-tab:hover,
        .filter-tab.active {
            background: rgba(255, 0, 127, 0.2);
            border-color: var(--neon-magenta);
            color: var(--text-primary);
            box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
        }
        
        .filter-controls {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(18, 2, 36, 0.8);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: 24px;
            padding: 8px 20px;
            gap: 10px;
            flex: 1;
            min-width: 200px;
        }
        
        .search-box input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 14px;
            width: 100%;
            outline: none;
        }
        
        .search-box input::placeholder {
            color: var(--text-tertiary);
        }
        
        .search-box i {
            color: var(--text-tertiary);
        }
        
        .sort-select {
            background: rgba(18, 2, 36, 0.8);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: 24px;
            padding: 10px 20px;
            color: var(--text-primary);
            font-size: 14px;
            cursor: pointer;
            outline: none;
        }
        
        .section-title {
            text-align: left;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        
        .section-title p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 700px;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }
        
        .game-card {
            background: rgba(29, 8, 54, 0.6);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }
        
        .game-card:hover {
            transform: translateY(-8px);
            border-color: var(--neon-magenta);
            box-shadow: 0 12px 40px rgba(255, 0, 127, 0.4);
        }
        
        .game-card-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        
        .game-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .game-card:hover .game-card-image img {
            transform: scale(1.1);
        }
        
        .game-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }
        
        .badge-hot {
            background: linear-gradient(135deg, #FF3366, #FF0055);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 51, 102, 0.5);
        }
        
        .badge-new {
            background: linear-gradient(135deg, var(--neon-cyan), #00C5D4);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 240, 255, 0.5);
        }
        
        .badge-jackpot {
            background: linear-gradient(135deg, var(--jackpot-gold), var(--accent-gold));
            color: var(--primary-purple);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(18, 2, 36, 0.95), transparent);
            display: flex;
            align-items: flex-end;
            padding: 16px;
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-provider {
            display: inline-block;
            background: rgba(157, 78, 221, 0.3);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        
        .game-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .game-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        
        .stat-value {
            font-weight: 700;
            color: var(--success-teal);
        }
        
        .game-actions {
            display: flex;
            gap: 8px;
        }
        
        .btn-play {
            flex: 1;
            background: linear-gradient(135deg, var(--neon-magenta), #C7006E);
            color: white;
            padding: 12px;
            border-radius: var(--border-radius-sm);
            font-weight: 700;
            font-size: 14px;
        }
        
        .btn-play:hover {
            box-shadow: 0 6px 25px rgba(255, 0, 127, 0.6);
            transform: translateY(-2px);
        }
        
        .btn-demo {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--text-secondary);
            color: var(--text-secondary);
            padding: 12px 20px;
            border-radius: var(--border-radius-sm);
            font-size: 14px;
            font-weight: 600;
        }
        
        .btn-demo:hover {
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
        }
        
        .promo-section {
            background: linear-gradient(135deg, rgba(90, 24, 154, 0.3), rgba(29, 8, 54, 0.6));
            border: 1px solid rgba(255, 0, 127, 0.3);
            border-radius: var(--border-radius);
            padding: 48px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .promo-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.15), transparent 70%);
            pointer-events: none;
        }
        
        .promo-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .promo-text h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .promo-text p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.7;
        }
        
        .promo-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        
        .feature-box {
            background: rgba(18, 2, 36, 0.6);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: var(--border-radius-sm);
            padding: 24px;
            transition: var(--transition);
        }
        
        .feature-box:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 8px 30px rgba(0, 240, 255, 0.2);
        }
        
        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-cyan));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 24px;
        }
        
        .feature-box h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .feature-box p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        
        .providers-section {
            margin: 60px 0;
        }
        
        .providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
        }
        
        .provider-card {
            background: rgba(29, 8, 54, 0.4);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius);
            padding: 28px;
            text-align: center;
            transition: var(--transition);
        }
        
        .provider-card:hover {
            border-color: var(--neon-magenta);
            background: rgba(29, 8, 54, 0.7);
            transform: translateY(-4px);
        }
        
        .provider-logo {
            font-size: 36px;
            margin-bottom: 12px;
        }
        
        .provider-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .provider-count {
            font-size: 13px;
            color: var(--text-tertiary);
        }
        
        .faq-section {
            margin: 60px 0;
        }
        
        .faq-list {
            max-width: 900px;
        }
        
        .faq-item {
            background: rgba(29, 8, 54, 0.4);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--border-radius);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item:hover {
            border-color: var(--neon-magenta);
        }
        
        .faq-question {
            padding: 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
        }
        
        .faq-question i {
            color: var(--neon-magenta);
            font-size: 20px;
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 24px 24px;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 15px;
        }
        
        .cta-final {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(0, 240, 255, 0.2));
            border: 2px solid var(--neon-magenta);
            border-radius: var(--border-radius);
            padding: 60px 40px;
            text-align: center;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-final::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.15), transparent 60%);
            pointer-events: none;
        }
        
        .cta-final-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-final h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .cta-final p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        
        .footer {
            background: rgba(18, 2, 36, 0.95);
            border-top: 1px solid rgba(255, 0, 127, 0.2);
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h4.footer-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
        }
        
        .footer-desc {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(157, 78, 221, 0.2);
            border: 1px solid rgba(157, 78, 221, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: rgba(255, 0, 127, 0.3);
            border-color: var(--neon-magenta);
            color: var(--text-primary);
            box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            font-size: 14px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--neon-cyan);
            padding-left: 5px;
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-contact i {
            color: var(--neon-magenta);
            width: 20px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(157, 78, 221, 0.2);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            color: var(--text-tertiary);
            font-size: 13px;
        }
        
        .footer-badges {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        
        .badge-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 13px;
        }
        
        .badge-item i {
            color: var(--jackpot-gold);
            font-size: 16px;
        }
        
        @media (max-width: 1024px) {
            .main-nav {
                gap: 20px;
            }
            
            h1 {
                font-size: 42px;
            }
            
            .promo-content {
                grid-template-columns: 1fr;
            }
            
            .games-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .site-logo {
                font-size: 16px;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            h1 {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .hero-banner {
                min-height: 400px;
            }
            
            .fab-button {
                left: 10px;
                padding: 12px 16px;
                font-size: 12px;
            }
            
            .fab-button span {
                display: none;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .filter-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .promo-section {
                padding: 32px 20px;
            }
            
            .promo-text h2 {
                font-size: 28px;
            }
            
            .promo-features {
                grid-template-columns: 1fr;
            }
            
            .providers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-final {
                padding: 40px 20px;
            }
            
            .cta-final h2 {
                font-size: 28px;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

/* roulang page: category2 */
:root {
            --primary-purple: #1D0836;
            --deep-purple: #120224;
            --mid-purple: #2A0E4E;
            --bright-purple: #5A189A;
            --neon-magenta: #FF007F;
            --neon-cyan: #00F0FF;
            --gold: #FFD700;
            --gold-dark: #FF9E00;
            --success: #00F5D4;
            --error: #FF3366;
            --violet: #9D4EDD;
            --text-primary: #FFFFFF;
            --text-secondary: #E0AAFF;
            --text-tertiary: #9D4EDD;
            --bg-dark: #0A0114;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-sm: 0 2px 8px rgba(255, 0, 127, 0.15);
            --shadow-md: 0 4px 16px rgba(255, 0, 127, 0.25);
            --shadow-glow: 0 0 20px rgba(255, 0, 127, 0.4);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--deep-purple) 50%, var(--primary-purple) 100%);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 127, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.06) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header & Navigation */
        .site-header {
            background: rgba(18, 2, 36, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 127, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 32px;
        }

        .site-logo {
            font-size: 20px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            letter-spacing: -0.5px;
        }

        .main-nav {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .main-nav a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            padding: 8px 0;
            transition: var(--transition);
        }

        .main-nav a:hover {
            color: var(--text-primary);
        }

        .main-nav a.active {
            color: var(--neon-magenta);
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));
            box-shadow: 0 0 8px var(--neon-magenta);
        }

        .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-login:hover {
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--neon-magenta), #C6007F);
            color: var(--text-primary);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }

        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
        }

        /* Floating Action Button */
        .fab-support {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            background: rgba(29, 8, 54, 0.6);
            backdrop-filter: blur(8px);
            border: 2px solid var(--neon-magenta);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(255, 0, 127, 0.3);
        }

        .fab-support:hover {
            background: rgba(29, 8, 54, 0.95);
            box-shadow: 0 0 24px rgba(255, 0, 127, 0.6);
            transform: translateY(-50%) scale(1.1);
        }

        .fab-support i {
            font-size: 24px;
            color: var(--neon-magenta);
        }

        /* Hero Section */
        .hero-promo {
            position: relative;
            padding: 80px 0 60px;
            overflow: hidden;
        }

        .hero-promo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/images/backpic/back-2.jpg') center/cover;
            opacity: 0.15;
            z-index: -1;
        }

        .hero-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text-side h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-primary), var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .promo-highlights {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
        }

        .highlight-item {
            background: rgba(90, 24, 154, 0.2);
            border: 1px solid rgba(255, 0, 127, 0.3);
            border-radius: var(--radius-md);
            padding: 20px;
            flex: 1;
            text-align: center;
        }

        .highlight-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--gold);
            display: block;
            margin-bottom: 8px;
        }

        .highlight-label {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 16px 40px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--neon-cyan);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: rgba(0, 240, 255, 0.15);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
        }

        .hero-visual-side {
            position: relative;
        }

        .promo-main-card {
            background: linear-gradient(135deg, rgba(90, 24, 154, 0.4), rgba(29, 8, 54, 0.6));
            border: 2px solid var(--neon-magenta);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(255, 0, 127, 0.3);
            position: relative;
            overflow: hidden;
        }

        .promo-main-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .promo-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--deep-purple);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .promo-percentage {
            font-size: 72px;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            margin: 20px 0;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
        }

        .promo-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .promo-desc {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Cashback Tiers Section */
        .cashback-tiers {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .tier-card {
            background: linear-gradient(135deg, rgba(90, 24, 154, 0.3), rgba(29, 8, 54, 0.5));
            border: 2px solid rgba(157, 78, 221, 0.4);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .tier-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .tier-card:hover {
            border-color: var(--neon-magenta);
            box-shadow: 0 8px 32px rgba(255, 0, 127, 0.3);
            transform: translateY(-8px);
        }

        .tier-card:hover::before {
            transform: scaleX(1);
        }

        .tier-card.featured {
            border-color: var(--gold);
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(90, 24, 154, 0.4));
        }

        .tier-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--neon-magenta), var(--violet));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }

        .tier-card.featured .tier-icon {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .tier-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .tier-rate {
            font-size: 36px;
            font-weight: 900;
            color: var(--neon-magenta);
            margin-bottom: 8px;
        }

        .tier-card.featured .tier-rate {
            color: var(--gold);
        }

        .tier-condition {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .tier-features {
            list-style: none;
            margin-bottom: 24px;
            text-align: left;
        }

        .tier-features li {
            font-size: 14px;
            color: var(--text-secondary);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tier-features li:last-child {
            border-bottom: none;
        }

        .tier-features i {
            color: var(--success);
            font-size: 12px;
        }

        .btn-tier {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-tier:hover {
            background: rgba(255, 0, 127, 0.2);
            border-color: var(--neon-magenta);
        }

        /* How It Works Section */
        .how-it-works {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(29, 8, 54, 0.5), rgba(18, 2, 36, 0.8));
        }

        .steps-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .step-item {
            display: flex;
            gap: 32px;
            margin-bottom: 48px;
            position: relative;
        }

        .step-item::before {
            content: '';
            position: absolute;
            left: 39px;
            top: 80px;
            width: 2px;
            height: calc(100% + 48px);
            background: linear-gradient(180deg, var(--neon-magenta), transparent);
        }

        .step-item:last-child::before {
            display: none;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--neon-magenta), var(--violet));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
            position: relative;
            z-index: 1;
        }

        .step-content {
            flex: 1;
            padding-top: 8px;
        }

        .step-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .step-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Comparison Table Section */
        .comparison-table-section {
            padding: 80px 0;
        }

        .comparison-table {
            background: rgba(29, 8, 54, 0.3);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table thead {
            background: linear-gradient(135deg, var(--mid-purple), var(--primary-purple));
        }

        .comparison-table th {
            padding: 20px;
            font-size: 16px;
            font-weight: 700;
            text-align: left;
            color: var(--text-primary);
            border-bottom: 2px solid var(--neon-magenta);
        }

        .comparison-table td {
            padding: 20px;
            font-size: 15px;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .comparison-table tr:hover {
            background: rgba(90, 24, 154, 0.2);
        }

        .comparison-table .check-icon {
            color: var(--success);
            font-size: 18px;
        }

        .comparison-table .cross-icon {
            color: var(--error);
            font-size: 18px;
        }

        /* Terms Section */
        .terms-conditions {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(18, 2, 36, 0.8), rgba(29, 8, 54, 0.5));
        }

        .terms-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .term-card {
            background: rgba(90, 24, 154, 0.2);
            border-left: 4px solid var(--neon-cyan);
            border-radius: var(--radius-md);
            padding: 28px;
        }

        .term-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--violet));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
        }

        .term-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .term-description {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(90, 24, 154, 0.2);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--neon-magenta);
        }

        .faq-question {
            padding: 24px 28px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-question i {
            color: var(--neon-magenta);
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 28px 24px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.15), rgba(0, 240, 255, 0.1));
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .cta-description {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: var(--deep-purple);
            border-top: 1px solid rgba(255, 0, 127, 0.2);
            padding: 60px 0 30px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--neon-magenta);
            border-color: var(--neon-magenta);
            box-shadow: 0 0 16px rgba(255, 0, 127, 0.5);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--neon-magenta);
            padding-left: 4px;
        }

        .footer-contact {
            list-style: none;
        }

        .footer-contact li {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact i {
            color: var(--neon-cyan);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-badges {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .badge-item i {
            color: var(--gold);
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-tertiary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .tiers-grid {
                grid-template-columns: 1fr;
            }

            .terms-grid {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .site-logo {
                font-size: 16px;
            }

            .nav-actions .btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .hero-promo {
                padding: 60px 0 40px;
            }

            .hero-text-side h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .promo-highlights {
                flex-direction: column;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
            }

            .promo-percentage {
                font-size: 56px;
            }

            .promo-title {
                font-size: 22px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .step-item {
                flex-direction: column;
                gap: 16px;
            }

            .step-item::before {
                display: none;
            }

            .comparison-table {
                overflow-x: auto;
            }

            .comparison-table table {
                min-width: 600px;
            }

            .cta-title {
                font-size: 28px;
            }

            .cta-description {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .fab-support {
                width: 48px;
                height: 48px;
                left: 12px;
            }

            .fab-support i {
                font-size: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .nav-container {
                padding: 12px 0;
            }

            .hero-text-side h1 {
                font-size: 26px;
            }

            .highlight-number {
                font-size: 28px;
            }

            .promo-percentage {
                font-size: 48px;
            }

            .section-title {
                font-size: 24px;
            }

            .step-title {
                font-size: 20px;
            }

            .faq-question {
                font-size: 16px;
                padding: 20px;
            }

            .faq-answer {
                padding: 0 20px 20px;
            }

            .cta-title {
                font-size: 24px;
            }
        }

/* roulang page: category3 */
:root {
            --primary-purple: #1D0836;
            --deep-purple: #120224;
            --mid-purple: #2A0E4E;
            --bright-purple: #5A189A;
            --neon-magenta: #FF007F;
            --neon-cyan: #00F0FF;
            --gold: #FFD700;
            --gold-dark: #FF9E00;
            --success: #00F5D4;
            --error: #FF3366;
            --white: #FFFFFF;
            --light-lavender: #E0AAFF;
            --text-purple: #9D4EDD;
            --violet: #7B2CBF;
            
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --shadow-sm: 0 2px 8px rgba(255, 0, 127, 0.1);
            --shadow-md: 0 4px 16px rgba(255, 0, 127, 0.2);
            --shadow-lg: 0 8px 24px rgba(255, 0, 127, 0.3);
            --glow: 0 0 20px rgba(255, 0, 127, 0.5);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 50%, var(--mid-purple) 100%);
            color: var(--white);
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 127, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .site-header {
            background: rgba(18, 2, 36, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 127, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 32px;
        }
        
        .site-logo {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            letter-spacing: -0.5px;
        }
        
        .main-nav {
            display: flex;
            gap: 32px;
            align-items: center;
            flex: 1;
            justify-content: center;
        }
        
        .main-nav a {
            color: var(--light-lavender);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 8px 0;
            white-space: nowrap;
        }
        
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));
            transition: width 0.3s ease;
        }
        
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--white);
        }
        
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        
        .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        
        .btn-login {
            background: transparent;
            color: var(--light-lavender);
            border: 1px solid rgba(224, 170, 255, 0.3);
        }
        
        .btn-login:hover {
            background: rgba(224, 170, 255, 0.1);
            color: var(--white);
            border-color: var(--light-lavender);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--neon-magenta), #FF1493);
            color: var(--white);
            box-shadow: var(--shadow-sm);
        }
        
        .btn-primary:hover {
            box-shadow: var(--glow);
            transform: translateY(-2px);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--neon-magenta);
            color: var(--neon-magenta);
            font-size: 20px;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .mobile-menu-toggle:hover {
            background: rgba(255, 0, 127, 0.1);
        }
        
        .page-hero {
            padding: 80px 0 60px;
            background: url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(18, 2, 36, 0.92) 0%, rgba(29, 8, 54, 0.88) 100%);
            z-index: 1;
        }
        
        .page-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 0, 127, 0.15);
            border: 1px solid var(--neon-magenta);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            color: var(--neon-magenta);
            margin-bottom: 24px;
            font-weight: 600;
        }
        
        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--white) 0%, var(--light-lavender) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content .subtitle {
            font-size: 20px;
            color: var(--light-lavender);
            margin-bottom: 32px;
            line-height: 1.6;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--gold);
            display: block;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--light-lavender);
        }
        
        .main-content {
            padding: 80px 0;
        }
        
        .section {
            margin-bottom: 80px;
        }
        
        .section-header {
            text-align: left;
            margin-bottom: 48px;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--white);
        }
        
        .section-desc {
            font-size: 18px;
            color: var(--light-lavender);
            max-width: 800px;
            line-height: 1.7;
        }
        
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }
        
        .guide-card {
            background: rgba(29, 8, 54, 0.6);
            border: 1px solid rgba(255, 0, 127, 0.2);
            border-radius: var(--border-radius);
            padding: 32px;
            transition: var(--transition);
        }
        
        .guide-card:hover {
            border-color: var(--neon-magenta);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        
        .guide-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--neon-magenta), var(--violet));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }
        
        .guide-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--white);
        }
        
        .guide-card p {
            color: var(--light-lavender);
            line-height: 1.7;
            font-size: 15px;
        }
        
        .strategy-section {
            background: linear-gradient(135deg, rgba(42, 14, 78, 0.4) 0%, rgba(29, 8, 54, 0.4) 100%);
            border: 1px solid rgba(0, 240, 255, 0.2);
            border-radius: var(--border-radius);
            padding: 48px;
            margin-bottom: 48px;
        }
        
        .strategy-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 32px;
        }
        
        .strategy-item {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            padding: 24px;
            background: rgba(18, 2, 36, 0.5);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--neon-cyan);
        }
        
        .strategy-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--neon-cyan);
            min-width: 50px;
            line-height: 1;
        }
        
        .strategy-content h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--white);
        }
        
        .strategy-content p {
            color: var(--light-lavender);
            line-height: 1.7;
            font-size: 15px;
        }
        
        .rtp-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 32px;
        }
        
        .rtp-card {
            background: rgba(18, 2, 36, 0.6);
            padding: 24px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 215, 0, 0.2);
            text-align: center;
        }
        
        .rtp-percentage {
            font-size: 42px;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 8px;
            display: block;
        }
        
        .rtp-label {
            font-size: 16px;
            color: var(--white);
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .rtp-desc {
            font-size: 14px;
            color: var(--light-lavender);
            line-height: 1.6;
        }
        
        .game-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        
        .game-item {
            background: rgba(29, 8, 54, 0.5);
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 1px solid rgba(255, 0, 127, 0.15);
            transition: var(--transition);
        }
        
        .game-item:hover {
            border-color: var(--neon-magenta);
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
        }
        
        .game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            position: relative;
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }
        
        .game-provider {
            font-size: 13px;
            color: var(--text-purple);
            margin-bottom: 12px;
        }
        
        .game-features {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        
        .feature-tag {
            padding: 4px 12px;
            background: rgba(255, 0, 127, 0.15);
            border: 1px solid var(--neon-magenta);
            border-radius: 12px;
            font-size: 12px;
            color: var(--neon-magenta);
            font-weight: 600;
        }
        
        .game-rtp {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .rtp-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--gold);
        }
        
        .volatility {
            font-size: 13px;
            color: var(--light-lavender);
        }
        
        .dos-donts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 32px;
        }
        
        .dos-box,
        .donts-box {
            padding: 32px;
            border-radius: var(--border-radius);
        }
        
        .dos-box {
            background: rgba(0, 245, 212, 0.08);
            border: 2px solid var(--success);
        }
        
        .donts-box {
            background: rgba(255, 51, 102, 0.08);
            border: 2px solid var(--error);
        }
        
        .dos-box h3 {
            color: var(--success);
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .donts-box h3 {
            color: var(--error);
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .dos-box ul,
        .donts-box ul {
            list-style: none;
        }
        
        .dos-box li,
        .donts-box li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            color: var(--light-lavender);
            line-height: 1.6;
            font-size: 15px;
        }
        
        .dos-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: 700;
            font-size: 18px;
        }
        
        .donts-box li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: var(--error);
            font-weight: 700;
            font-size: 18px;
        }
        
        .faq-section {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(29, 8, 54, 0.5);
            border: 1px solid rgba(255, 0, 127, 0.15);
            border-radius: var(--border-radius);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item:hover {
            border-color: var(--neon-magenta);
        }
        
        .faq-question {
            padding: 24px;
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        
        .faq-question i {
            color: var(--neon-magenta);
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 24px 24px;
            color: var(--light-lavender);
            line-height: 1.7;
            font-size: 15px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--neon-magenta) 0%, var(--violet) 100%);
            border-radius: var(--border-radius);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }
        
        .cta-section p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        
        .btn-large {
            padding: 16px 40px;
            font-size: 16px;
            border-radius: 30px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-white {
            background: var(--white);
            color: var(--neon-magenta);
        }
        
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background: var(--white);
            color: var(--neon-magenta);
            transform: translateY(-3px);
        }
        
        .footer {
            background: rgba(18, 2, 36, 0.95);
            border-top: 1px solid rgba(255, 0, 127, 0.2);
            padding: 60px 0 30px;
            position: relative;
            z-index: 10;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-desc {
            color: var(--light-lavender);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 0, 127, 0.1);
            border: 1px solid var(--neon-magenta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-magenta);
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--neon-magenta);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--light-lavender);
            font-size: 14px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--neon-magenta);
            padding-left: 5px;
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            color: var(--light-lavender);
            margin-bottom: 12px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-contact i {
            color: var(--neon-magenta);
            width: 20px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            color: var(--light-lavender);
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .footer-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .badge-item {
            padding: 8px 16px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--gold);
            border-radius: 8px;
            color: var(--gold);
            font-size: 12px;
            font-weight: 600;
        }
        
        .fab-button {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(29, 8, 54, 0.9);
            border: 2px solid var(--neon-cyan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-cyan);
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow-md);
        }
        
        .fab-button:hover {
            background: rgba(29, 8, 54, 1);
            box-shadow: var(--glow);
            transform: translateY(-50%) scale(1.1);
        }
        
        @media (max-width: 1024px) {
            .hero-stats {
                gap: 32px;
            }
            
            .stat-value {
                font-size: 32px;
            }
            
            .guide-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .dos-donts {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-actions {
                gap: 8px;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            .site-logo {
                font-size: 16px;
            }
            
            .page-hero {
                padding: 60px 0 40px;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content .subtitle {
                font-size: 16px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .section-desc {
                font-size: 16px;
            }
            
            .guide-grid {
                grid-template-columns: 1fr;
            }
            
            .strategy-section {
                padding: 32px 20px;
            }
            
            .strategy-item {
                flex-direction: column;
                gap: 12px;
            }
            
            .rtp-comparison {
                grid-template-columns: 1fr;
            }
            
            .game-showcase {
                grid-template-columns: 1fr;
            }
            
            .cta-section {
                padding: 40px 24px;
            }
            
            .cta-section h2 {
                font-size: 28px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn-large {
                width: 100%;
                justify-content: center;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
            }
            
            .fab-button {
                width: 50px;
                height: 50px;
                font-size: 20px;
                left: 12px;
            }
        }
        
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            
            .hero-content h1 {
                font-size: 26px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .guide-card {
                padding: 24px;
            }
            
            .strategy-section {
                padding: 24px 16px;
            }
            
            .faq-question {
                font-size: 16px;
                padding: 20px;
            }
            
            .faq-answer {
                padding: 0 20px 20px;
            }
        }
