body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #FF6B35, #FF8E53); color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 30px; margin-top: 15px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-btn { display: none; position: absolute; top: 20px; right: 20px; background: white; color: #FF6B35; border: none; padding: 5px 10px; cursor: pointer; }
        h1 { color: #FF6B35; border-bottom: 3px solid #FF8E53; padding-bottom: 10px; }
        h2 { color: #FF8E53; margin-top: 30px; }
        h3 { color: #FFA366; }
        .download-btn { background: #4CAF50; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; display: inline-block; margin: 15px 0; }
        .login-btn { background: #2196F3; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; display: inline-block; margin: 15px 10px; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .game-types { margin: 20px 0; }
        .game-types a { color: #FF8E53; text-decoration: none; margin: 0 10px; }
        .tags { margin: 20px 0; }
        .tags a { background: #555; color: white; padding: 5px 10px; border-radius: 15px; text-decoration: none; margin: 0 5px; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-nav-btn { display: block; }
            .logo { font-size: 2em; }
        }
