body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FFD700;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #8B4513;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        nav a {
            color: #8B4513;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 15px;
        }
        h1 {
            color: #D4AF37;
            text-align: center;
            margin-bottom: 30px;
            font-size: 32px;
        }
        h2 {
            color: #8B4513;
            margin-top: 40px;
            margin-bottom: 20px;
            font-size: 24px;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 5px;
        }
        h3 {
            color: #A0522D;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #FFD700;
            color: #8B4513;
            padding: 12px 25px;
            margin: 15px 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #FFC107;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .player-review {
            background-color: #FFF3CD;
            padding: 15px;
            margin: 20px 0;
            border-left: 5px solid #FFD700;
            border-radius: 0 5px 5px 0;
        }
        .strategy-section {
            background-color: #FFF;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #8B4513;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
        .footer-links {
            margin: 15px 0;
        }
        .footer-links a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 20px;
            }
        }
