/* Super24 Age Gate Styles */

/* Reset y base */
.s24-age-gate-body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Overlay principal */
.s24-age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #E31E24;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* Container principal */
.s24-age-gate-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Logo Super24 */
.s24-logo {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}

.s24-logo img {
    width: 184px;
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

/* Elementos decorativos izquierda (botellas Gallo y Cabro) */
.s24-elements-left {
    position: absolute;
    left: 0;
    bottom: -20px;
    z-index: 2;
}

.s24-elements-left img {
    height: 85vh;
    width: auto;
    max-height: 850px;
}

/* Elementos decorativos derecha (Botran) */
.s24-elements-right {
    position: absolute;
    right: 0;
    bottom: -20px;
    z-index: 2;
}

.s24-elements-right img {
    height: 90vh;
    width: auto;
    max-height: 900px;
}

/* Contenido central - MÁS CENTRADO */
.s24-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    margin-left: 150px; /* Ajuste para compensar espacio derecho */
}

/* Titular principal */
.s24-title {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.s24-title img {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(3px 5px 10px rgba(0, 0, 0, 0.4));
}

/* ==============================================
   SPINNER DE CARGA EN BOTONES
   ============================================== */

.s24-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.s24-btn-text,
.s24-btn-spinner {
    transition: opacity 0.3s ease;
}

.s24-btn.loading .s24-btn-text {
    opacity: 0;
}

.s24-btn.loading .s24-btn-spinner {
    display: inline-block !important;
    position: absolute;
}

/* Spinner SVG */
.s24-spinner {
    animation: s24-rotate 2s linear infinite;
    width: 30px;
    height: 30px;
}

.s24-spinner-path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: s24-dash 1.5s ease-in-out infinite;
}

@keyframes s24-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes s24-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Deshabilitar interacción cuando está cargando */
.s24-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .s24-spinner {
        width: 24px;
        height: 24px;
    }
}


/* Botones - LETRAS AMARILLAS, FONDO ROJO/TRANSPARENTE */
.s24-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.s24-btn {
    font-size: 42px;
    font-weight: 900;
    padding: 10px 80px;
    border: 5px solid #FFE500;
    background: transparent;
    color: #FFE500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0;
    border-radius: 10px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 180px;
}

.s24-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.s24-btn:active {
    transform: scale(0.98);
}

/* Texto informativo */
.s24-info-text {
    color: #FFF;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out 0.4s both;
    font-weight: 400;
}

.s24-info-text p {
    margin: 0;
}

/* Contenedor para sello y advertencia en línea */
.s24-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Advertencia legal */
.s24-warning {
    color: #FFF;
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    text-align: left;
}

.s24-warning p {
    margin: 0;
}

/* Sello */
.s24-seal {
    flex-shrink: 0;
}

.s24-seal img {
    width: 90px;
    height: auto;
    filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.4));
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Pantalla de bloqueo */
.s24-blocked-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.s24-blocked-body .s24-logo {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 30px;
}

.s24-blocked-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

.s24-blocked-title {
    font-size: 42px;
    color: #E31E24;
    margin-bottom: 30px;
    font-weight: bold;
    animation: fadeInDown 0.6s ease-out;
}

.s24-blocked-message {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out;
}

.s24-btn-exit {
    font-size: 24px;
    padding: 15px 60px;
    background: #E31E24;
    color: #FFF;
    border: none;
    animation: fadeInUp 1s ease-out;
    border-radius: 10px;
}

.s24-btn-exit:hover {
    background: #C41E3A;
    transform: scale(1.05);
}

.s24-blocked-info {
    margin-top: 30px;
    color: #666;
    font-size: 13px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .s24-elements-left img {
        height: 75vh;
    }
    
    .s24-elements-right img {
        height: 80vh;
    }
    
    .s24-content {
        margin-left: 100px;
    }
}

@media (max-width: 1200px) {
    .s24-elements-left img {
        height: 65vh;
    }
    
    .s24-elements-right img {
        height: 70vh;
    }
    
    .s24-title img {
        max-width: 600px;
    }
    
    .s24-content {
        margin-left: -40px;
    }
}

@media (max-width: 992px) {
    .s24-logo {
        top: 15px;
        right: 20px;
    }
    
    .s24-logo img {
        width: 150px;
    }
    
    .s24-elements-left img {
        height: 60vh;
    }
    
    .s24-elements-right img {
        height: 65vh;
    }
    
    .s24-title img {
        max-width: 550px;
    }
    
    .s24-btn {
        font-size: 38px;
        padding: 10px 70px;
        min-width: 170px;
    }
    
    .s24-info-text {
        font-size: 15px;
    }
    
    .s24-content {
        margin-left: -20px;
    }
}

/* MÓVIL - CENTRADO Y BOTELLA DERECHA OCULTA */
@media (max-width: 768px) {
    /* Logo centrado arriba */
    .s24-logo {
        top: 15px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .s24-logo img {
        width: 120px;
    }
    
    /* Botellas en esquina inferior izquierda */
    .s24-elements-left {
        left: 0;
        bottom: -10px;
        z-index: 4;
    }
    
    .s24-elements-left img {
        height: 28vh;
        max-height: 240px;
        width: auto;
    }
    
    /* Ocultar botella derecha (Botran) */
    .s24-elements-right {
        display: none;
    }
    
    /* Contenido centrado sin margin */
    .s24-content {
        padding: 0 20px;
        margin-left: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    
    .s24-title {
        margin-bottom: 20px;
    }
    
    .s24-title img {
        max-width: 85%;
    }
    
    /* Botones centrados */
    .s24-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-bottom: 18px;
    }
    
    .s24-btn {
        font-size: 30px;
        padding: 10px 50px;
        min-width: 180px;
        max-width: 260px;
        width: 90%;
        border-width: 4px;
    }
    
    .s24-info-text {
        font-size: 13px;
        line-height: 1.4;
        padding: 0 15px;
        margin-bottom: 18px;
    }
    
    .s24-info-text br {
        display: none;
    }
    
    /* Footer MÁS ABAJO */
    .s24-footer {
        position: absolute;
        bottom: 45px;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0 15px;
        z-index: 5;
        margin: 0;
    }
    
    /* Advertencia en el centro */
    .s24-warning {
        font-size: 9px;
        line-height: 1.2;
        text-align: center;
        flex: 1;
        order: 2;
    }
    
    /* Sello a la derecha */
    .s24-seal {
        order: 3;
    }
    
    .s24-seal img {
        width: 55px;
    }
    
    .s24-blocked-container {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .s24-blocked-title {
        font-size: 32px;
    }
    
    .s24-blocked-message {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .s24-logo {
        top: 12px;
    }
    
    .s24-logo img {
        width: 100px;
    }
    
    /* Botellas ajustadas */
    .s24-elements-left img {
        height: 26vh;
        max-height: 220px;
    }
    
    .s24-content {
        padding: 0 15px;
        margin-top: 40px;
    }
    
    .s24-title {
        margin-bottom: 18px;
    }
    
    .s24-title img {
        max-width: 90%;
    }
    
    .s24-buttons {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .s24-btn {
        font-size: 28px;
        padding: 10px 45px;
        max-width: 240px;
    }
    
    .s24-info-text {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .s24-footer {
        bottom: 40px;
        padding: 0 12px;
    }
    
    .s24-warning {
        font-size: 8px;
    }
    
    .s24-seal img {
        width: 50px;
    }
    
    .s24-blocked-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .s24-blocked-title {
        font-size: 26px;
    }
    
    .s24-blocked-message {
        font-size: 14px;
    }
    
    .s24-btn-exit {
        font-size: 20px;
        padding: 12px 40px;
    }
}

@media (max-width: 400px) {
    .s24-logo img {
        width: 90px;
    }
    
    .s24-elements-left img {
        height: 24vh;
        max-height: 200px;
    }
    
    .s24-btn {
        font-size: 26px;
        padding: 8px 40px;
    }
    
    .s24-info-text {
        font-size: 11px;
    }
    
    .s24-footer {
        bottom: -125px;
    }
    
    .s24-warning {
        font-size: 10px;
        margin-left: 85px;
    }
    
    .s24-seal img {
        width: 60px;
    }
}

/* Accesibilidad */
.s24-btn:focus {
    outline: 3px solid #FFF;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Mejoras para Safari */
@supports (-webkit-appearance: none) {
    .s24-btn {
        -webkit-appearance: none;
    }
}