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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #470054;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

h1 {
    color: #470054;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.subtitle {
    color: #999;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #470054;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: 500;
}

a:hover {
    background: #2d0034;
}
