/* General body and container styling */
:root {
    --primary-color: #556080;
    --secondary-color: #2F3644;
    --accent-color: #6a89cc;
    --light-text-color: #f5f6fa;
    --dark-text-color: #2F3644;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--light-text-color);
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
}

/* Background gradient effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
}

.coming-soon-container {
    max-width: 900px;
    padding: 40px;
    background: rgba(47, 54, 68, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header and content styling */
.header .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.content .headline {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text-color);
    margin: 0 0 10px;
}

.content .tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.content .cta-text {
    font-size: 1.2rem;
    margin-top: 30px;
}

/* Countdown timer styling */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
    animation: pulse 2s infinite;
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.countdown-item p {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Subscription form styling */
.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.subscribe-form input {
    width: 60%;
    max-width: 300px;
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text-color);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #536fa6;
}

.thank-you-message {
    color: #4cd137;
    margin-top: 20px;
    font-weight: 700;
}

/* Footer and social media styling */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: var(--light-text-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 20px;
    }

    .header .logo {
        font-size: 1.8rem;
    }

    .content .headline {
        font-size: 2rem;
    }

    .content .tagline {
        font-size: 1rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item {
        padding: 10px 15px;
        min-width: 60px;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
        max-width: 300px;
    }
}