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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
    background: url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-title {
    font-size: 3rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-bottom: 1rem;
}

.divider {
    border: none;
    border-top: 2px solid #fff3;
    width: 60%;
    margin: 1.5rem auto;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #eee;
}

.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.newsletter label {
    font-size: 1rem;
    margin-right: 0.5rem;
}
.newsletter input[type="email"] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    outline: none;
}
.newsletter button {
    background: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.newsletter button:hover {
    background: #fff;
    color: #2c3e50;
}

.countdown-section {
    width: 100%;
    margin-bottom: 2rem;
}
.countdown-label {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1rem;
}
.countdown > div {
    text-align: center;
}
.countdown span {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
}
.cd-label {
    font-size: 1rem;
    color: #fff9;
    margin-top: 0.2rem;
}

.social-icons {
    margin: 2rem 0 1rem 0;
}
.social-icons a {
    color: #fff;
    background: #2228;
    margin: 0 0.3rem;
    padding: 0.6rem 0.8rem;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.social-icons a:hover {
    background: #fff;
    color: #2c3e50;
}

footer {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #fff9;
}

.contact-link {
    display: inline-block;
    margin: 1.5rem 0 2.5rem 0;
    color: #fff;
    background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
    border: none;
    border-radius: 30px;
    padding: 0.9rem 2.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    box-shadow: 0 4px 18px 0 rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
}
.contact-link:hover {
    background: linear-gradient(90deg, #feb47b 0%, #ff7e5f 100%);
    color: #2c3e50;
    box-shadow: 0 6px 24px 0 rgba(0,0,0,0.18);
    transform: translateY(-2px) scale(1.04);
}

.contact-card {
    background: rgba(255,255,255,0.13);
    padding: 2.2rem 2rem 1.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    margin: 2rem 0 2.5rem 0;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-message {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    text-align: center;
}
.contact-email {
    display: inline-block;
    color: #ff7e5f;
    background: #fff;
    border-radius: 22px;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0.2rem;
}
.contact-email:hover {
    background: #ff7e5f;
    color: #fff;
}

@media (max-width: 600px) {
    .main-title { font-size: 2rem; }
    .countdown { gap: 1rem; }
    .container { padding: 1rem; }
} 