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

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --dark: #1a202c;
    --light: #f7fafc;
    --success: #48bb78;
    --border: #e2e8f0;
}

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

.container {
    max-width: 900px;
    width: 100%;
}

.hero {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 60px 40px;
    text-align: center;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 3em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5em;
    color: #718096;
    margin-bottom: 40px;
    font-weight: 300;
}

.content {
    text-align: left;
    margin-top: 40px;
}

.content p {
    font-size: 1.1em;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.status {
    background: var(--light);
    border-left: 4px solid var(--success);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.status h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.status ul {
    list-style: none;
}

.status li {
    padding: 8px 0;
    color: #2d3748;
    font-size: 1em;
}

.links {
    background: #edf2f7;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.links h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.links ul {
    list-style: none;
}

.links li {
    padding: 10px 0;
}

.links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.links a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.info {
    background: #f0f4f8;
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.info h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.info p {
    margin: 12px 0;
    font-size: 1em;
    color: #2d3748;
}

.info strong {
    color: var(--primary);
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: #718096;
}

.footer p {
    margin: 10px 0;
}

.footer small {
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 25px;
    }

    h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.2em;
    }

    .content p {
        font-size: 1em;
    }
}
