/* Legendaerr Seasonal Popup – Styles */

#lasp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

#lasp-overlay.lasp-visible {
    opacity: 1;
}

#lasp-modal {
    background: var(--lasp-bg, #ffffff);
    color: var(--lasp-text, #1a1a1a);
    border-radius: 16px;
    padding: 40px 36px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#lasp-overlay.lasp-visible #lasp-modal {
    transform: translateY(0) scale(1);
}

/* ── Schließen-Button ── */
#lasp-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--lasp-text, #1a1a1a);
    opacity: 0.5;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 50%;
    transition: opacity 0.2s, background 0.2s;
}
#lasp-close:hover {
    opacity: 1;
    background: rgba(0,0,0,0.07);
}

/* ── Emoji ── */
.lasp-emoji {
    font-size: 52px;
    margin-bottom: 12px;
    line-height: 1;
    animation: lasp-bounce 0.6s ease 0.4s both;
}

@keyframes lasp-bounce {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ── Logo ── */
.lasp-logo-wrap {
    margin-bottom: 16px;
}
.lasp-logo-wrap img {
    max-height: 64px;
    max-width: 200px;
    object-fit: contain;
}

/* ── Text ── */
.lasp-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.25;
    color: var(--lasp-text, #1a1a1a);
}

.lasp-body {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 24px;
    color: var(--lasp-text, #1a1a1a);
    opacity: 0.85;
}

/* ── Buttons ── */
.lasp-btn {
    display: inline-block;
    background: var(--lasp-btn, #1d4ed8);
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: opacity 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
}
.lasp-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.lasp-dismiss {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--lasp-text, #1a1a1a);
    opacity: 0.45;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 6px;
    transition: opacity 0.2s;
}
.lasp-dismiss:hover {
    opacity: 0.7;
}

/* ── Mobile ── */
@media (max-width: 480px) {
    #lasp-modal {
        padding: 32px 20px 24px;
    }
    .lasp-title {
        font-size: 1.25rem;
    }
}
