:root {
    --bg-color: #0A0A0A;
    --text-color: #FFFFFF;
    --accent-color: #C8941A;
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s ease-in-out;
}

.title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--accent-color);
}

.message {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.message .emphasis {
    font-weight: 400;
    color: #FFFFFF;
}

.separator {
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    border: none;
    margin: 0 auto 4rem auto;
    opacity: 0.5;
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 600px;
}

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

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .message {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}
