body {
    padding-top: 100px;
}

.releases-hero {
    text-align: center;
    padding: 6rem 5% 4rem;
    background: linear-gradient(to bottom, rgba(40,40,38,0.4) 0%, var(--bg) 100%);
}

.releases-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(166,134,76,0.6);
    letter-spacing: 0.15em;
}

.releases-hero p {
    font-size: clamp(1.4rem, 4vw, 2rem);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 10px;
    opacity: 0.9;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3.8rem 4rem;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0;
    justify-content: center;
}

@media (min-width: 900px) {
    .releases-grid:has(.concert-card:only-child) {
        grid-template-columns: minmax(420px, 860px);
        max-width: 920px;
    }
}

@media (max-width: 768px) {
    .releases-hero {
        padding: 4rem 5% 3rem;
    }
    .releases-hero h1 {
        font-size: clamp(3.3rem, 10vw, 7rem);
        padding: 0rem;
    }
    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

}

.concert-card {
    cursor: pointer;
}

.concert-date {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.concert-location {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.modal-backdrop-layer {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 30px 100px;
    box-sizing: border-box;
}

.concert-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10004;
    padding: 1.5rem 1rem;
    overflow-y: auto;
}

.concert-modal.active {
    display: flex;
}

.concert-modal-content {
    position: relative;
    background: rgba(30,30,28,0.97);
    border: 1px solid rgba(166,134,76,0.28);
    border-radius: 16px;
    padding: 2rem 2rem 2.3rem;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0,0,0,0.65);
    animation: fadeIn 0.35s ease;
}

@media (max-width: 768px) {
    .modal-backdrop-layer {
        padding: 30px 10px;
    }
    .concert-modal-content {
        padding: 0.8rem 1.0rem 1.3rem 0.6rem;
    }
}

.concert-modal-content::-webkit-scrollbar {
    width: 8px;
}

.concert-modal-content::-webkit-scrollbar-track {
    background: rgba(20,20,18,0.7);
    border-radius: 4px;
    margin: 4px;
}

.concert-modal-content::-webkit-scrollbar-thumb {
    background: rgba(166,134,76,0.35);
    border-radius: 4px;
    border: 2px solid rgba(20,20,18,0.7);
}

.concert-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(166,134,76,0.55);
}

.concert-modal-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(166,134,76,0.4) rgba(20,20,18,0.7);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 55px;
    height: 55px;
    background: rgba(40,40,38,0.92);
    border: 1px solid rgba(166,134,76,0.55);
    border-radius: 50%;
    color: var(--gold);
    font-size: 2.1rem;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    transition: all 0.22s ease;
    z-index: 10;
    box-shadow: 0 3px 14px rgba(0,0,0,0.5);
}

.modal-close:hover {
    background: rgba(166,134,76,0.22);
    transform: rotate(100deg) scale(1.15);
    box-shadow: 0 6px 22px rgba(166,134,76,0.38);
}

@media (max-width: 768px) {
    .modal-close {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        line-height: 44px;
        top: 10px;
        right: 0px;
    }
}


.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 2.7rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.modal-date {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 0.2rem;
}

.modal-location {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.modal-description {
    font-size: 1.15rem;
    line-height: 1.6;
}

.modal-description p {
    margin-bottom: 1.3rem;
    text-align: justify;
}

.modal-tickets {
    display: block;                   
    width: fit-content;
    margin: 2rem auto 0; 
    min-width: 240px;
    padding: 1.15rem 3.2rem;
    background: var(--gold);
    color: var(--bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(166,134,76,0.3);
}

.modal-tickets:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(166,134,76,0.45);
}

.modal-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@media (max-width: 479px) {
    .modal-tickets {
        margin: 2rem auto 0; 
        width: 60%; 
        padding: 1rem 1.5rem; 
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    
}
.modal-date {
    font-size: 1.45rem;
    text-align: left;
}
.modal-description {
    font-size: 1.1rem;
}
.modal-description p{
    text-align: left;
    hyphens: auto;
}
.concert-modal-content {
    max-height: 80vh;
}
}

.concerts-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://sun9-81.userapi.com/s/v1/ig2/ARvsvPyvPPcto8v6LMGW492-wvkOKz0J-QHv8_OY4GSJMOEdFSrZPFvQpbcNvfkHUv9yKVvty-ouEUSobHkLsuMM.jpg?quality=95&as=32x21,48x32,72x48,108x72,160x107,240x160,360x240,480x320,540x360,640x427,720x480,1080x720,1280x853,1440x960,2560x1707&from=bu&cs=1080x0');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) contrast(1);
    z-index: 1;
}