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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    padding: 48px;
    text-align: center;
}

h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.status {
    display: inline-block;
    background: #48bb78;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.description {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.info-box {
    background: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 24px;
}

.info-box h2 {
    color: #2d3748;
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-box p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-box code {
    background: #edf2f7;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #667eea;
    font-size: 0.9rem;
}

.footer {
    color: #a0aec0;
    font-size: 0.875rem;
    margin-top: 32px;
}
