.acs-coming-soon {
    min-height: 100vh;
    font-family: var(--acs-body-font);
    color: var(--acs-text-color);
    background: #05060c;
    position: relative;
    overflow: hidden;
}
.acs-coming-soon::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 134, 52, 0.34), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 104, 44, 0.24), transparent 55%),
        linear-gradient(180deg, rgba(8, 12, 22, 0.4), rgba(5, 8, 14, 0.65));
    pointer-events: none;
    z-index: 0;
}

.acs-aurora-frame {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: clamp(14px, 2.6vw, 34px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.acs-aurora-frame::before {
    content: "";
    position: absolute;
    inset: clamp(10px, 2vw, 28px);
    border: 1px solid rgba(255, 175, 109, 0.35);
    border-radius: 28px;
    pointer-events: none;
}

.acs-aurora-card {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    border: 1px solid rgba(255, 184, 124, 0.34);
    border-radius: 26px;
    padding: clamp(18px, 2.8vw, 34px);
    background: linear-gradient(145deg, rgba(9, 14, 27, 0.92), rgba(24, 28, 40, 0.89));
    backdrop-filter: blur(18px);
    text-align: center;
    box-shadow: 0 30px 70px rgba(3, 11, 22, 0.62);
}

.acs-logo {
    margin-bottom: 14px;
}

.acs-logo-img {
    max-height: 56px;
}

.acs-logo-text {
    color: var(--acs-heading-color);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--acs-heading-font);
}

.acs-heading {
    margin: 0;
    font-family: var(--acs-heading-font);
    font-size: clamp(38px, 6.5vw, 76px);
    color: var(--acs-heading-color);
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.acs-subheading {
    margin: 10px auto 0;
    max-width: 680px;
    font-size: clamp(17px, 2vw, 24px);
    color: var(--acs-text-color);
    opacity: 0.95;
}

.acs-message {
    margin: 12px auto 0;
    max-width: 640px;
    font-size: clamp(15px, 1.6vw, 21px);
    color: var(--acs-text-color);
    opacity: 0.92;
}

.acs-countdown {
    margin: 16px auto 0;
    justify-content: center;
    gap: 14px;
}

.acs-countdown-item {
    min-width: 90px;
    border-radius: 12px;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(35, 26, 22, 0.88), rgba(20, 16, 15, 0.92));
    border: 1px solid rgba(255, 171, 103, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 220, 191, 0.12);
}

.acs-countdown-number {
    color: var(--acs-heading-color);
    font-size: 34px;
}

.acs-countdown-label {
    color: var(--acs-text-color);
    opacity: 0.8;
}

.acs-newsletter-form {
    max-width: 560px;
    margin: 16px auto 0;
}

.acs-newsletter-heading,
.acs-newsletter-description {
    color: var(--acs-text-color);
}

.acs-newsletter-heading {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
}

.acs-newsletter-description {
    margin-bottom: 8px;
    font-size: 14px;
}

.acs-subscribe-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    background: linear-gradient(160deg, rgba(14, 23, 40, 0.9), rgba(11, 18, 32, 0.94));
    border: 1px solid rgba(255, 176, 112, 0.28);
    padding: 10px;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.acs-input {
    min-width: 260px;
    flex: 1 1 320px;
    border: 0;
    background: rgba(0, 0, 0, 0.15);
    color: var(--acs-heading-color);
    border-radius: 12px;
    order: 1;
    border: 1px solid rgba(255, 188, 132, 0.18);
}

.acs-input::placeholder {
    color: var(--acs-text-color);
    opacity: 0.78;
}

.acs-btn-subscribe {
    min-width: 170px;
    border-radius: 12px;
    background: var(--acs-accent-color);
    color: #ffffff;
    border: 1px solid var(--acs-accent-color);
    box-shadow: 0 12px 24px rgba(126, 54, 20, 0.42);
    order: 2;
}

.acs-gdpr-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
    color: var(--acs-text-color);
    font-size: 13px;
    line-height: 1.45;
    padding: 0 4px;
}

.acs-gdpr-consent input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--acs-accent-color);
    flex: 0 0 auto;
}

.acs-gdpr-consent span {
    display: inline-block;
    max-width: calc(100% - 30px);
}

.acs-btn-subscribe:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.acs-contact-info,
.acs-login-link,
.acs-footer {
    margin-top: 12px;
    justify-content: center;
}

.acs-footer {
    padding: 0;
}

.acs-social-links {
    justify-content: center;
    gap: 12px;
}

.acs-social-link {
    background: rgba(31, 22, 18, 0.78);
    border-color: rgba(255, 170, 101, 0.32);
    color: #ffe5cf;
}

.acs-social-link:hover {
    background: var(--acs-accent-color);
    border-color: var(--acs-accent-color);
    color: #fff8f2;
}

.acs-footer-text {
    margin-top: 8px;
    color: var(--acs-text-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .acs-btn-subscribe {
        width: 100%;
        min-width: 100%;
    }

    .acs-aurora-card {
        border-radius: 20px;
        padding: 22px 16px;
    }

    .acs-aurora-frame::before {
        inset: 14px;
        border-radius: 18px;
    }

    .acs-countdown-item {
        min-width: 72px;
    }

    .acs-input {
        min-width: 100%;
        flex-basis: 100%;
    }

    .acs-gdpr-consent {
        justify-content: center;
        text-align: center;
    }
}

.acs-social-row {
    margin-top: 12px;
}

.acs-social-row .acs-social-links {
    justify-content: center;
}
