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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fafafa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 280px;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2b113b; /* Dark background of the feather base */
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.time-box {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    min-width: 120px;
    border-bottom: 5px solid #d900b1; /* Pink/Purple from feather */
}

.time {
    display: block;
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d900b1, #ffb200); /* Gradient matching the feather */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 8px;
    font-weight: 600;
}

.newsletter {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter p {
    margin-bottom: 20px;
    font-weight: 600;
    color: #2b113b;
}

form {
    display: flex;
    gap: 10px;
}

input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #d900b1;
}

button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #d900b1, #ffb200); /* Gradient matching the feather */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 0, 177, 0.3);
}

@media (max-width: 600px) {
    .countdown {
        gap: 10px;
    }
    .time-box {
        min-width: 90px;
        padding: 15px 10px;
    }
    .time {
        font-size: 2.2rem;
    }
    form {
        flex-direction: column;
    }
    h1 {
        font-size: 2rem;
    }
}
