/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close,
.modal-close-member,
.modal-close-sponsor {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--muted-foreground);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close-member:hover,
.modal-close-sponsor:hover {
    color: var(--foreground);
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.modal-message {
    font-size: 1.125rem;
    color: var(--foreground);
    line-height: 1.6;
}

.modal-body {
    font-size: 1rem;
    color: var(--foreground);
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 0.75rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body a {
    color: var(--primary);
    text-decoration: underline;
}

