@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --primary-text: #ffffff;
    --overlay-bg: rgba(0, 0, 0, 0.7);
}

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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/background.jpg') no-repeat center center/cover;
    color: var(--primary-text);
    font-family: 'Inter', sans-serif;
    text-align: center;
    line-height: 1.6;
}

.container {
    background: var(--overlay-bg);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 10px;
    width: min(95%, 1000px);
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    white-space: nowrap;
}

.coming-soon {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

/* Accessibility improvements */
:focus {
    outline: 3px solid #4A9EFF;
    outline-offset: 3px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .container {
        animation: none;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    .container {
        border: 2px solid currentColor;
    }
}

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