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

body {
    font-family: 'Inter', sans-serif;
    background-image: url('MHA 15.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 32, 39, 0.85) 0%,
        rgba(32, 58, 67, 0.75) 50%,
        rgba(44, 83, 100, 0.85) 100%
    );
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.text-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(52, 211, 153, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.subtitle {
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.countdown-item:hover {
    transform: translateY(-8px);
    background: rgba(52, 211, 153, 0.2);
    border-color: rgba(52, 211, 153, 0.6);
    box-shadow: 0 12px 40px rgba(52, 211, 153, 0.3);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #34d399;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.875rem;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.notify-section {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.notify-text {
    font-size: 1.25rem;
    color: #f3f4f6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(52, 211, 153, 0.4);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.email-input::placeholder {
    color: #d1d5db;
}

.email-input:focus {
    border-color: #34d399;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(52, 211, 153, 0.3);
}

.notify-btn {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.notify-btn:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 211, 153, 0.5);
}

.notify-btn:active {
    transform: translateY(-1px);
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #d1d5db;
    font-size: 0.875rem;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    .coming-soon-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
        margin-bottom: 1rem;
    }
    
    .notify-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .countdown-container {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 85px;
        padding: 1.25rem 0.75rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Success and Error message styles */
.success-message {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

