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

.container {
    max-width: 800px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo h1 {
    font-size: 3rem;
    color: #e75480;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.content p {
    color: #666;
    margin-bottom: 30px;
}

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

.time-block {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    min-width: 100px;
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #e75480;
}

.time-block p {
    margin: 10px 0 0;
    font-size: 0.8rem;
    color: #666;
}

.newsletter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #e75480;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #ff6b9e;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #e75480;
}
