body {
    background: #000;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background-image: url(bg2.png);
    background-repeat: no-repeat;
    background-position: bottom 100px left -100px;
    background-size: 25%;
    margin-bottom: 150px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "aviano-flare", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(90deg, #fff 0%, #e2bfa8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 0.04em;
}
.logo {
    display: block;
    margin: 50px auto 40px auto;
    max-width: 326px;
    width: 16vw;
    height: auto;
    z-index: 2;
    position: relative;
}
.hero-area {
    position: relative;
    height: 78vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    text-shadow: 1px 1px 20px #000;
    margin-top: -200px;
    z-index: 1;
    border-top: 5px solid #000;
    outline: 1px solid #dbcbc6;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-btn {
    font-family: "aviano-flare", sans-serif;
    font-size: 1.23rem;
    letter-spacing: 0.03em;
    box-shadow: 0 3px 14px rgba(0,0,0,0.11);
    border-radius: 30px;
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-btn:hover, .hero-btn:focus {
    box-shadow: 0 5px 24px rgba(0,0,0,0.21);
    text-decoration: none;
}
.section {
    max-width: 840px;
    margin: 64px auto 0 auto;
    padding: 0 24px;
}
.two-col-list {
    columns: 2;
    column-gap: 48px;
    margin-top: 1em;
}
.two-col-list li { margin-bottom: 1em; }
.event-types-list, .sets-apart-list { margin-left: 1.5em; }
.sets-apart-list { padding-left: 1em; margin-top: 1em; }
.quote-section {
    max-width: 840px;
    margin: 64px auto 0 auto;
    padding: 0 32px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('quote.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.quote-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(12, 11, 14, 0.7);
    z-index: 2;
}
.quote-content {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    padding: 64px 0;
    width: 100%;
}
.quote-content p {
    font-size: 1.7rem;
    font-weight: 300;
    margin-bottom: 22px;
    line-height: 1.4;
}
.quote-content footer {
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.05em;
    color: #e2bfa8;
}
.optin-section {
    background: rgba(20, 20, 20, 0.96);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    max-width: 840px;
    margin: 72px auto 32px auto;
    padding: 36px 30px 30px 30px;
}
.optin-section label { color: #fff; font-weight: 400; }
.btn-rosegold {
    background: linear-gradient(90deg, #e2bfa8 0%, #ffbba7 100%);
    color: #181818;
    border: none;
}
.btn-rosegold:hover {
    background: linear-gradient(90deg, #ffbba7 0%, #e2bfa8 100%);
    color: #181818;
}
.confirmation-section {
    max-width: 840px;
    margin: 60px auto 0 auto;
    padding: 50px 36px 36px 36px;
    background: rgba(20, 20, 20, 0.97);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    text-align: center;
}
.confirmation-section h2 { font-size: 2.5rem; margin-bottom: 22px; }
.confirmation-section p { font-size: 1.18rem; color: #e9e7e4; margin-bottom: 0; line-height: 1.8; }
.confirmation-section .return-link {
    display: inline-block; margin-top: 36px; color: #e2bfa8; text-decoration: underline; font-size: 1rem;
}
#eventPopup {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border: 1px solid #333;
    height: max-content;
    max-height: calc(90vh);
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: auto !important;
    inset: 0 !important;
    position: fixed !important;
}
#eventPopup::-webkit-scrollbar {
    display: none;
}
#eventPopup .b-close {
    position: absolute;
    right: 15px;
    top: 0;
    cursor: pointer;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.2s;
}
#eventPopup .b-close:hover { color: #fff; }

.section.side-by-side .sbs-container {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px;
}
.section.side-by-side .sbs-container section.content-img { width: calc(30% - 15px); }
.section.side-by-side .sbs-container section.content-img img {
    display: block; width: 100%; height: auto; object-fit: cover; border-radius: 8px;
}
.section.side-by-side .sbs-container section.content-text {
    width: calc(70% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section.side-by-side .sbs-container section.content-text .button {
    padding: 8px 48px; text-decoration: none; font-weight: 500; border-radius: 0.375rem; text-align: center;
}
.sbs-container .sets-apart-list { margin-top: 0; margin-bottom: 2rem; }

.section.side-by-side .sbs-container:not(:last-of-type) {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #111;
}

.ticket-verification {
    margin-top: 20px;
    padding: 15px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #111;
}

.waiver-label {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    align-items: flex-start;
    grid-gap: 10px;
}

.waiver-checkbox {
    position: relative;
    top: 3px;
}

.waiver-label a {
    color: #FFF;
    text-decoration: underline;
}

.waiver-label a:hover,
.waiver-label a:focus {
    color: #ffbba7;
}

.ticket-btn-wrapper {
    display: none;
}

.ticket-btn-wrapper.is-active {
    display: block;
}

.content-img .lightbox-trigger {
    transition: all 0.3s;
}

.content-img .lightbox-trigger:hover,
.content-img .lightbox-trigger:focus {
    opacity: 0.75;
    transition: all 0.3s;
}

.btn-group .button {
    width: 100% !important;
}

.btn-group {
    flex-direction: column;
    grid-gap: 10px;
}

@media (max-width: 900px) {
    .section { max-width: 99vw; }
    .two-col-list { columns: 1; }
    .hero-area { margin-top: 0 !important; }
}
@media (max-width: 767px) {
    .logo { max-width: 204px; margin: 8px auto; }
    h1 { margin-top: -80px; }
    section.hero-area { margin-top: -144px; }
    img#heroBg1 { object-position: right; }
    .quote-section { padding: 36px 10vw; min-height: 200px; }
    .quote-content p { font-size: 1.08rem; }
    .section.side-by-side .sbs-container section.content-img,
    .section.side-by-side .sbs-container section.content-text { width: 100%; }
    #eventPopup { padding: 45px 20px 30px; }
}
@media (min-width: 768px) and (max-width: 1450px) {
    .logo { margin: 10px auto 100px; }
}