/* ================================
   WHAT'S NEW MODAL
   ================================ */
#whatsNewModal .whats-new-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

#whatsNewModal .whats-new-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 28px 24px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#whatsNewModal .whats-new-modal::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    filter: blur(30px);
    pointer-events: none;
}

#whatsNewModal .whats-new-emoji {
    font-size: 48px;
    margin-bottom: 12px;
}

#whatsNewModal .whats-new-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

#whatsNewModal .whats-new-version {
    font-size: 12px;
    color: var(--amber);
    font-weight: 700;
    margin-bottom: 20px;
}

#whatsNewModal .whats-new-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

#whatsNewModal .whats-new-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

#whatsNewModal .whats-new-feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#whatsNewModal .whats-new-feature-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

#whatsNewModal .whats-new-feature-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

#whatsNewModal .whats-new-cta {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--amber), #e8941a);
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}