body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #0a1e3e; color: white; padding: 20px; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu { display: none; cursor: pointer; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu { display: block; }
        }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 24px; background-color: #ff6b00; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .section-title { color: #0a1e3e; border-bottom: 2px solid #ff6b00; padding-bottom: 10px; margin: 30px 0 15px; }
        footer { background-color: #0a1e3e; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #ff6b00; color: white; padding: 5px 10px; margin: 5px; border-radius: 3px; }
