.info-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
}

.info-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.info-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s;
    cursor: default;
    padding: 0;
}

.info-modal-overlay.active .info-modal-content {
    transform: scale(1);
}

.info-modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    padding: 20px 28px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    border-radius: 24px 24px 0 0;
}

.info-modal-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #2D3436;
    margin: 0;
}

.info-modal-header .modal-close {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: background 0.2s;
    flex-shrink: 0;
}

.info-modal-header .modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.info-modal-body {
    padding: 20px 28px 32px;
}

.info-modal-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #636E72;
    margin-bottom: 12px;
}

.info-modal-body p:last-child {
    margin-bottom: 0;
}
