/* Launched-mode unlock + login picker */

#campLaunchedModeModal.is-open,
#campLaunchedLoginModal.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10085;
}

#campLaunchedModeModal .camp-spotlight__panel--lm,
#campLaunchedLoginModal .camp-spotlight__panel--ll {
    width: min(440px, calc(100vw - 28px));
    max-width: 440px;
}

.lm-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 4px 8px rgba(22, 24, 29, 0.04),
        0 28px 64px rgba(22, 24, 29, 0.18);
}

.ll-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #1a1d24;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 8px rgba(22, 24, 29, 0.04),
        0 28px 64px rgba(0, 0, 0, 0.45);
}

.lm-card__close,
.ll-card__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #64748b;
    cursor: pointer;
}

.lm-card__hero {
    position: relative;
    padding: 36px 28px 24px;
    text-align: center;
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(34, 197, 94, 0.28) 0%, transparent 60%),
        linear-gradient(180deg, #0f1a14 0%, #132018 48%, #15241c 100%);
    color: #fff;
    overflow: hidden;
}

.lm-card__glow {
    position: absolute;
    left: 50%;
    top: -40px;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.45) 0%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.lm-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(74, 222, 128, 0.18);
    color: #86efac;
    font-size: 1.4rem;
}

.lm-card__kicker,
.ll-card__kicker {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
}

.lm-card__title,
.ll-card__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
}

.lm-card__lead,
.ll-card__lead {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0.85;
}

.lm-card__body {
    padding: 22px 22px 24px;
}

.lm-error {
    display: none;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.85rem;
    font-weight: 600;
}

.lm-error.is-visible { display: block; }

.lm-field { display: grid; gap: 6px; margin-bottom: 14px; }
.lm-field__label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}
.lm-field__control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
}
.lm-field__control i { color: #94a3b8; }
.lm-field__control input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 12px 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    outline: none;
}

.lm-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}
.lm-btn--primary {
    background: linear-gradient(180deg, #22c55e, #16a34a);
    color: #fff;
}
.lm-btn--primary:disabled { opacity: 0.7; cursor: wait; }

.ll-card__head {
    padding: 28px 24px 12px;
}
.ll-card__kicker { color: #ff8c33; }
.ll-card__title { color: #fff; }
.ll-card__lead { color: rgba(255, 255, 255, 0.65); }

.ll-card__list {
    display: grid;
    gap: 8px;
    padding: 8px 16px 20px;
}

.ll-card__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.ll-card__option:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 140, 51, 0.35);
    transform: translateY(-1px);
}
.ll-card__option-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 107, 0, 0.16);
    border: 1px solid rgba(255, 140, 51, 0.28);
    color: #ff8c33;
    flex-shrink: 0;
}
.ll-card__option-copy {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 2px;
}
.ll-card__option-copy strong {
    font-size: 0.92rem;
    color: #fff;
}
.ll-card__option-copy small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}
.ll-card__option > .bi-chevron-right {
    color: rgba(255, 255, 255, 0.35);
}

/* Header login dropdown — dark panel like Features */
.nav-launched-login {
    position: relative;
}
.nav-launched-login__toggle .nav-launched-login__chevron {
    font-size: 0.7rem;
    opacity: 0.8;
    transition: transform 0.2s ease;
}
.nav-launched-login.is-open .nav-launched-login__chevron {
    transform: rotate(180deg);
}
.nav-launched-login__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1200;
    min-width: 300px;
    padding: 10px;
    border-radius: 14px;
    background: #1a1d24;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.nav-launched-login__menu a {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px !important;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none;
    white-space: normal !important;
    background: transparent;
}
.nav-launched-login__menu a:hover {
    background: rgba(255, 107, 0, 0.15) !important;
    color: #fff !important;
}
.nav-launched-login__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(255, 107, 0, 0.16);
    border: 1px solid rgba(255, 140, 51, 0.28);
    color: #ff8c33;
    font-size: 0.95rem;
}
.nav-launched-login__menu a span:not(.nav-launched-login__icon) {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.nav-launched-login__menu a strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}
.nav-launched-login__menu a small {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.nav-mobile-launched-login {
    display: grid;
    gap: 4px;
    margin: 8px 0 4px;
}
.nav-mobile-launched-login__label {
    margin: 0 0 4px;
    padding: 0 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.nav-mobile-launched-login a {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

/* Login chooser modal — already dark above */

html[data-theme="dark"] .lm-field__control {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}
html[data-theme="dark"] .lm-field__control input {
    color: #fff;
}
