/**
 * Under Attack mode - Challenge page styles
 *
 * @package Vigilante
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f0f0f0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.challenge-container {
    text-align: center;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
}

.site-name {
    font-size: 22px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #ddd;
    border-top-color: #888;
    border-radius: 50%;
    animation: vigilante-spin 0.8s linear infinite;
    margin: 0 auto 24px;
}

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

.message {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.message-sub {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.error-msg {
    display: none;
    margin-top: 20px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
}

noscript .error-msg {
    display: block;
}