:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-purple: #6a0dad;
            --accent-gold: #d4af37;
            --text-light: #e6e6e6;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            color: var(--text-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        .navbar {
            background: rgba(26, 26, 46, 0.95) !important;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-purple);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 26, 46, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(106, 13, 173, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(106, 13, 173, 0.2);
        }
        h1, h2, h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            border-left: 4px solid var(--accent-purple);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text-light);
        }
        .keyword-highlight {
            color: var(--accent-gold);
            font-weight: bold;
            background: rgba(212, 175, 55, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--accent-purple), #8a2be2);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(106, 13, 173, 0.6);
            background: linear-gradient(45deg, #8a2be2, var(--accent-purple));
        }
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .stats-box {
            background: rgba(106, 13, 173, 0.2);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin: 15px 0;
            border: 1px solid rgba(106, 13, 173, 0.5);
        }
        .tag {
            display: inline-block;
            background: rgba(212, 175, 55, 0.2);
            color: var(--accent-gold);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .tag:hover {
            background: rgba(212, 175, 55, 0.3);
            transform: translateY(-2px);
            color: var(--accent-gold);
            text-decoration: none;
        }
        .game-type {
            display: inline-block;
            background: rgba(106, 13, 173, 0.2);
            color: var(--text-light);
            padding: 8px 20px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(106, 13, 173, 0.5);
        }
        .game-type:hover {
            background: rgba(106, 13, 173, 0.4);
            transform: translateY(-2px);
            color: var(--text-light);
            text-decoration: none;
        }
        .footer {
            background: rgba(22, 33, 62, 0.9);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid var(--accent-purple);
        }
        .image-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .image-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .nav-link-custom {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-link-custom:hover {
            color: var(--accent-gold) !important;
        }
        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-link-custom:hover::after {
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
