body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5e8c3; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #8b4513; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 20px; }
        h1 { color: #8b4513; border-bottom: 3px solid #8b4513; padding-bottom: 10px; }
        h2 { color: #a0522d; margin-top: 30px; }
        h3 { color: #cd853f; }
        .download-btn, .login-btn { 
            display: inline-block; 
            padding: 12px 25px; 
            background-color: #8b4513; 
            color: white; 
            text-decoration: none; 
            border-radius: 5px; 
            margin: 15px 0; 
            font-weight: bold; 
        }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        footer { background-color: #8b4513; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .game-types, .tags { margin: 20px 0; }
        .game-types a, .tags a { color: #8b4513; text-decoration: none; margin: 0 5px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; display: none; }
            .mobile-menu-btn { display: block; }
            .nav-active { display: flex; }
            .container { padding: 10px; }
        }
