.mu-launch-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: inherit;
}

.mu-launch-modal[hidden] {
    display: none !important;
}

.mu-launch-modal.is-open {
    animation: muLaunchFadeIn 0.35s ease;
}

.mu-launch-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
}

.mu-launch-modal__panel {
    position: relative;
    width: min(720px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    padding: 2rem 1.75rem 1.5rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(255, 215, 0, 0.45);
    background:
        radial-gradient(ellipse at top, rgba(139, 0, 0, 0.35) 0%, transparent 55%),
        linear-gradient(165deg, #1a0f0f 0%, #0d0d12 45%, #12121a 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 60px rgba(220, 38, 38, 0.25),
        0 24px 80px rgba(0, 0, 0, 0.65);
    color: #f5f5f5;
    text-align: center;
}

.mu-launch-modal__glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.mu-launch-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
    z-index: 2;
}

.mu-launch-modal__close:hover {
    background: rgba(239, 68, 68, 0.35);
    transform: scale(1.05);
}

.mu-launch-modal__badge {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.45);
    color: #fecaca;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mu-launch-modal__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(180deg, #fff8dc 0%, #ffd700 45%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.mu-launch-modal__subtitle {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.45;
}

.mu-launch-modal__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.mu-launch-modal__unit {
    min-width: 4.5rem;
    padding: 0.65rem 0.4rem 0.5rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.mu-launch-modal__num {
    display: block;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #fde68a;
    line-height: 1;
}

.mu-launch-modal__label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.mu-launch-modal__sep {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.5);
    padding-bottom: 1rem;
}

.mu-launch-modal__live {
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 0.85rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.mu-launch-modal__live strong {
    display: block;
    font-size: 1.2rem;
    color: #86efac;
    margin-bottom: 0.35rem;
}

.mu-launch-modal__live p {
    margin: 0;
    color: #d1fae5;
    font-size: 0.9rem;
}

.mu-launch-modal__live-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
    animation: muLaunchPulse 1.2s ease infinite;
    vertical-align: middle;
}

.mu-launch-modal__promo {
    display: flex;
    gap: 0.85rem;
    text-align: left;
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.35) 0%, rgba(69, 10, 10, 0.25) 100%);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.mu-launch-modal__promo-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.mu-launch-modal__promo-body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    color: #fecaca;
}

.mu-launch-modal__promo-body h3 em {
    font-style: normal;
    color: #fde68a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mu-launch-modal__promo-body p {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    line-height: 1.45;
}

.mu-launch-modal__perks {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    color: #d1d5db;
    line-height: 1.55;
}

.mu-launch-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
}

.mu-launch-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #fbbf24 0%, #d97706 55%, #b45309 100%);
    color: #1a0f0f !important;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mu-launch-modal__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.45);
    color: #1a0f0f !important;
}

.mu-launch-modal__later {
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0.25rem;
}

.mu-launch-modal__later:hover {
    color: #e5e7eb;
}

.mu-launch-modal__social-title {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #d1d5db;
}

.mu-launch-modal__social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.mu-launch-modal__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #f3f4f6 !important;
    transition: transform 0.15s ease, background 0.15s ease;
}

.mu-launch-modal__social-btn:hover {
    transform: translateY(-1px);
    color: #fff !important;
}

.mu-launch-modal__social-btn--wa {
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(7, 94, 54, 0.45);
}

.mu-launch-modal__social-btn--discord {
    border-color: rgba(88, 101, 242, 0.45);
    background: rgba(49, 51, 56, 0.65);
}

.mu-launch-modal__social-btn--ig {
    border-color: rgba(236, 72, 153, 0.4);
    background: rgba(88, 28, 135, 0.35);
}

.mu-launch-modal__social-btn--fb {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(30, 58, 138, 0.35);
}

.mu-launch-modal__fine {
    margin: 1rem 0 0;
    font-size: 0.72rem;
    color: #6b7280;
    line-height: 1.4;
}

@keyframes muLaunchFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes muLaunchPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

@media (max-width: 520px) {
    .mu-launch-modal__panel {
        padding: 1.5rem 1.1rem 1.25rem;
    }

    .mu-launch-modal__promo {
        flex-direction: column;
        text-align: center;
    }

    .mu-launch-modal__unit {
        min-width: 3.6rem;
    }

    .mu-launch-modal__sep {
        display: none;
    }

    .mu-launch-modal__countdown {
        gap: 0.45rem;
    }
}
