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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #052d47;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
}

.container {
    background: #1e293b;
    border-radius: 12px;
    padding: 48px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    color: white;
}

.logo-section {
    margin-bottom: 32px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #27536f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.subtitle {
    color: #94a3b8;
    font-size: 1.125em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.status-card {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 32px;
    display: inline-block;
    min-width: 200px;
}

.status-label {
    color: #64748b;
    font-size: 0.875em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.status-value {
    color: #1e293b;
    font-size: 1.25em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}



.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #27536f;
    color: #fff5e8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(39, 83, 111, 0.2);
}

.admin-link:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(39, 83, 111, 0.3);
    color: #fff5e8;
}



@media (max-width: 640px) {
    .container {
        padding: 32px 24px;
        margin: 16px;
    }

    h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }
}
