/* Scheduled Start System Styles */

/* Countdown Overlay */
#countdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.countdown-container {
    text-align: center;
    color: white;
    padding: 40px;
}

.countdown-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    font-size: 120px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 40px #00ff88, 0 0 80px #00ff88;
    margin: 30px 0;
    font-family: 'Monaco', 'Courier New', monospace;
    animation: pulse 1s ease-in-out infinite;
}

.countdown-container p {
    font-size: 18px;
    color: #b8c7d6;
    margin-top: 20px;
}

/* Quest Missed Overlay */
#quest-missed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease-out;
}

.quest-missed-container {
    text-align: center;
    color: white;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    max-width: 500px;
}

.quest-missed-container h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.quest-missed-container p {
    font-size: 18px;
    color: #b8c7d6;
    line-height: 1.6;
    margin: 20px 0 40px 0;
}

.missed-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.missed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Notification styles */
.quest-notification {
    animation: slideIn 0.3s ease-out;
}
