#trend-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#trend-form {
    background: #fff; padding: 2rem; border-radius: 8px;
    max-width: 400px; width: 90%;
    display: flex; flex-direction: column; gap: 1rem;
}
#trend-form h3 {
    margin-bottom: 30px;
}
#trend-form p {
    font-size: 14px;
    line-height: 20px;
}