.hall {
    position: relative;
    max-width: 602px;
    margin: 0 auto;
    background: #181818;
    color: #fff;
    border-radius: 12px;
    padding: 16px;
}


.hall::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(
            to right bottom,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.02) 60%,
            transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.hall-title {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 24px;
}

.hall-img {
    width: 100%;
    border-radius: 16px;
    cursor: pointer;
}

.hallWrapper{
    margin-top: 20px;
    padding: 0 16px;
}

.modalHall {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    padding: 50px 16px;
    box-sizing: border-box;
}

.modal-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close {
    position: fixed;
    top: 16px;
    right: 16px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
}

.close:hover,
.close:focus {
    color: #bbb;
    background: rgba(255,255,255,0.1);
}

@media screen and (max-width: 728px) {
    .hall-img {
        /*max-width: 312px;*/
    }
}