:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --muted-color: #666666;
    --accent-color: #000000;
    --font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    box-sizing: border-box;
}

header {
    margin-bottom: 2rem;
}

.logo {
    max-width: 150px;
    height: auto;
}

main h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

main p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.description {
    color: var(--text-color);
}

.apology {
    color: var(--muted-color);
    font-weight: 300;
}

.thank-you {
    font-weight: 600;
    color: var(--accent-color);
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    main h1 {
        font-size: 2rem;
    }
    main p {
        font-size: 1rem;
    }
}
