* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 520px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
}

.status-indicator {
    width: 16px;
    height: 16px;
    background: #4ade80;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.subtitle {
    font-size: 0.95rem;
    color: #a0a0b8;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
}

.label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8888a0;
    margin-bottom: 0.35rem;
}

.value {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #d0d0e0;
}

.value.success {
    color: #4ade80;
}

.footer-note {
    font-size: 0.85rem;
    color: #6b6b80;
}
