body {
    margin: 0;
    overflow: hidden;
    background: #001b33;
    font-family: Arial, sans-serif;
}

.title {
    position: absolute;
    top: 40px;
    width: 100%;
    text-align: center;
    font-size: 70px;
    color: white;
    letter-spacing: 3px;
}

.coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: bold;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { color: #7cc7ff; }
    100% { color: #003a66; }
}

#warp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
