:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4a148c;
            --text-light: #f5f5f5;
            --text-dark: #212121;
            --bg-dark: #121212;
            --bg-card: #1e1e1e;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0c0c2e 0%, #1a1a4a 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar {
            background: rgba(26, 35, 126, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            padding: 0.8rem 0;
        }
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff6f00, #ffab40);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1920x800') no-repeat center center;
            background-size: cover;
            padding: 6rem 0;
            position: relative;
            text-align: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(18, 18, 18, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--secondary-color), #ff8f00);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 111, 0, 0.6);
        }
        .btn-login {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: var(--secondary-color);
            color: var(--text-light);
        }
        .content-section {
            padding: 4rem 0;
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card {
            background: var(--bg-card);
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }
        .card-header {
            background: var(--primary-color);
            border-bottom: 2px solid var(--secondary-color);
            padding: 1.2rem 1.5rem;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            margin: 2rem 0;
        }
        .tag {
            display: inline-block;
            background: rgba(255, 111, 0, 0.2);
            color: var(--secondary-color);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag:hover {
            background: var(--secondary-color);
            color: var(--text-light);
            transform: translateY(-2px);
        }
        .footer {
            background: var(--bg-dark);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        .highlight {
            color: var(--secondary-color);
            font-weight: 600;
        }
        .rating-stars {
            color: #ffc107;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 4rem 0;
            }
        }
