/* Wake-up Modal Styles */
#wakeup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

#wakeup-modal.fade-out {
    animation: fadeOut 0.3s ease-out;
}

.wakeup-overlay {
    width: 100%;
    height: 100%;
    background: rgba(27, 39, 50, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wakeup-content {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wakeup-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--border);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wakeup-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.wakeup-content p {
    color: var(--text-soft);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.wakeup-progress {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.wakeup-progress-bar {
    height: 100%;
    background: var(--accent-grad);
    border-radius: 10px;
    transition: width 0.3s ease-out;
    width: 0%;
    position: relative;
    overflow: hidden;
}

.wakeup-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .wakeup-content {
        padding: 2.5rem 2rem;
    }
    
    .wakeup-content h3 {
        font-size: 1.25rem;
    }
}
