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

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

body {
    background: #0a0a0a;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    letter-spacing: 0.5rem;
    font-weight: 700;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.divider {
    width: 50px;
    height: 2px;
    background: #ffffff;
    margin: 2rem auto;
    transform: scaleX(0);
    animation: expandLine 1s ease-out 0.5s forwards;
}

p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.coming-soon {
    margin-top: 1rem;
    font-size: clamp(0.8rem, 3vw, 1rem);
    color: #666;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

