.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 70%);
}

.modal-content {
    position: relative;
    width: 100%;
    max-height: 90vh;
    background: var(--color-bg);
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    padding: 20px 20px 40px;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: rgb(255 255 255 / 10%);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-body {
    margin-top: 8px;
}

.modal-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 16px;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-info .card-type {
    margin-bottom: 8px;
}

.modal-info h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.modal-info .address {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.modal-info .stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.full-description {
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.full-description h3 {
    color: #fff;
    font-size: 22px;
    margin: 16px 0 10px;
}

.full-description ul {
    padding-left: 20px;
    margin: 8px 0;
}

.full-description li {
    margin-bottom: 4px;
}