/* ==========================================================================
   EL CHINGÓN — Sistema de Diseño Premium (Estilo Lujo & Alta Gastronomía)
   ========================================================================== */

/* 1. Variables de Diseño (Tokens) */
:root {
    /* Paleta de Colores de Alta Gama */
    --color-bg-base: #050505;
    --color-gold-warm: #c5a059;       /* Oro mate sutil, elegante */
    --color-gold-hover: #e5bf75;      /* Brillo dorado */
    --color-text-white: #fdfcf7;      /* Blanco roto premium, reduce fatiga visual */
    --color-text-dim: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.4);
    
    /* Efecto Glassmorphism Premium */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
    
    /* Tipografías */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Tiempos de Animación */
    --transition-speed-slow: 1500ms;
    --transition-speed-normal: 400ms;
    --transition-speed-fast: 150ms;
}

/* 2. Reseteo y Ajustes Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Quita el recuadro azul táctil en móviles */
}

html, body {
    width: 100vw;
    min-height: 100dvh; /* dvh asegura que encaje en pantallas móviles sin barras flotantes */
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--color-bg-base);
    color: var(--color-text-white);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. Slider de Fondo Cinematográfico */
.bg-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 1;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.03); /* Efecto zoom ultra sutil */
    transition: opacity var(--transition-speed-slow) cubic-bezier(0.4, 0, 0.2, 1),
                transform var(--transition-speed-slow) cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

/* Estado activo para el fundido cruzado */
.bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Capa Oscura de Lujo */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente radial/lineal oscuro para mejorar el contraste sin perder el lujo de las fotos */
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.55) 0%, 
        rgba(0, 0, 0, 0.65) 50%, 
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* 4. Layout Principal (Mobile-First) */
.main-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 440px; /* Ancho elegante para móviles */
    min-height: 100dvh;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
}

/* 5. Cabecera y Logo */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 5.2dvh; /* Posicionado elegantemente cerca del borde superior sin rozarlo (no obstruye con notches) */
    gap: 14px; /* Espacio elegante entre el logo y el subtítulo */
    animation: fadeInDown 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    position: relative;
}

/* Glow suave glorificador detrás del logo */
.header::before {
    content: '';
    position: absolute;
    top: 35%; /* Centrado detrás del logo principal */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 45%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(15px);
}

.logo {
    max-height: 76px; /* Ajuste más pequeño para el logo */
    width: auto;
    object-fit: contain;
    /* Doble filtro: uno de sombra difusa clara para resaltar el color azul y otro de sombra oscura para el contraste */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.45)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    transition: transform var(--transition-speed-normal) ease;
    z-index: 2;
}

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.logo-subtitle {
    font-size: 0.72rem; /* Incrementado sutilmente para darle protagonismo como etiqueta de ubicación */
    font-weight: 600;  /* Peso semibold para excelente contraste y legibilidad legible */
    text-transform: uppercase;
    letter-spacing: 0.42em; /* Espaciado premium ultra-ancho sofisticado */
    color: #dfba6b;    /* Oro champagne de alto contraste */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    opacity: 1;        /* Contraste y legibilidad plenos */
    padding-left: 0.42em; /* Centrado perfecto compensando el letter-spacing final */
}

.michelin-badge {
    max-height: 144px; /* Sello de reconocimiento 3x más grande para legibilidad */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-speed-normal) ease;
}

/* 6. Sección de Contenido Principal */
.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;      /* Alineación fluida hacia abajo */
    margin-bottom: 9dvh;   /* Espacio visual cómodo, amplio y sofisticado antes de 'SÍGUENOS' */
    gap: 32px;
}

.title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.25;
    color: var(--color-text-white);
    margin: 0;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Sistema de Calificación de Estrellas */
.stars-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-speed-normal) cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.15s;
}

.star-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;  /* Optimizado para que sea muy fácil de pulsar con el dedo */
    height: 56px; /* Optimizado para que sea muy fácil de pulsar con el dedo */
    outline: none;
    transition: transform var(--transition-speed-fast) cubic-bezier(0.25, 1, 0.5, 1);
}

.star-icon {
    width: 46px;
    height: 46px;
    fill: transparent;
    stroke: var(--color-gold-warm);
    stroke-width: 1.5;
    transition: all var(--transition-speed-normal) ease;
}

/* Efectos Interactivos y Animaciones */
.star-btn:active {
    transform: scale(0.85);
}

@media (hover: hover) {
    .star-btn:hover {
        transform: scale(1.18);
    }
    
    .star-btn:hover .star-icon {
        fill: var(--color-gold-hover);
        stroke: var(--color-gold-hover);
        filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.6));
    }
}

/* Iluminación activa y animada */
.star-btn.filled .star-icon {
    fill: var(--color-gold-warm);
    stroke: var(--color-gold-warm);
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.9));
}

.star-btn.tap-animate {
    animation: starTap 0.3s ease-out;
}

@keyframes starTap {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

/* 7. Footer y Redes Sociales */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.45s forwards;
}

.footer-title {
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-text-dim);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text-dim);
    transition: all var(--transition-speed-normal) cubic-bezier(0.25, 1, 0.5, 1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-speed-normal) ease;
}

@media (hover: hover) {
    .social-icon:hover {
        color: var(--color-text-white);
        border-color: rgba(197, 160, 89, 0.45);
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
    }
    
    .social-icon:hover svg {
        transform: scale(1.1);
    }
}

.social-icon:active {
    transform: scale(0.92) translateY(0);
    color: var(--color-gold-hover);
    border-color: rgba(197, 160, 89, 0.7);
    transition: all var(--transition-speed-fast) ease;
}

/* 8. Animaciones de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 9. Optimizaciones para Pantallas de Distintos Tamaños */
@media (max-height: 680px) {
    .main-container {
        padding: 16px 20px 12px 20px;
    }
    .header {
        padding-top: 3.5dvh; /* Elevado proporcionalmente en pantallas cortas para simetría de cabecera */
        gap: 8px;
    }
    .content-section {
        margin-top: auto;      /* Alineación fluida al pie */
        margin-bottom: 5dvh;   /* Espacio cómodo antes de 'SÍGUENOS' en pantallas cortas */
        gap: 16px;
    }
    .title {
        font-size: 1.55rem;
    }
    .review-card {
        height: 52px;
        padding: 0 16px;
        border-radius: 12px;
    }
    .logo {
        max-height: 56px; /* Escalado proporcional para el logo en pantallas cortas */
    }
    .logo-subtitle {
        font-size: 0.62rem; /* Legible y semibold */
        font-weight: 600;
        letter-spacing: 0.35em;
        padding-left: 0.35em;
    }
    .michelin-badge {
        max-height: 114px; /* Escala proporcional al lado del subtítulo en pantallas cortas */
    }
    .header::before {
        width: 220px;
        height: 160px;
    }
    .tripadvisor-img-icon {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 768px) {
    /* En tablets u ordenadores el contenido respira elegantemente sin verse estirado */
    .main-container {
        max-width: 480px;
        padding: 64px 32px;
    }
    .title {
        font-size: 2.35rem;
    }
}

/* 10. Sección de WiFi para Clientes */
.wifi-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    width: 100%;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-speed-normal) cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
    text-align: center;
}

.wifi-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.wifi-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text-white);
    margin: 0;
}

.wifi-subtitle {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--color-text-dim);
    line-height: 1.4;
    margin: 0;
    max-width: 90%;
}

.wifi-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 82%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.08);
    color: var(--color-text-white);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--transition-speed-normal) cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.wifi-btn svg {
    transition: transform var(--transition-speed-normal) ease;
}

@media (hover: hover) {
    .wifi-card:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(197, 160, 89, 0.35);
        transform: translateY(-3px);
        box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 160, 89, 0.12);
    }

    .wifi-btn:hover {
        background: rgba(197, 160, 89, 0.18);
        border-color: var(--color-gold-warm);
        box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15);
    }
    
    .wifi-btn:hover svg {
        transform: scale(1.1);
    }
}

.wifi-card:active {
    transform: scale(0.98) translateY(0);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed-fast) ease;
}

.wifi-btn:active {
    transform: scale(0.97);
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.6);
}

.wifi-note {
    font-size: 0.65rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-text-muted);
    max-width: 90%;
    margin: 0 auto;
}

/* 11. Modal de Credenciales WiFi */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed-normal) ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 32px rgba(197, 160, 89, 0.08);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-speed-normal) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition-speed-fast) ease;
}

.modal-close-btn:hover {
    color: var(--color-text-white);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-gold-warm);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.credential-field {
    margin-bottom: 20px;
    text-align: left;
}

.credential-label {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    display: block;
}

.credential-value {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 16px;
    border-radius: 8px;
    display: block;
    word-break: break-all;
    font-family: var(--font-sans);
}

.modal-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--color-gold-warm);
    background: var(--color-gold-warm);
    color: #050505;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--transition-speed-normal) ease;
    margin-top: 24px;
}

.modal-copy-btn:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.25);
}

.modal-copy-btn:active {
    transform: scale(0.98);
}

/* 12. Alerta Toast */
.wifi-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid var(--color-gold-warm);
    border-radius: 50px;
    padding: 12px 24px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wifi-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wifi-toast-text {
    color: var(--color-text-white);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Ajustes Responsive Especiales para la sección WiFi */
@media (max-height: 680px) {
    .wifi-card {
        padding: 12px 16px;
        gap: 8px;
    }
    .wifi-title {
        font-size: 1.05rem;
    }
    .wifi-subtitle {
        font-size: 0.72rem;
    }
    .wifi-btn {
        width: 80%;
        height: 40px;
        font-size: 0.8rem;
    }
    .wifi-note {
        font-size: 0.6rem;
    }
    .modal-content {
        padding: 24px 16px 20px 16px;
    }
    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .credential-field {
        margin-bottom: 14px;
    }
    .credential-value {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    .modal-copy-btn {
        height: 42px;
        font-size: 0.8rem;
        margin-top: 16px;
     }
 }
 
 /* === Estilos del Pop-up Colette (Prueba A/B) === */
 #colette-modal-overlay {
     background: rgba(0, 0, 0, 0.88);
     backdrop-filter: blur(18px);
     -webkit-backdrop-filter: blur(18px);
 }
 
 .colette-modal-content {
     background: rgba(8, 8, 8, 0.98);
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: 28px;
     width: 94%;
     max-width: 460px;
     box-shadow: 0 24px 64px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.6);
     overflow: hidden;
     position: relative;
     transform: scale(0.9);
     transition: transform var(--transition-speed-normal) cubic-bezier(0.34, 1.56, 0.64, 1);
     display: flex;
     flex-direction: column;
     max-height: 96dvh;
 }
 
 #colette-modal-overlay.active .colette-modal-content {
     transform: scale(1);
 }
 
 .colette-header {
     padding: 24px 28px 16px 28px;
     text-align: center;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }
 
 .colette-title {
     font-family: var(--font-serif);
     font-size: 1.95rem;
     font-weight: 300;
     color: var(--color-text-white);
     margin: 0;
     letter-spacing: 0.03em;
 }
 
 .colette-subtitle {
     font-size: 0.8rem;
     font-weight: 300;
     color: var(--color-text-muted);
     margin: 0;
     line-height: 1.4;
 }
 
 .colette-close-icon {
     position: absolute;
     top: 16px;
     right: 20px;
     background: none;
     border: none;
     color: var(--color-text-white);
     font-size: 2.2rem;
     font-weight: 300;
     cursor: pointer;
     line-height: 1;
     z-index: 1002;
     padding: 8px;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.2s ease;
 }
 
 .colette-close-icon.show {
     opacity: 0.7;
     pointer-events: auto;
 }
 
 .colette-close-icon.show:active {
     transform: scale(0.85);
     opacity: 1;
 }
 
 @media (hover: hover) {
     .colette-close-icon.show:hover {
         opacity: 1;
         color: var(--color-gold-hover);
     }
 }
 
 .colette-video-wrapper {
     width: 100%;
     aspect-ratio: 9 / 16;
     max-height: 74dvh;
     position: relative;
     overflow: hidden;
     background: #000;
 }
 
 .colette-video-wrapper video {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
 }
 
 @media (max-height: 680px) {
     .colette-modal-content {
         max-width: 340px;
         border-radius: 20px;
         max-height: 98dvh;
     }
     .colette-header {
         padding: 16px 20px 10px 20px;
         gap: 4px;
     }
     .colette-title {
         font-size: 1.5rem;
     }
     .colette-subtitle {
         font-size: 0.72rem;
     }
     .colette-video-wrapper {
         max-height: 65dvh;
     }
     .colette-close-icon {
         top: 10px;
         right: 14px;
         font-size: 1.8rem;
     }
 }

/* 13. Selector de Idioma (Switch ES/EN) */
.lang-switch {
    position: absolute;
    top: 20px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    opacity: 0.4;
    transition: opacity var(--transition-speed-fast) ease, text-shadow var(--transition-speed-fast) ease;
    padding: 2px 4px;
}

.lang-btn.active {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.lang-divider {
    color: var(--glass-border);
    font-size: 0.75rem;
    pointer-events: none;
}

@media (max-height: 680px) {
    .lang-switch {
        top: 14px;
        right: 20px;
        padding: 4px 10px;
    }
    .lang-btn {
        font-size: 0.7rem;
    }
}
