body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to top, #000, #3b0764);
    text-align: center;
    overflow: hidden;
    position: relative;
}

body, footer a, .subtitle {
    color: #fff;
}
.container, .countdown {
    display: flex;
    justify-content: center;
}
.title, .time-box .value, .notify-btn {
    font-weight: bold;
}
.countdown, .email-section, .footer {
    margin-top: 50px;
}
.email-input, .notify-btn {
    border-radius: 5px;
    border: none;
}
.background-object:nth-child(2) img, .background-object:nth-child(3) img, .background-object:nth-child(4) img {
    filter: invert(82%) sepia(27%) saturate(6124%) hue-rotate(359deg) brightness(102%) contrast(106%);
    opacity: 0.5;
}
.background-object:nth-child(2), .background-object:nth-child(3), .background-object:nth-child(4) {
    background-color: #ffffff00;
}

.container {
    height: 100vh;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 113px;
    height: 194px;
    margin-bottom: 50px;
    animation: float 3s infinite ease-in-out;
}

.title {
    font-size: 70px;
    background: linear-gradient(to right, #c084fc, #ec4899,  #ff0000);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.subtitle {
    font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    margin-top: 10px;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 300;
    max-width: 80%;
    animation: neonGlow 1.5s infinite alternate;
}

.countdown {
    gap: 20px;
}

.time-box {
    background: #2d0b4a;
    padding: 20px;
    border-radius: 10px;
    width: 80px;
}

.time-box .value {
    font-size: 30px;
    color: #ffc107;
}

.time-box .label {
    margin-top: 5px;
    font-size: 14px;
}

.email-input {
    padding: 10px;
    width: 250px;
    margin-right: 10px;
}

.notify-btn {
    padding: 10px 20px;
    background: #ffc107;
    cursor: pointer;
    transition: background 0.3s;
}

.notify-btn:hover {
    background: #e0a800;
}

.footer {
    font-size: 14px;
}

.footer a {
    color: #ffc107;
    text-decoration: none;
    margin: 0 10px;
    transition: all .2s ease-in-out;
}

.footer a:hover {
    color: #c0b38c;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}
footer a {
    text-decoration: underline;
}

.background-object {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.247);
    border-radius: 50%;
    animation: move 15s infinite ease-in-out;
}

.background-object:nth-child(1) {
    top: 50%;
    left: 15%;
    animation-duration: 15s;
}

.background-object:nth-child(2) {
    top: 10%;
    right: 20%;
    animation-duration: 18s;
}

.background-object:nth-child(2) img {
    width: 200px;
    height: 200px;
}

.background-object:nth-child(3) {
    bottom: 55%;
    left: 20%;
    animation-duration: 14s;
}

.background-object:nth-child(3) img {
    width: 100px;
    height: 100px;

}

.background-object:nth-child(4) {
    bottom: 25%;
    left: 30%;
    animation-duration: 12s;
}

.background-object:nth-child(4) img {
    width: 85px;
    height: 93.5px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px rgba(255,255,255,.8),0 0 20px rgba(255,255,255,.8),0 0 30px rgba(255,255,255,.8)
    }
    to {
        text-shadow: 0 0 20px rgba(255,255,255,.8),0 0 30px rgba(255,255,255,.8),0 0 40px rgba(255,255,255,.8)
    }
}