:root {
    --primary: #583ba7;
    --orange: #fa840e;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Inter, sans-serif;
    background: #1d1a21;
}

.text-primary {
    color: var(--primary);
}

.font-title {
    font-family: "Bebas Neue", sans-serif;
}

.font-subtitle {
    font-family: Montserrat, sans-serif;
}

.hero-dim {
    background: linear-gradient(rgba(29, 26, 33, 0.7), rgba(29, 26, 33, 0.85));
}

.hero-background {
    width: 100%;
    height: 100%;
    background-image: url("/images/coming-soon2.png");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.glass-card {
    background: rgba(253, 247, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 48px;
    padding: 0 18px;
    border-radius: 9999px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-button:hover {
    background: var(--orange);
    color: white;
}

.modal {
    opacity: 0;
    transition: opacity 200ms ease;
}

.modal.is-open {
    opacity: 1;
}

.modal-card {
    transform: translateY(12px) scale(0.96);
    transition: transform 200ms ease;
}

.modal.is-open .modal-card {
    transform: translateY(0) scale(1);
}

.countdown-card {
    display: flex;
    flex-direction: column;
    padding: 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

.countdown-label {
    font-size: 11px;
    font-weight: 700;
    color: #fed7aa;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.newsletter-brevo-form {
    background: transparent;
    padding: 0;
}

.newsletter-brevo-form .sib-form-container {
    padding: 0;
}

.newsletter-brevo-form #sib-container {
    max-width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
}

.newsletter-brevo-form .sib-form-block {
    padding: 0;
}

.newsletter-brevo-form .entry__label {
    display: block;
    margin-bottom: 8px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    text-align: left;
}

.newsletter-brevo-form .entry__field {
    border: 0;
}

.newsletter-brevo-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    outline: none;
}

.newsletter-brevo-form input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.newsletter-submit-button {
    width: 100%;
    margin-top: 16px;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    background: var(--orange);
    color: #ffffff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.newsletter-submit-button:hover {
    background: #d96f0a;
}

.newsletter-brevo-form .sib-form-message-panel {
    margin-bottom: 16px;
    max-width: 100%;
    border-radius: 8px;
}

.newsletter-brevo-form .cf-turnstile {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .countdown-card {
        padding: 20px 16px;
    }

    .countdown-label {
        font-size: 12px;
        letter-spacing: 0.18em;
    }
}
