* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f7ff;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background: linear-gradient(135deg, #1e3799, #3c6382);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #b8e994;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1b4f72;
            margin-bottom: 20px;
            font-size: 2.5rem;
            text-align: center;
            padding: 20px 0;
            border-bottom: 3px solid #3498db;
        }
        h2 {
            color: #2980b9;
            margin: 30px 0 15px;
            font-size: 1.8rem;
            padding-left: 10px;
            border-left: 4px solid #1e3799;
        }
        h3 {
            color: #34495e;
            margin: 25px 0 12px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #1e3799;
        }
        .btn-container {
            margin: 30px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
            text-align: center;
            min-width: 150px;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
            border: 2px solid #27ae60;
        }
        .download-btn:hover {
            background-color: white;
            color: #27ae60;
        }
        .login-btn {
            background-color: #e67e22;
            color: white;
            border: 2px solid #e67e22;
        }
        .login-btn:hover {
            background-color: white;
            color: #e67e22;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #3498db;
        }
        .reviewer {
            font-style: italic;
            color: #7f8c8d;
        }
        .tag-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background-color: #d6eaf8;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #2980b9;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #2980b9;
            color: white;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type-link {
            color: #1e3799;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
        }
        .game-type-link:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin-bottom: 20px;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #1e3799, #3c6382);
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn-container {
                flex-direction: column;
            }
        }
