:root {
            --primary-blue: #1e40af;
            --secondary-gold: #d97706;
            --accent-purple: #7c3aed;
            --dark-bg: #0f172a;
            --light-text: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--secondary-gold), var(--accent-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--secondary-gold);
        }
        .nav-link {
            color: var(--light-text) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 64, 175, 0.6)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: rgba(30, 41, 59, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1, h2, h3 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--accent-purple);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--light-text);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight-text {
            background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.2), transparent);
            padding: 15px 20px;
            border-radius: 8px;
            border-left: 3px solid var(--secondary-gold);
            font-weight: 600;
            margin: 25px 0;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-gold);
            margin-bottom: 15px;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
            margin: 20px 0;
            border: 2px solid var(--accent-purple);
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .key-feature {
            background: rgba(30, 64, 175, 0.2);
            padding: 25px;
            border-radius: 10px;
            margin: 20px 0;
            border: 1px solid rgba(124, 58, 237, 0.3);
            transition: all 0.3s ease;
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
            border-color: var(--accent-purple);
        }
        footer {
            background: var(--dark-bg);
            border-top: 2px solid var(--secondary-gold);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .social-icon {
            font-size: 1.5rem;
            color: var(--light-text);
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            color: var(--secondary-gold);
            transform: scale(1.2);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
