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

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

body {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.status {
    font-size: 1rem;
    color: #666666;
    font-weight: 300;
    margin-bottom: 2rem;
}

.line {
    width: 40px;
    height: 1px;
    background-color: #111111;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #666, transparent);
    animation: slide 2s infinite;
}

@keyframes slide {
    100% { left: 100%; }
}

.subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999999;
}

footer {
    padding-bottom: 3rem;
    font-size: 0.75rem;
    color: #cccccc;
}