/* Basic Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d1117; /* Dark background */
    color: #e6e6e6; /* Light text color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    background-color: #1a202c; /* Slightly lighter dark container */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 40px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

/* Header */
.header {
    margin-bottom: 40px;
}

.logo {
    width: 120px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 15px;
    animation: floatLogo 3s ease-in-out infinite; /* Logo animation */
}

h1 {
    font-size: 3.5em;
    color: #4CAF50; /* Green from the logo */
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #8aff8a; /* Lighter green */
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Content Sections */
.countdown-section, .notify-form-section {
    background-color: #2a303c;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.countdown-section h3, .notify-form-section h3 {
    font-size: 1.8em;
    color: #4CAF50;
    margin-bottom: 25px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3d4554;
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown-item span:first-child {
    font-size: 3em;
    font-weight: bold;
    color: #e6e6e6;
    margin-bottom: 5px;
    text-shadow: 0 0 8px rgba(230, 230, 230, 0.3);
}

.countdown-item span:last-child {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #b0b0b0;
}

/* Notify Form */
.notify-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    background-color: #3d4554;
    color: #e6e6e6;
    font-size: 1.1em;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input[type="email"]::placeholder {
    color: #b0b0b0;
}

.notify-form input[type="email"]:focus {
    border-color: #8aff8a;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.notify-form button {
    width: 100%;
    padding: 15px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.notify-form button:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
}

.notify-form button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 15px;
    font-size: 1em;
    color: #fff; /* Default color, will be changed by JS */
}

/* Footer */
.footer {
    margin-top: 40px;
    border-top: 1px solid #3d4554;
    padding-top: 30px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #b0b0b0;
    font-size: 1.8em;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #4CAF50;
    transform: translateY(-3px);
}

.footer p {
    font-size: 0.9em;
    color: #909090;
    margin-bottom: 10px;
}

.footer a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #8aff8a;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2em;
    }
    .container {
        padding: 30px;
    }
    .countdown-item {
        min-width: 90px;
        padding: 15px 20px;
    }
    .countdown-item span:first-child {
        font-size: 2.2em;
    }
    .countdown-item span:last-child {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.6em;
    }
    p {
        font-size: 1em;
    }
    .container {
        padding: 20px;
    }
    .countdown {
        gap: 15px;
    }
    .countdown-item {
        padding: 10px 15px;
        min-width: 70px;
    }
    .countdown-item span:first-child {
        font-size: 1.8em;
    }
    .notify-form input,
    .notify-form button {
        font-size: 1em;
        padding: 12px 15px;
    }
    .social-links a {
        font-size: 1.5em;
        margin: 0 10px;
    }
}