/* Party page styles */

.party-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.decorations-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-blueball-party-1 {
    left: calc(50% - 120px);
    top: 200px;
    width: 1165px;
    height: 747px;
    background-image: radial-gradient(circle closest-side at center, rgba(60, 150, 255, 0.52) 0%, rgba(60, 150, 255, 0.28) 18%, rgba(60, 150, 255, 0.12) 42%, rgba(60, 150, 255, 0.06) 60%, rgba(60, 150, 255, 0.02) 82%, transparent 100%);
}

.decoration-blueball-party-2 {
    left: calc(50% - 1040px);
    top: 880px;
    width: 1121px;
    height: 739px;
    background-image: radial-gradient(circle closest-side at center, rgba(60, 150, 255, 0.52) 0%, rgba(60, 150, 255, 0.28) 18%, rgba(60, 150, 255, 0.12) 42%, rgba(60, 150, 255, 0.06) 60%, rgba(60, 150, 255, 0.02) 82%, transparent 100%);
}

.decoration-blueball-blur-party-1 {
    left: -900px;
    top: -900px;
    width: 2000px;
    height: 2000px;
    background-image: radial-gradient(circle closest-side at center, rgba(60, 150, 255, 0.28) 0%, rgba(60, 150, 255, 0.14) 25%, rgba(60, 150, 255, 0.07) 50%, rgba(60, 150, 255, 0.03) 72%, transparent 100%);
}

.decoration-blueball-blur-party-2 {
    right: -600px;
    top: 1100px;
    width: 1200px;
    height: 1200px;
    background-image: radial-gradient(circle closest-side at center, rgba(60, 150, 255, 0.28) 0%, rgba(60, 150, 255, 0.14) 25%, rgba(60, 150, 255, 0.07) 50%, rgba(60, 150, 255, 0.03) 72%, transparent 100%);
}

.party-breadcrumbs {
    padding: 120px 0 0;
}

.party-breadcrumbs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
}

.party-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
}

.party-breadcrumbs-row .icon-home {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.party-breadcrumb:hover {
    color: var(--white-100);
}

.party-breadcrumb-divider {
    color: var(--text-secondary);
}

.party-breadcrumb-active {
    color: var(--text-primary);
}

.party-hero {
    padding: 80px 0 80px;
}

.party-hero-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--alfa-grey-1);
    border-radius: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    overflow: hidden;
    position: relative;
}

.party-hero-card::before {
    content: '';
    position: absolute;
    left: calc(33.33% - 1008px);
    top: calc(100% - 1008px);
    width: 2016px;
    height: 2016px;
    background: radial-gradient(circle at calc(50% + 50px) calc(50% - 30px), rgba(60, 150, 255, 0.25) 0%, rgba(60, 150, 255, 0.12) 12%, rgba(60, 150, 255, 0.06) 30%, rgba(60, 150, 255, 0.025) 50%, rgba(60, 150, 255, 0.008) 70%, rgba(60, 150, 255, 0.002) 88%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.party-hero-card > * {
    position: relative;
    z-index: 1;
}

.party-hero-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.party-title {
    font-size: 64px;
    line-height: 72px;
    overflow-wrap: anywhere;
}

.party-info-item > span:not(.party-info-icon),
.party-info-item > .party-schedule,
.party-info-item > .party-info-price-block {
    min-width: 0;
    flex: 1 1 auto;
}

.party-info-price-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.party-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.party-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: var(--text-primary);
}

.party-info-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}

.party-info-icon-btn .icon-btn-icon {
    width: 20px;
    height: 20px;
}

.party-info-icon-btn .icon-info {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.party-info-item .icon-info {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes party-tooltip-appear {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.party-price-tooltip {
    position: fixed;
    z-index: 1000;
    max-width: 320px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-secondary, #fff);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: pre-line;
    animation: party-tooltip-appear 0.15s ease-out forwards;
}

.party-info-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.party-info-icon .icon-calendar,
.party-info-icon .icon-clock-small,
.party-info-icon .icon-drop,
.party-info-icon .icon-price {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.party-info-icon .icon-location-pin {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: 2px;
}

.party-info-link {
    color: var(--text-placeholder);
    font-size: 14px;
}

.party-info-item--stack {
    align-items: flex-start;
}

.party-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 400;
}

.party-schedule-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: baseline;
    font-size: 20px;
    line-height: 28px;
}

.party-schedule-row strong {
    font-weight: 500;
    flex-shrink: 0;
    font-size: calc(100% / 1.1);
    line-height: 1.4;
}

.party-schedule-row span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

/* Wider text column + single-line rows on desktop (stack layout unchanged ≤1200px) */
@media (min-width: 1201px) {
    .party-hero-card {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    }

    .party-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: normal;
    }

    .party-info-item > span:not(.party-info-icon),
    .party-info-price-block > span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: normal;
    }

    .party-schedule-row {
        flex-wrap: nowrap;
    }

    .party-schedule-row span {
        white-space: nowrap;
        overflow-wrap: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.party-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.party-btn {
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    border: none;
}

.party-btn-primary {
    background-color: var(--bg-brand-dark);
    color: var(--text-primary);
    box-shadow: inset 6px 8px 9px 0px #ff1597, inset -6px -8px 9px 0px #ff1597;
}

.party-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.party-btn-large {
    font-size: 20px;
    line-height: 32px;
    padding: 16px 28px;
    min-width: 212px;
}

/* Buy pass (inline / bottom CTAs): neon text glow on interaction (same as header nav hover) */
a.party-btn[href*="eventType=pass"] {
    transition: color 0.3s, text-shadow 0.3s, box-shadow 0.3s ease;
}

a.party-btn[href*="eventType=pass"]:hover,
a.party-btn[href*="eventType=pass"]:active,
a.party-btn[href*="eventType=pass"]:focus-visible {
    color: var(--white-100);
    text-shadow: 0 0 10px rgba(22, 223, 253, 0.85), 0 0 22px rgba(22, 223, 253, 0.6), 0 0 36px rgba(22, 223, 253, 0.4);
}

.party-hero-media {
    position: relative;
    height: 100%;
    min-width: 0;
    cursor: pointer;
}

.party-hero-media--video {
    cursor: pointer;
}

.party-hero-media--video:focus-visible {
    outline: 2px solid var(--white-100);
    outline-offset: 6px;
}

.party-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.party-hero-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.party-hero-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.party-hero-play img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.party-section {
    padding: 120px 0 80px;
}

.party-section-title {
    text-align: center;
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 60px;
}

.party-section-heading {
    margin-bottom: 60px;
}

.party-section-heading .party-section-title {
    margin-bottom: 0;
}

.party-section-subtitle {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Party instructors & DJs: cards + edge fade, same width as hero */
.party-instructors-grid-wrapper {
    --party-edge-fade: 90px;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--party-edge-fade),
        #000 calc(100% - var(--party-edge-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--party-edge-fade),
        #000 calc(100% - var(--party-edge-fade)),
        transparent 100%
    );
}

/* At leftmost scroll: no left fade (first card fully visible) */
.party-instructors-grid-wrapper.at-start {
    -webkit-mask-image: linear-gradient(
        to right,
        #000 0,
        #000 var(--party-edge-fade),
        #000 calc(100% - var(--party-edge-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        #000 0,
        #000 var(--party-edge-fade),
        #000 calc(100% - var(--party-edge-fade)),
        transparent 100%
    );
}

/* At rightmost scroll: no right fade (last card fully visible) */
.party-instructors-grid-wrapper.at-end {
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--party-edge-fade),
        #000 calc(100% - var(--party-edge-fade)),
        #000 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--party-edge-fade),
        #000 calc(100% - var(--party-edge-fade)),
        #000 100%
    );
}

/* At both ends (few cards or centered): no fade */
.party-instructors-grid-wrapper.at-start.at-end {
    -webkit-mask-image: none;
    mask-image: none;
}

.party-instructors .class-instructor-card,
.party-djs .class-instructor-card {
    flex: 0 0 277px;
    border-radius: 12px;
}

.party-instructors .class-instructor-body,
.party-djs .class-instructor-body {
    padding: 18px;
    gap: 9px;
}

.party-instructors .class-instructor-body h3,
.party-djs .class-instructor-body h3 {
    font-size: 23px;
    line-height: 30px;
}

.party-instructors .class-instructor-body p,
.party-djs .class-instructor-body p {
    font-size: 13px;
    line-height: 20px;
}

.party-instructors .class-instructors-grid,
.party-djs .class-instructors-grid {
    gap: 23px;
    justify-content: safe center;
}

.party-ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
}

.party-ticket-intro h2 {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 16px;
}

.party-ticket-intro p {
    font-size: 24px;
    line-height: 32px;
    color: var(--text-secondary);
}

.party-ticket-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.party-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.party-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 9.33px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    pointer-events: none;
    flex-shrink: 0;
}

.party-feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.6));
}

.party-feature-text {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.party-feature h3 {
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}

.party-feature p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: var(--text-secondary);
}

.party-ticket-photos {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.party-photo {
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    height: 330px;
    position: relative;
    cursor: pointer;
}

.party-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.party-pricing {
    padding-top: 80px;
}

.party-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.party-pricing-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: 100%;
}

.party-pricing-left:not(.party-pricing-left--with-note) .party-card-price {
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.party-pricing-left:not(.party-pricing-left--with-note) .party-card-price-actions {
    align-items: flex-start;
}

.party-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--alfa-grey-1);
    border-radius: 20px;
    padding: 40px;
}

.party-card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.party-card-price::before {
    content: '';
    position: absolute;
    left: calc(33.33% - 1008px + 60px);
    top: calc(100% - 1008px);
    width: 2016px;
    height: 2016px;
    background: radial-gradient(circle at center, rgba(60, 150, 255, 0.25) 0%, rgba(60, 150, 255, 0.12) 12%, rgba(60, 150, 255, 0.06) 30%, rgba(60, 150, 255, 0.025) 50%, rgba(60, 150, 255, 0.008) 70%, rgba(60, 150, 255, 0.002) 88%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.party-card-price > * {
    position: relative;
    z-index: 1;
}

.party-card-price-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}

.party-card-label {
    font-size: 24px;
    line-height: 32px;
    color: var(--text-primary);
}

.party-card-value {
    font-size: 48px;
    line-height: 56px;
}

.party-card-note h3 {
    font-size: 32px;
    line-height: 40px;
}

.party-card-details h3 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
}

.party-card-details p {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
}

.party-gallery {
    padding-top: 120px;
}

.party-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 380px 380px 399px;
    grid-template-areas:
        "photo-a photo-b photo-c photo-c"
        "photo-d photo-d photo-e photo-f"
        "photo-g photo-g photo-h photo-h";
    gap: 32px;
}

.party-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
    cursor: pointer;
}

.party-gallery-item--wide {
    grid-column: span 2;
}

.party-gallery-item-a { grid-area: photo-a; }
.party-gallery-item-b { grid-area: photo-b; }
.party-gallery-item-c { grid-area: photo-c; }
.party-gallery-item-d { grid-area: photo-d; }
.party-gallery-item-e { grid-area: photo-e; }
.party-gallery-item-f { grid-area: photo-f; }
.party-gallery-item-g { grid-area: photo-g; }
.party-gallery-item-h { grid-area: photo-h; }

.party-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.party-gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* Mobile-only; carousel mode scroll controls (party + social pages) */
.event-photos-carousel-nav {
    display: none;
}

.party-location {
    padding-top: 120px;
    position: relative;
}

/* Glow arrows sit in .locations-title-row (style.css); no absolute offsets here */

.party-location-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.party-location-header h2 {
    font-size: 48px;
    line-height: 56px;
}

.party-location-decoration {
    width: 143px;
    height: 104px;
    display: inline-block;
    background-image: url('../images/decorations/decoration-glow-arrows.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.party-location-decoration-right {
    transform: rotate(180deg) scaleY(-1);
}

.party-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.party-map {
    border-radius: 16px;
    overflow: hidden;
    background-color: #8b8585;
    min-height: 360px;
}

.party-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.party-location-card {
    border-top: 2px solid var(--alfa-grey-2);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.party-location-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.party-location-title h3 {
    font-size: 32px;
    line-height: 40px;
}

.party-location-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 24px;
}

.party-location-detail:has(.party-location-copy-location) {
    align-items: center;
}

.party-location-detail .selectable-text {
    flex: 0 1 auto;
    min-width: 0;
}

.party-location-copy-location {
    flex-shrink: 0;
    margin-left: -8px;
}

.party-location-detail-place {
    margin-left: 32px;
    margin-top: -12px;
}

.party-location-detail-place .selectable-text {
    padding-left: 0;
}

.party-location-detail .icon-location-pin {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.party-location-detail .icon-email {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.party-cta {
    padding-bottom: 120px;
}

.party-cta-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--alfa-grey-1);
    border-radius: 16px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.party-cta-card--text-only {
    justify-content: center;
    text-align: center;
}

.party-cta-card::before {
    content: '';
    position: absolute;
    left: calc(33.33% - 1008px);
    top: calc(100% - 1008px);
    width: 2016px;
    height: 2016px;
    background: radial-gradient(circle at calc(50% + 50px) calc(50% - 30px), rgba(60, 150, 255, 0.25) 0%, rgba(60, 150, 255, 0.12) 12%, rgba(60, 150, 255, 0.06) 30%, rgba(60, 150, 255, 0.025) 50%, rgba(60, 150, 255, 0.008) 70%, rgba(60, 150, 255, 0.002) 88%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.party-cta-card > * {
    position: relative;
    z-index: 1;
}

.party-cta-card h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 0;
    max-width: 28ch;
}

.party-cta-card--text-only h2 {
    max-width: 36ch;
}

.party-cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .party-hero-card {
        grid-template-columns: 1fr;
    }

    .party-hero-media {
        order: -1;
        height: 360px;
    }

    .party-ticket-grid,
    .party-pricing-grid,
    .party-location-grid {
        grid-template-columns: 1fr;
    }

    .party-map {
        height: 350px;
        min-height: auto;
    }

    .party-ticket-photos {
        grid-template-columns: 1fr 1fr;
    }

    .party-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        grid-template-areas: none;
    }

    .party-gallery-item {
        height: 240px;
    }

    .party-gallery-item-a,
    .party-gallery-item-b,
    .party-gallery-item-c,
    .party-gallery-item-d,
    .party-gallery-item-e,
    .party-gallery-item-f,
    .party-gallery-item-g,
    .party-gallery-item-h {
        grid-area: auto;
    }
}

@media (max-width: 768px) {
    .party-title {
        font-size: 32px;
        line-height: 40px;
    }

    .party-hero-content {
        padding: 32px 24px;
    }

    .party-info-item {
        font-size: 14px;
        line-height: 20px;
    }

    .party-schedule-row {
        font-size: 14px;
        line-height: 20px;
    }

    .party-section {
        padding: 80px 0 60px;
    }

    .party-hero {
        padding: 40px 0 32px;
    }

    .party-section.party-ticket {
        padding-top: 40px;
    }

    /* Tighter gap above major section headings on small screens */
    .party-section.party-pricing,
    .party-section.party-instructors,
    .party-section.party-djs,
    .party-section.party-gallery,
    .party-section.party-location,
    .party-section.party-cta {
        padding-top: 32px;
    }

    .party-section.party-pricing .party-section-title {
        margin-bottom: 32px;
    }

    .party-section.party-instructors {
        padding-bottom: 48px;
    }

    .party-section-title,
    .party-location-header h2 {
        font-size: 32px;
        line-height: 40px;
    }


    .party-ticket-intro h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .party-ticket-intro p {
        font-size: 16px;
        line-height: 24px;
    }

    .party-feature h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .party-feature p {
        font-size: 14px;
        line-height: 20px;
    }

    .party-section-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .party-cta-card h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .party-ticket-photos {
        grid-template-columns: 1fr;
    }

    .party-card {
        padding: 24px;
    }

    .party-card-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .party-card-value {
        font-size: 32px;
        line-height: 40px;
    }

    .party-card-details p {
        font-size: 18px;
        line-height: 26px;
    }

    /* Memories gallery: one image per view, horizontal snap scroll */
    .party-gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        grid-template-columns: unset;
        grid-template-rows: unset;
        grid-template-areas: unset;
        width: 100%;
        scrollbar-width: thin;
    }

    .party-gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: min(300px, 52vh);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .party-gallery-item--wide {
        grid-column: unset;
    }

    .party-gallery-item-a,
    .party-gallery-item-b,
    .party-gallery-item-c,
    .party-gallery-item-d,
    .party-gallery-item-e,
    .party-gallery-item-f,
    .party-gallery-item-g,
    .party-gallery-item-h {
        grid-area: unset;
    }

    .party-gallery-action {
        display: none;
    }

    .event-photos-carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 16px;
    }

    .event-photos-carousel-nav .class-instructor-arrow {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        border: none;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: white;
    }

    .event-photos-carousel-nav .class-instructor-arrow .icon-btn-icon {
        width: 22px;
        height: 22px;
    }

    .event-photos-carousel-nav .class-instructor-arrow .icon-angle-left,
    .event-photos-carousel-nav .class-instructor-arrow .icon-angle-right {
        width: 22px;
        height: 22px;
        object-fit: contain;
        transition: transform 0.3s, opacity 0.3s;
    }

    .event-photos-carousel-nav .class-instructor-arrow:disabled {
        opacity: 0.4;
        cursor: default;
    }

    .party-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
    }

    .party-cta-card--text-only {
        align-items: center;
    }

    .party-cta-card-actions {
        align-self: stretch;
    }

    .party-cta-card-actions .party-btn {
        width: 100%;
    }

    /* Instructors & DJs: 2-column grid, no horizontal carousel */
    .party-instructors .party-instructors-grid-wrapper,
    .party-djs .party-instructors-grid-wrapper {
        overflow: visible;
        margin-bottom: 24px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .party-instructors .class-instructors-grid,
    .party-djs .class-instructors-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        overflow-x: visible;
        overflow-y: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
        justify-content: stretch;
        width: 100%;
    }

    .party-instructors .class-instructor-card,
    .party-djs .class-instructor-card {
        flex: none;
        min-width: 0;
        width: 100%;
        max-width: none;
        scroll-snap-align: none;
    }

    .party-instructors .class-instructors-actions,
    .party-djs .class-instructors-actions {
        display: none;
    }

    /* Contacts & Location under map: keep type scale aligned with social page */
    .party-location-title h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .party-location-detail {
        font-size: 16px;
        line-height: 24px;
    }

    .party-location-grid {
        gap: 40px;
    }

    .party-map {
        height: 350px;
        min-height: 350px;
    }

}
