body {
    margin: 0;
    min-height: 100vh;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 25%,
            #fff0a0 0%,
            #ffc84a 15%,
            #f28b1d 35%,
            #b64812 60%,
            #3a1608 100%
        );

    font-family: Arial, sans-serif;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.logo {
    width: 320px;
    max-width: 80vw;
    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.4))
        drop-shadow(0 0 30px rgba(255,220,120,0.4));
}

h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

p {
    max-width: 600px;
    line-height: 1.6;
}

.coming {
    margin: 30px 0;
    opacity: 0.8;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    background: #9b7b80;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.button:hover {
    background: #b09095;
}

.footer {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.footer p {
    margin: 0;
}