:root {
    --ecs-accent: #c8a96b;
    --ecs-bg: #0d0f12;
    --ecs-card: rgba(18, 21, 26, 0.72);
    --ecs-border: rgba(255, 255, 255, 0.12);
    --ecs-text: #f7f3eb;
    --ecs-muted: #d1d5db;
    --ecs-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body.ecs-coming-soon-body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--ecs-bg);
    color: var(--ecs-text);
}

.ecs-coming-soon-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(200, 169, 107, 0.16), transparent 34%),
        linear-gradient(135deg, #08090b 0%, #101217 45%, #0a0b0f 100%);
}

.ecs-coming-soon-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.18;
    filter: grayscale(10%);
    transform: scale(1.04);
}

.ecs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.35), rgba(7, 8, 10, 0.75));
}

.ecs-shell {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.ecs-card {
    width: min(960px, 100%);
    text-align: center;
    background: var(--ecs-card);
    border: 1px solid var(--ecs-border);
    border-radius: 32px;
    box-shadow: var(--ecs-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 42px 28px;
}

.ecs-logo-wrap {
    margin-bottom: 18px;
}

.ecs-logo {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
}

.ecs-site-name,
.ecs-label {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 12px;
}

.ecs-site-name {
    color: var(--ecs-accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.ecs-label {
    display: inline-block;
    color: var(--ecs-accent);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(200, 169, 107, 0.35);
    background: rgba(200, 169, 107, 0.08);
    margin-bottom: 20px;
}

.ecs-headline {
    margin: 0 0 14px;
    font-size: clamp(2.3rem, 4vw, 4.6rem);
    line-height: 1.03;
    font-weight: 700;
}

.ecs-subheadline,
.ecs-footer,
.ecs-contact,
.ecs-admin-link a {
    font-family: Inter, Arial, sans-serif;
}

.ecs-subheadline {
    width: min(720px, 100%);
    margin: 0 auto 28px;
    color: var(--ecs-muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

.ecs-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 16px;
    margin: 32px auto 12px;
}

.ecs-time-box {
    position: relative;
    padding: 24px 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ecs-time-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 50%);
    pointer-events: none;
}

.ecs-number {
    display: block;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.ecs-unit {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
    font-family: Inter, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
}

.ecs-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.ecs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ecs-accent), #b8914d);
    color: #111;
    text-decoration: none;
    font-family: Inter, Arial, sans-serif;
    font-weight: 700;
    box-shadow: 0 12px 35px rgba(200, 169, 107, 0.28);
}

.ecs-button:hover {
    transform: translateY(-1px);
}

.ecs-contact,
.ecs-admin-link a {
    color: #fff;
    text-decoration: none;
}

.ecs-contact {
    display: inline-flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
}

.ecs-admin-link {
    margin-top: 22px;
    font-size: 0.95rem;
}

.ecs-admin-link a {
    color: var(--ecs-accent);
}

.ecs-footer {
    margin-top: 28px;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
}

.ecs-expired-message {
    margin-top: 16px;
    color: var(--ecs-accent);
    font-family: Inter, Arial, sans-serif;
    font-weight: 700;
}

@media (max-width: 767px) {
    .ecs-card {
        padding: 28px 18px;
        border-radius: 24px;
    }

    .ecs-countdown {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}
