:root {
            --primary-purple: #6f42c1;
            --electro-purple: #8b5cf6;
            --dark-bg: #1a1a2e;
            --content-bg: #2d2b55;
            --accent-gold: #f59e0b;
        }
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--content-bg) 100%);
            color: #e2e8f0;
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
        }
        .navbar {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--electro-purple);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--electro-purple), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .nav-link {
            color: #cbd5e0 !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--electro-purple) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--electro-purple);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(45, 43, 85, 0.8), rgba(26, 26, 46, 0.9)), url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .content-section {
            background: rgba(45, 43, 85, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        h1, h2, h3 {
            color: var(--electro-purple);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            border-left: 4px solid var(--accent-gold);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), transparent);
            border-left: 4px solid var(--electro-purple);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .keyword {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--electro-purple), #6366f1);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(139, 92, 246, 0.6);
            background: linear-gradient(45deg, #6366f1, var(--electro-purple));
        }
        .btn-success {
            background: linear-gradient(45deg, #10b981, #34d399);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }
        .btn-success:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(16, 185, 129, 0.6);
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            margin: 25px 0;
            transition: transform 0.4s ease;
            border: 2px solid rgba(139, 92, 246, 0.3);
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: rgba(139, 92, 246, 0.2);
            color: var(--electro-purple);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        .tag:hover {
            background: rgba(139, 92, 246, 0.4);
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }
        .stat-box {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin: 15px 0;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            border-color: var(--electro-purple);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            display: block;
        }
        .footer {
            background: rgba(26, 26, 46, 0.95);
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 2px solid var(--electro-purple);
        }
        .footer-heading {
            color: var(--electro-purple);
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .game-type-list {
            list-style: none;
            padding: 0;
        }
        .game-type-list li {
            margin-bottom: 10px;
        }
        .game-type-list a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .game-type-list a:hover {
            color: var(--electro-purple);
        }
        .daman-promo {
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            margin: 30px 0;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 25px;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
        .toc {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 4px solid var(--accent-gold);
        }
        .toc ul {
            padding-left: 20px;
        }
        .toc li {
            margin-bottom: 10px;
        }
        .toc a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc a:hover {
            color: var(--electro-purple);
        }
