:root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #f1faee;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.logo h1 span {
    color: var(--primary);
    font-weight: 300;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 2px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
}

p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-item span {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.timer-item label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto 40px;
    gap: 10px;
}

.subscribe-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--primary);
}

.subscribe-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.3s ease;
}

.subscribe-form button:hover {
    background: #ff4d5a;
    transform: translateY(-2px);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ff4d5a;
    text-decoration: underline;
}

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

.social-links a {
    color: white;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-3px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .countdown {
        gap: 15px;
    }
    .timer-item span {
        font-size: 2rem;
    }
    .subscribe-form {
        flex-direction: column;
    }
    .subscribe-form button {
        padding: 12px;
    }
}
