* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1a5f7a;
            padding: 15px 20px;
            color: white;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a5f7a;
            margin: 20px 0;
            font-size: 32px;
            text-align: center;
        }
        h2 {
            color: #1a5f7a;
            margin: 30px 0 15px;
            font-size: 26px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 5px;
        }
        h3 {
            color: #1a5f7a;
            margin: 25px 0 10px;
            font-size: 22px;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #c11d2d;
        }
        .download-btn {
            background-color: #4cc9f0;
        }
        .download-btn:hover {
            background-color: #3aabd0;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .highlight {
            font-weight: bold;
            color: #1a5f7a;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .review {
            background-color: #fff8e1;
            border-left: 5px solid #ffd700;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e0f7fa;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #1a5f7a;
            font-size: 14px;
        }
        .tag:hover {
            background-color: #b2ebf2;
        }
        .game-type {
            display: inline-block;
            margin: 10px 10px 10px 0;
            text-decoration: none;
            color: #1a5f7a;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        .footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #1a5f7a;
        }
        .copyright {
            margin-top: 20px;
            text-align: center;
            color: #666;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a5f7a;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
        }
