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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.countdown {
    margin: 40px 0;
}

.countdown h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#timer div {
    background: rgba(255,255,255,0.1);
    padding: 15px 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

#timer span {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    display: block;
}

.subscribe {
    margin: 30px 0;
}

.subscribe h2 {
    color: white;
    margin-bottom: 20px;
}

#subscriptionForm {
    display: flex;
    max-width: 400px;
    margin: 0 auto 15px;
    gap: 10px;
}

#email {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    outline: none;
}

button {
    padding: 12px 25px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover {
    background: #ff5252;
}

.social {
    margin: 30px 0;
}

.social h2 {
    color: white;
    margin-bottom: 20px;
}

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

.social-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s;
}

.social-link:hover {
    background: white;
    color: #667eea;
}

footer {
    margin-top: 40px;
    color: rgba(255,255,255,0.7);
}

footer a {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header h1 {
        font-size: 2rem;
    }

    #timer {
        flex-wrap: wrap;
    }
}

