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

body {
    background-color: #262126;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

body::before,
body::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(21, 82, 240, 0.35), transparent 65%);
    filter: blur(5px);
    z-index: 0;
    animation: float 30s ease-in-out infinite;
}

body::before {
    top: -20%;
    left: -10%;
}

body::after {
    bottom: -25%;
    right: -5%;
    background: radial-gradient(circle, rgba(103, 71, 103, 0.35), transparent 65%);
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(5%, -5%, 0) scale(1.1);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.brand-title {
    font-size: 150px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: lowercase;
    letter-spacing: 4px;
    background: linear-gradient(to right, #1552F0, #674767);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.time-display {
    font-size: 100px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1;
    background: linear-gradient(to right, #1552F0, #674767);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.soon-text {
    font-size: 75px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    opacity: 0.8;
    background: linear-gradient(to right, #1552F0, #674767);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    z-index: 1;
}

footer a {
    color: #1DA1F2;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 60px;
        letter-spacing: 2px;
    }

    .time-display {
        font-size: 50px;
    }
    
    .soon-text {
        font-size: 30px;
    }
}

