/* ========================================== */
/* LOGIN - PANTALLA ÚNICA (SPLIT SCREEN)      */
/* ========================================== */

.access-screen {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.access-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Columna Izquierda: Info --- */
.access-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(0, 234, 255, 0.3);
    background: rgba(0, 234, 255, 0.05);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.access-badge i {
    font-size: 0.5rem;
}

.access-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.6rem;
    line-height: 1.3;
    color: var(--text-bright);
    margin-bottom: 20px;
}

.highlight-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}

.access-subtitle {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 35px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(0, 234, 255, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 234, 255, 0.08);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feature-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: var(--text-bright);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.access-help {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.support-card:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 234, 255, 0.06);
    transform: translateY(-2px);
}

.support-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 234, 255, 0.15);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.support-card:last-child .support-icon {
    background: #25D366;
    color: #fff;
}

.support-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-bright);
}

.support-card p {
    color: var(--text-dim);
    font-size: 0.75rem;
}

/* --- Columna Derecha: Tarjeta de Login --- */
.access-card {
    background-color: var(--panel-dark);
    border: 2px solid #001aff;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(4, 0, 255, 0.5),
        inset 0 0 50px rgba(4, 0, 255, 0.1);
    padding: 45px 40px;
}

.access-card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.access-logo {
    max-width: 220px;
    width: 100%;
}

.access-copy {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-top: 25px;
    letter-spacing: 1px;
}

/* --- Botón Menú VIP flotante --- */
.btn-back-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 30px;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-decoration: none;
    z-index: 100;
    transition: all 0.25s ease;
}

.btn-back-menu:hover {
    background: rgba(0, 234, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.3);
}

/* =========================================================
   📱 RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .access-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .access-card {
        order: -1;
    }

    .access-title {
        font-size: 2rem;
        text-align: center;
    }

    .access-subtitle {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .access-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 500px) {
    .access-screen {
        padding: 25px 15px;
    }

    .access-card {
        padding: 30px 22px;
    }

    .access-title {
        font-size: 1.7rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .btn-back-menu {
        top: 12px;
        left: 12px;
        padding: 8px 14px;
        font-size: 0.65rem;
    }
}

/* ========================================== */
/* PANTALLA DE CARGA (LOADER)                 */
/* ========================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-badge {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--neon-cyan);
    border-right-color: #b026ff;
    animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

.loader-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.loader-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 4px;
}

.loader-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--neon-cyan);
    animation: loader-dot 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
    background: #b026ff;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
    background: var(--neon-blue);
}

@keyframes loader-dot {
    0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 500px) {
    .loader-badge {
        width: 95px;
        height: 95px;
    }

    .loader-logo {
        width: 55px;
        height: 55px;
    }

    .loader-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

.divider-o {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.divider-o::before,
.divider-o::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.divider-o span {
    padding: 0 12px;
}

.google-btn-wrap {
    display: flex;
    justify-content: center;
}