/* Responsive por Orientación */
@media (orientation: portrait) {
    .show-landscape { display: none !important; }
    .show-portrait  { display: flex !important; }
}
@media (orientation: landscape) {
    .show-landscape { display: flex !important; }
    .show-portrait  { display: none !important; }
}

/* Ocultar botón BACK por defecto — se muestra vía JS en dispositivos táctiles */
#back-btn {
    display: none !important;
}
#back-btn.show {
    display: flex !important;
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.cookie-banner a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner a:hover {
    color: #fff;
}
.cookie-banner-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.cookie-btn-accept {
    background: #fff;
    color: #000;
}
.cookie-btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-btn-reject:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}
