Seleccionar Idioma


.lang-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 999999; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .lang-modal-overlay.active { opacity: 1; pointer-events: auto; } .lang-modal-box { background: var(--panel-bg, #1e1e1e); border: 1px solid var(--border-color, #333333); width: 90%; max-width: 420px; border-radius: 16px; display: flex; flex-direction: column; transform: scale(0.95) translateY(20px); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 25px 50px rgba(0,0,0,0.5); overflow: hidden; } .lang-modal-overlay.active .lang-modal-box { transform: scale(1) translateY(0); } .lang-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; border-bottom: 1px solid var(--border-color, #333333); } .lang-modal-title { margin: 0; font-size: 1.15rem; color: var(--text-main, #ffffff); display: flex; align-items: center; gap: 10px; font-weight: 700; } .lang-modal-title svg { width: 22px; height: 22px; color: var(--accent, #2563eb); flex-shrink: 0; } .lang-modal-close { background: transparent; border: none; color: var(--text-muted, #999999); cursor: pointer; padding: 5px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.2s; } .lang-modal-close:hover { background: var(--input-bg, #2a2a2a); color: var(--red, #ff4444); } .lang-modal-close svg { width: 22px; height: 22px; } .lang-modal-body { padding: 25px; max-height: 70vh; overflow-y: auto; background: var(--panel-bg); } .lang-autodetect-btn { width: 100%; display: flex; align-items: center; gap: 15px; background: var(--panel-bg, #1e1e1e); border: 1px solid var(--border-color, #333333); padding: 15px; border-radius: 12px; cursor: pointer; text-align: left; transition: all 0.2s; margin-bottom: 5px; } .lang-autodetect-btn:hover { border-color: var(--accent, #2563eb); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37,99,235,0.15); } .autodetect-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(37,99,235,0.1); color: var(--accent, #2563eb); display: flex; justify-content: center; align-items: center; flex-shrink: 0; } .autodetect-icon svg { width: 22px; height: 22px; } .autodetect-text strong { display: block; color: var(--text-main, #ffffff); font-size: 1rem; margin-bottom: 2px; } .autodetect-text span { color: var(--text-muted, #999999); font-size: 0.85rem; } .lang-autodetect-msg { text-align: center; font-size: 0.85rem; min-height: 20px; margin-bottom: 10px; font-weight: 500; } .lang-divider { border: 0; height: 1px; background: var(--border-color, #333333); margin: 20px 0; } .lang-grid-list { display: grid; grid-template-columns: 1fr; gap: 10px; } .lang-option-btn { width: 100%; display: flex; align-items: center; background: var(--panel-bg, #1e1e1e); border: 1px solid var(--border-color, #333333); padding: 12px 18px; border-radius: 10px; cursor: pointer; transition: 0.2s; color: var(--text-main, #ffffff); } .lang-option-btn:hover { background: var(--input-bg, #2a2a2a); border-color: var(--text-muted, #999999); } .lang-option-btn.active { background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.4); color: var(--accent, #2563eb); } .lang-native-name { flex: 1; text-align: left; font-weight: 600; font-size: 1rem; } .lang-iso-code { color: var(--text-muted, #999999); font-size: 0.75rem; font-weight: 700; background: var(--input-bg, #2a2a2a); padding: 4px 8px; border-radius: 6px; margin-right: 12px; font-family: monospace; } .lang-option-btn.active .lang-iso-code { background: transparent; color: var(--accent, #2563eb); opacity: 0.9; } .lang-check-icon { display: flex; color: var(--accent, #2563eb); } .lang-check-icon svg { width: 20px; height: 20px; } /* Botón globe para guests */ .btn-lang-guest svg { width: 20px; height: 20px; } /* ================================================================ */ /* BOTONES CLIP / WATCH (solo mobile) */ /* ================================================================ */ .btn-header-nav { display: none; align-items: center; justify-content: center; background: var(--input-bg); border: none; color: var(--text-main); cursor: pointer; padding: 0; border-radius: 50%; width: 38px; height: 38px; flex-shrink: 0; transition: 0.2s; text-decoration: none; } .btn-header-nav:hover { background: var(--border-color); transform: scale(1.05); } .btn-header-nav svg { width: 20px; height: 20px; fill: currentColor; display: block; } @media (max-width: 768px) { .btn-header-nav { display: flex; } } /* ================================================================ */ /* BÚSQUEDA MÓVIL EXPANDIBLE + RESULTADOS EN TIEMPO REAL */ /* ================================================================ */ .search-mobile-btn { display: none; align-items: center; justify-content: center; background: var(--input-bg); border: none; color: var(--text-main); cursor: pointer; padding: 0; border-radius: 50%; width: 38px; height: 38px; flex-shrink: 0; transition: 0.2s; } .search-mobile-btn:hover { background: var(--border-color); transform: scale(1.05); } .search-mobile-btn svg { width: 20px; height: 20px; fill: currentColor; } /* Panel de búsqueda móvil expandido */ .mobile-search-panel { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 20001; background: var(--panel-bg); border-bottom: 1px solid var(--border-color); padding: 10px 15px; box-sizing: border-box; height: 60px; align-items: center; gap: 10px; animation: slideSearchDown 0.25s ease; } .mobile-search-panel.active { display: flex; } @keyframes slideSearchDown { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } } .mobile-search-panel .search-form { flex: 1; display: flex; height: 40px; position: relative; } .mobile-search-panel .search-form input { width: 100%; padding: 8px 40px 8px 15px; background: var(--input-bg); border: 1px solid var(--border-color); border-radius: 20px; color: var(--text-main); font-size: 0.9rem; outline: none; transition: 0.3s; } .mobile-search-panel .search-form input:focus { border-color: var(--accent); } .mobile-search-panel .search-form .search-btn { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 5px; } .mobile-search-panel .search-form .search-btn svg { width: 18px; height: 18px; fill: currentColor; } .mobile-search-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 5px; display: flex; align-items: center; flex-shrink: 0; } .mobile-search-close svg { width: 22px; height: 22px; fill: currentColor; } /* Resultados en tiempo real */ .search-results-dropdown { position: fixed; top: 60px; left: 0; right: 0; z-index: 20000; background: var(--panel-bg); border-bottom: 1px solid var(--border-color); max-height: calc(100vh - 70px); overflow-y: auto; display: none; flex-direction: column; box-shadow: 0 8px 30px rgba(0,0,0,0.3); } .search-results-dropdown.active { display: flex; } .search-result-item { display: flex; align-items: center; gap: 12px; padding: 12px 18px; text-decoration: none; color: var(--text-main); transition: 0.2s; border-bottom: 1px solid var(--border-color); } .search-result-item:hover { background: var(--input-bg); } .search-result-item:last-child { border-bottom: none; } .search-result-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--border-color); flex-shrink: 0; } .search-result-avatar.page-avatar { border-radius: 10px; } .search-result-info { flex: 1; overflow: hidden; } .search-result-name { font-weight: 600; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 5px; } .search-result-sub { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .search-result-badge { color: var(--accent); display: inline-flex; align-items: center; } .search-result-badge svg { width: 14px; height: 14px; fill: currentColor; } .search-no-results { padding: 20px; text-align: center; color: var(--text-muted); font-size: 0.9rem; } .search-loading { padding: 20px; text-align: center; color: var(--text-muted); font-size: 0.85rem; } .search-result-section-title { padding: 8px 18px 4px; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; background: var(--input-bg); } .search-view-all { padding: 14px; text-align: center; background: var(--input-bg); border-top: 1px solid var(--border-color); text-decoration: none; color: var(--accent); font-weight: 600; font-size: 0.9rem; } /* Desktop: resultados en tiempo real (debajo del input) */ .desktop-search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20000; background: var(--panel-bg); border: 1px solid var(--border-color); border-radius: 16px; max-height: 400px; overflow-y: auto; display: none; flex-direction: column; box-shadow: 0 8px 30px rgba(0,0,0,0.3); } .desktop-search-results.active { display: flex; } .desktop-search-results .search-result-item { border-bottom: 1px solid var(--border-color); border-radius: 0; } .desktop-search-results .search-result-item:first-child { border-radius: 16px 16px 0 0; } .desktop-search-results .search-result-item:last-child { border-bottom: none; border-radius: 0 0 16px 16px; } @media (max-width: 768px) { .header-search { display: none !important; } .search-mobile-btn { display: flex; } } /* ================================================================ */ /* MODAL DE INVITADO (GUEST DROPDOWN) */ /* ================================================================ */ .guest-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 19999; display: none; justify-content: flex-end; align-items: flex-start; padding-top: 60px; padding-right: 10px; box-sizing: border-box; } .guest-modal-overlay.active { display: flex; } .guest-modal-box { background: var(--panel-bg); border: 1px solid var(--border-color); border-radius: 16px; width: 280px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.4); animation: guestModalIn 0.2s ease; } @keyframes guestModalIn { from { opacity: 0; transform: translateY(-10px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } } .guest-modal-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; text-decoration: none; color: var(--text-main); font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: 0.2s; border: none; background: none; width: 100%; text-align: left; box-sizing: border-box; } .guest-modal-item:hover { background: var(--input-bg); } .guest-modal-item svg { width: 20px; height: 20px; fill: currentColor; opacity: 0.8; flex-shrink: 0; } .guest-modal-item + .guest-modal-item { border-top: 1px solid var(--border-color); } .guest-modal-divider { height: 1px; background: var(--border-color); } .guest-modal-footer { padding: 12px 18px; font-size: 0.75rem; color: var(--text-muted); background: var(--input-bg); border-top: 1px solid var(--border-color); display: flex; flex-wrap: wrap; gap: 3px 6px; line-height: 1.6; } .guest-modal-footer a { color: var(--text-muted); text-decoration: none; transition: 0.2s; } .guest-modal-footer a:hover { color: var(--text-main); text-decoration: underline; } .guest-modal-footer-top { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 6px; } .guest-modal-footer-top span { font-weight: 700; } .guest-modal-lang-btn { display: flex; align-items: center; gap: 4px; color: var(--text-muted); background: none; border: none; cursor: pointer; font-size: 0.75rem; transition: color 0.2s; padding: 0; } .guest-modal-lang-btn:hover { color: var(--accent); } .guest-modal-lang-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; } .guest-modal-theme-label { display: flex; align-items: center; gap: 8px; flex: 1; } .guest-modal-theme-label svg { width: 20px; height: 20px; fill: currentColor; opacity: 0.8; } @media (max-width: 768px) { .guest-modal-overlay { padding-right: 5px; } .guest-modal-box { width: calc(100vw - 10px); max-width: 320px; } }
Bienvenidos
Logo Logo

Iniciar Sesión

¿No tienes cuenta? Crear cuenta

Aviso

📱 Instalar Aplicación

El navegador ha bloqueado la instalación automática. Para instalarla:

En Android/Chrome: Toca el menú de 3 puntos (⋮) en la esquina superior derecha y selecciona "Instalar aplicación".

En iPhone/Safari: Toca el botón de Compartir (cuadrado con flecha) y selecciona "Añadir a pantalla de inicio".

Vista completa
Cover
D

Demetrius Greenholt

@roslyn_jones_716
0 Seguidores
0 Siguiendo
Mensaje
Publicidad Publicidad
📝

Sin publicaciones aún.

🎬

Sin clips todavía.

Nada compartido aún.

🚫

¿Bloquear Usuario?

Elige qué quieres bloquear: