* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0f0f;
    color: #e8e8e8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.25em;
    color: #999;
    margin-bottom: 48px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.content {
    background-color: #1a1a1a;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid #2a2a2a;
}

.content p {
    font-size: 1.125em;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.8;
}

footer {
    margin-top: 48px;
    color: #666;
    font-size: 0.9375em;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #ccc;
    text-decoration: underline;
}