* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: #111;
    color: white;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 30px;
}

.coming-soon {
    max-width: 750px;
}

h1 {
    font-size: clamp(2.3rem, 7vw, 5rem);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.tagline {
    color: #8bd17c;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.line {
    width: 80px;
    height: 3px;
    background: #8bd17c;
    margin: 35px auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ddd;
}

.small {
    margin-top: 30px;
    color: #aaa;
}

.buttons {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons a {
    color: white;
    text-decoration: none;
    border: 2px solid #8bd17c;
    padding: 12px 22px;
    border-radius: 6px;

    transition: 0.2s;
}

.buttons a:hover {
    background: #8bd17c;
    color: #111;
}

footer {
    margin-top: 60px;
    color: #666;
    font-size: 0.9rem;
}