:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #ff6b35;
            --secondary-dark: #16213e;
            --text-light: #e6e6e6;
            --highlight: #f39c12;
        }
        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-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-accent) !important;
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
            letter-spacing: 1px;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-accent) !important;
            transform: translateY(-2px);
        }
        .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;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        h1 {
            color: var(--primary-accent);
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            color: var(--highlight);
            border-left: 5px solid var(--primary-accent);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-weight: 700;
        }
        h3 {
            color: var(--text-light);
            margin: 2rem 0 1rem;
            font-weight: 600;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--primary-accent), #ff8c42);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }
        .btn-outline-light {
            border: 2px solid var(--text-light);
            color: var(--text-light);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background: var(--text-light);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-accent);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: rgba(255, 107, 53, 0.2);
            color: var(--primary-accent);
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }
        .tag:hover {
            background: rgba(255, 107, 53, 0.4);
            transform: translateY(-2px);
            text-decoration: none;
            color: var(--primary-accent);
        }
        .rating-stars {
            color: var(--highlight);
            font-size: 1.2rem;
        }
        footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--primary-accent);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .stat-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            margin: 1rem 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-accent);
            display: block;
        }
        .highlight-text {
            background: linear-gradient(90deg, var(--primary-accent), var(--highlight));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        blockquote {
            border-left: 4px solid var(--primary-accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
