/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.wrapper {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card Container */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Brand Title */
.brand {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

/* Status Text */
.status {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Info Text */
.info {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info a:hover {
    color: #2b6cb0;
    text-decoration: underline;
}

/* Loader Animation */
.loader {
    width: 48px;
    height: 48px;
    border: 4px solid #edf2f7;
    border-top: 4px solid #3182ce;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

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