.coming-soon-shell {
    --cs-accent: #a855f7;
    --cs-accent-rgb: 168, 85, 247;
    --cs-secondary: #6366f1;
    --cs-secondary-rgb: 99, 102, 241;
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: calc(100vh - 180px);
    padding: clamp(28px, 5vw, 72px) 16px;
    overflow: hidden;
}

.coming-soon-shell--copy {
    --cs-accent: #c084fc;
    --cs-accent-rgb: 192, 132, 252;
    --cs-secondary: #38bdf8;
    --cs-secondary-rgb: 56, 189, 248;
}

.coming-soon-shell::before {
    position: absolute;
    z-index: -2;
    width: min(720px, 80vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(var(--cs-accent-rgb), 0.14) 0%, rgba(var(--cs-secondary-rgb), 0.06) 38%, transparent 70%);
    content: "";
    filter: blur(8px);
    pointer-events: none;
}

.coming-soon-shell::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0.7px, transparent 0.7px);
    background-size: 24px 24px;
    content: "";
    opacity: 0.16;
    -webkit-mask-image: radial-gradient(circle at center, #000 5%, transparent 70%);
    mask-image: radial-gradient(circle at center, #000 5%, transparent 70%);
    pointer-events: none;
}

.coming-soon-card {
    position: relative;
    width: min(100%, 720px);
    overflow: hidden;
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid rgba(var(--cs-accent-rgb), 0.24);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(21, 20, 33, 0.96), rgba(10, 10, 17, 0.96)),
        #0d0c15;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.025) inset,
        0 18px 50px rgba(var(--cs-accent-rgb), 0.08);
    text-align: center;
}

.coming-soon-card::before {
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--cs-accent-rgb), 0.95), transparent);
    content: "";
}

.coming-soon-card::after {
    position: absolute;
    top: -110px;
    right: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(var(--cs-accent-rgb), 0.08);
    content: "";
    filter: blur(45px);
    pointer-events: none;
}

.coming-soon-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border: 1px solid rgba(var(--cs-accent-rgb), 0.34);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(var(--cs-accent-rgb), 0.2), rgba(var(--cs-secondary-rgb), 0.09));
    box-shadow:
        0 14px 38px rgba(var(--cs-accent-rgb), 0.16),
        0 0 0 7px rgba(var(--cs-accent-rgb), 0.04);
    color: #e9d5ff;
}

.coming-soon-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 7px 13px;
    border: 1px solid rgba(var(--cs-accent-rgb), 0.24);
    border-radius: 999px;
    background: rgba(var(--cs-accent-rgb), 0.08);
    color: #d8b4fe;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.coming-soon-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cs-accent);
    box-shadow: 0 0 12px rgba(var(--cs-accent-rgb), 0.9);
}

.coming-soon-title {
    max-width: 620px;
    margin: 0 auto;
    color: #f8fafc;
    font-size: clamp(1.85rem, 4.4vw, 3.15rem);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.14;
}

.coming-soon-title-accent {
    background: linear-gradient(100deg, #ffffff 8%, #e9d5ff 48%, var(--cs-accent) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coming-soon-description {
    max-width: 585px;
    margin: 18px auto 0;
    color: #a8b1c2;
    font-size: clamp(0.92rem, 1.5vw, 1rem);
    line-height: 1.75;
}

.coming-soon-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin: 26px auto 0;
}

.coming-soon-highlight {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 600;
}

.coming-soon-highlight svg {
    width: 14px;
    height: 14px;
    color: var(--cs-accent);
    stroke: currentColor;
}

.coming-soon-update {
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 560px;
    margin: 30px auto 0;
    padding: 15px 17px;
    border: 1px solid rgba(var(--cs-accent-rgb), 0.14);
    border-radius: 14px;
    background: rgba(var(--cs-accent-rgb), 0.055);
    text-align: left;
}

.coming-soon-update-icon {
    display: grid;
    flex: 0 0 36px;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: rgba(var(--cs-accent-rgb), 0.13);
    color: #d8b4fe;
}

.coming-soon-update-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.coming-soon-update-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.coming-soon-update-copy strong {
    color: #e2e8f0;
    font-size: 0.83rem;
    font-weight: 700;
}

.coming-soon-update-copy span {
    color: #7f8a9d;
    font-size: 0.76rem;
    line-height: 1.5;
}

.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin-top: 25px;
}

.coming-soon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.coming-soon-action--primary {
    background: linear-gradient(135deg, #7c3aed, var(--cs-accent));
    box-shadow: 0 10px 24px rgba(var(--cs-accent-rgb), 0.2);
    color: #fff;
}

.coming-soon-action--secondary {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.035);
    color: #cbd5e1;
}

.coming-soon-action:hover {
    transform: translateY(-2px);
}

.coming-soon-action--primary:hover {
    box-shadow: 0 14px 30px rgba(var(--cs-accent-rgb), 0.32);
    color: #fff;
}

.coming-soon-action--secondary:hover {
    border-color: rgba(var(--cs-accent-rgb), 0.35);
    background: rgba(var(--cs-accent-rgb), 0.08);
    color: #fff;
}

.coming-soon-action:focus-visible {
    outline: 3px solid rgba(var(--cs-accent-rgb), 0.35);
    outline-offset: 3px;
}

html.light-theme .coming-soon-card {
    border-color: rgba(var(--cs-accent-rgb), 0.22);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 70px rgba(51, 38, 84, 0.13);
}

html.light-theme .coming-soon-title {
    color: #111827;
}

html.light-theme .coming-soon-title-accent {
    background: linear-gradient(100deg, #111827 8%, #6d28d9 65%, var(--cs-accent) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html.light-theme .coming-soon-description,
html.light-theme .coming-soon-highlight {
    color: #526075;
}

html.light-theme .coming-soon-highlight,
html.light-theme .coming-soon-action--secondary {
    border-color: rgba(30, 41, 59, 0.1);
    background: rgba(30, 41, 59, 0.035);
}

html.light-theme .coming-soon-update-copy strong {
    color: #293548;
}

html.light-theme .coming-soon-update-copy span {
    color: #64748b;
}

@media (max-width: 640px) {
    .coming-soon-shell {
        min-height: calc(100vh - 145px);
        padding: 22px 4px 32px;
    }

    .coming-soon-card {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .coming-soon-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .coming-soon-icon svg {
        width: 31px;
        height: 31px;
    }

    .coming-soon-description {
        line-height: 1.65;
    }

    .coming-soon-update {
        align-items: flex-start;
    }

    .coming-soon-actions {
        flex-direction: column;
    }

    .coming-soon-action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-action {
        transition: none;
    }
}
