
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 3em;
    letter-spacing: 4px;
    font-weight: bold;
}

.soon {
    font-size: 1.5em;
    margin: 10px 0 30px 0;
}

.countdown {
    font-size: 2em;
    font-weight: bold;
}

/* Abstract food-like background animation */
body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05), transparent 40%);
    animation: drift 20s infinite linear;
    z-index: 1;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}
