:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #1a237e;
            --text-light: #f5f5f5;
            --bg-dark: #121212;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0a0a2a;
            color: #e0e0e0;
            line-height: 1.7;
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .logo-text {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(45deg, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 10, 42, 0.8), rgba(10, 10, 42, 0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            color: #fff;
        }
        .btn-download {
            background: linear-gradient(45deg, var(--secondary-color), #ff9800);
            border: none;
            padding: 12px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
        }
        .btn-login {
            background: linear-gradient(45deg, var(--accent-color), #3949ab);
            border: none;
            padding: 12px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
        }
        .btn-download:hover, .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 111, 0, 0.6);
        }
        .content-section {
            background-color: rgba(18, 18, 40, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        h1, h2, h3 {
            color: #ff9800;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        h1 {
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        h2 {
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
        }
        .highlight {
            background-color: rgba(255, 111, 0, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .tag {
            display: inline-block;
            background-color: rgba(255, 111, 0, 0.2);
            color: #ff9800;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 111, 0, 0.3);
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: rgba(255, 111, 0, 0.4);
            transform: translateY(-2px);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin: 20px 0;
            border: 2px solid rgba(255, 111, 0, 0.3);
        }
        footer {
            background: linear-gradient(135deg, #0a0a2a, #1a1a4a);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ff9800;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
        .rating-stars {
            color: #ffc107;
            font-size: 1.2rem;
            margin: 10px 0;
        }
        .player-review {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid var(--secondary-color);
        }
        .nav-pills .nav-link.active {
            background-color: var(--secondary-color);
            color: #000;
            font-weight: bold;
        }
        .nav-pills .nav-link {
            color: #e0e0e0;
            margin: 5px;
        }
