/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Background Shape Animations */
.background-shape, .background-shape2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(70px);
    animation: float 10s ease-in-out infinite;
}

.background-shape {
    top: -100px;
    left: -150px;
}

.background-shape2 {
    bottom: -100px;
    right: -150px;
    animation-delay: 5s;
}

/* Floating Animation */
@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(50px); }
}

/* Body and Container */
body {
    background: linear-gradient(135deg, #3b3b3b, #ff5f6d);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 750px;
    width: 100%;
    animation: fadeIn 1.5s ease-in-out;
}

/* Logo Area */
.logo-area {
    margin-bottom: 25px;
}

.logo-area img {
    width: 100px;
    animation: bounce 1.2s infinite alternate;
}

.logo-area h1 {
    font-size: 50px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    animation: fadeInText 1.5s ease-in-out;
}

.highlight {
    color: #ff5f6d;
}

/* Main Title */
.coming-title {
    margin-top: 20px;
    font-size: 36px;
    font-weight: 700;
    animation: fadeInText 2s ease-in-out;
}

/* Subtitle */
.subtitle {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.8;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.countdown-block:hover {
    transform: scale(1.05);
}

.countdown span {
    font-size: 36px;
    font-weight: 700;
}

.countdown p {
    font-size: 14px;
    margin-top: 5px;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.subscribe-form input {
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    width: 70%;
    max-width: 350px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background 0.3s;
}

.subscribe-form input:focus {
    background: rgba(255, 255, 255, 0.2);
}

.subscribe-form button {
    padding: 15px 25px;
    background: #ff5f6d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s;
}

.subscribe-form button:hover {
    background: #ff3f4b;
    transform: scale(1.05);
}

/* Footer */
footer {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .coming-title {
        font-size: 28px;
    }
    .countdown {
        gap: 10px;
    }
    .countdown-block {
        padding: 15px;
    }
}
