body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF5E6;
        }
        header {
            background-color: #FF4500;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #FF4500;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 10px;
            margin-bottom: 25px;
        }
    h2 {
        color: #E67E22;
        margin-top: 35px;
        border-left: 5px solid #E67E22;
        padding-left: 15px;
    }
    h3 {
        color: #27AE60;
        margin-top: 25px;
    }
    .download-btn, .login-btn {
        display: inline-block;
        background-color: #FF4500;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        margin: 15px 5px;
        font-weight: bold;
        transition: all 0.3s;
    }
    .download-btn:hover, .login-btn:hover {
        background-color: #E67E22;
        transform: translateY(-2px);
    }
    .game-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 20px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .player-review {
        background-color: #FFF;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .strategy-section {
        background-color: #FFF9E6;
        padding: 20px;
        border-left: 5px solid #FFD700;
        margin: 25px 0;
    }
    footer {
        margin-top: 50px;
        padding: 20px;
        background-color: #333;
        color: white;
        text-align: center;
        border-radius: 8px;
    }
    .game-types, .tags {
        margin: 20px 0;
    }
    .game-types a, .tags a {
        color: #FF4500;
        text-decoration: none;
        margin-right: 10px;
    }
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            width: 100%;
            flex-direction: column;
            margin-top: 15px;
        }
        .nav-links.active {
            display: flex;
        }
        .mobile-menu-btn {
            display: block;
        }
        body {
            padding: 10px;
        }
    }
