body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5e6; 
        }
        header {
            background-color: #8b4513; 
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #8b4513;
            border-bottom: 2px solid #8b4513;
            padding-bottom: 10px;
        }
    h2 {
        color: #5d4037;
        margin-top: 30px;
    }
    h3 {
        color: #6d4c41;
        margin-top: 25px;
    }
    .download-btn, .login-btn {
        display: inline-block;
        background-color: #4caf50;
        color: white;
        padding: 12px 24px;
        margin: 15px 0;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .download-btn:hover, .login-btn:hover {
        background-color: #388e3c;
    }
    .game-image {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .player-review {
        background-color: #e8f5e9;
        padding: 15px;
        border-left: 4px solid #4caf50;
        margin: 20px 0;
    }
    .strategy-section {
        background-color: #fff3e0;
        padding: 20px;
        border-radius: 8px;
        margin: 25px 0;
    }
    footer {
        margin-top: 50px;
        padding: 20px;
        background-color: #8b4513;
        color: white;
        text-align: center;
        border-radius: 10px;
    }
    .tags {
        margin: 20px 0;
    }
    .tag {
        display: inline-block;
        background-color: #e0e0e0;
        padding: 5px 10px;
        margin: 5px;
        border-radius: 20px;
        text-decoration: none;
        color: #333;
    }
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        nav {
            flex-direction: column;
            align-items: flex-start;
            display: none;
        }
        nav.active {
            display: flex;
        }
        nav a {
            margin: 5px 0;
        }
        body {
            padding: 10px;
        }
    }
