.rzc-wrap,
.rzc-wrap * {
    box-sizing: border-box;
}

.rzc-wrap {
    width: 100%;
    font-family: Montserrat, Arial, sans-serif;
    color: #19130f;
    background:
        radial-gradient(circle at 18% 0%, rgba(234, 183, 112, 0.18), transparent 34%),
        radial-gradient(circle at 88% 14%, rgba(255, 219, 167, 0.15), transparent 28%),
        linear-gradient(135deg, #0b080a 0%, #19100d 48%, #76502f 100%);
    padding: clamp(8px, 1.6vw, 18px);
    overflow: hidden;
}

.rzc-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(390px, 36vw, 540px);
    display: flex;
    align-items: center;
    border-radius: clamp(20px, 2.6vw, 34px);
    overflow: hidden;
    padding: clamp(22px, 3.8vw, 54px);
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.32);
    background: linear-gradient(135deg, #080607 0%, #170f0c 48%, #57391f 100%);
}

.rzc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: var(--rzc-bg-desktop);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 1;
}

.rzc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 24% 88%, rgba(228, 172, 101, 0.23), transparent 54%),
        linear-gradient(90deg, rgba(7, 6, 9, 0.99) 0%, rgba(8, 6, 8, 0.98) 28%, rgba(8, 6, 8, 0.86) 44%, rgba(8, 6, 8, 0.50) 59%, rgba(8, 6, 8, 0.16) 75%, rgba(8, 6, 8, 0.00) 100%);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 47%, rgba(0, 0, 0, 0.82) 57%, rgba(0, 0, 0, 0.22) 72%, transparent 84%);
    mask-image: linear-gradient(90deg, #000 0%, #000 47%, rgba(0, 0, 0, 0.82) 57%, rgba(0, 0, 0, 0.22) 72%, transparent 84%);
}

.rzc-hero__content {
    position: relative;
    z-index: 2;
    max-width: min(780px, 100%);
}

.rzc-badge,
.rzc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.rzc-badge::before,
.rzc-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.rzc-badge::before {
    background: #35f06f;
    box-shadow: 0 0 0 0 rgba(53, 240, 111, 0.72), 0 0 18px rgba(53, 240, 111, 0.86);
    animation: rzcLivePulse 1.35s ease-in-out infinite;
}

.rzc-kicker::before {
    background: #b77a3f;
    box-shadow: 0 0 18px rgba(183, 122, 63, 0.42);
}

@keyframes rzcLivePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(53, 240, 111, 0.64), 0 0 16px rgba(53, 240, 111, 0.86);
    }
    50% {
        opacity: 0.62;
        transform: scale(0.86);
        box-shadow: 0 0 0 9px rgba(53, 240, 111, 0), 0 0 26px rgba(53, 240, 111, 0.96);
    }
}

.rzc-title {
    margin: clamp(16px, 2.1vw, 24px) 0 0;
    color: #fff;
    font-size: clamp(44px, 6.2vw, 94px);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.072em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 20px 54px rgba(0, 0, 0, 0.48);
}

.rzc-subtitle {
    margin-top: clamp(13px, 1.8vw, 20px);
    color: #f5d8aa;
    font-size: clamp(25px, 3.4vw, 48px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.rzc-lead {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 560;
    line-height: 1.35;
    white-space: nowrap;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.rzc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-top: clamp(22px, 2.5vw, 30px);
}

.rzc-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 13px 21px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.1;
    text-decoration: none !important;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.rzc-btn:hover,
.rzc-btn:focus-visible {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.rzc-btn--primary {
    color: #14100d !important;
    background: linear-gradient(135deg, #ffe4ae 0%, #d99b50 100%);
    box-shadow: 0 15px 34px rgba(217, 155, 80, 0.32);
}

.rzc-btn--primary:hover,
.rzc-btn--primary:focus-visible {
    color: #14100d !important;
    box-shadow: 0 19px 40px rgba(217, 155, 80, 0.44);
}

.rzc-btn--ghost {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.rzc-btn--ghost:hover,
.rzc-btn--ghost:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18);
}

.rzc-btn--dark {
    min-height: 45px;
    padding-inline: 20px;
    color: #fff !important;
    background: #17110d;
    box-shadow: 0 12px 28px rgba(23, 17, 13, 0.18);
}

.rzc-btn--dark:hover,
.rzc-btn--dark:focus-visible {
    color: #fff !important;
    background: #2a1d15;
}

.rzc-concerts {
    margin-top: clamp(12px, 1.6vw, 18px);
    padding: clamp(20px, 3.5vw, 44px);
    border-radius: clamp(20px, 2.6vw, 32px);
    background:
        radial-gradient(circle at 100% 0%, rgba(230, 178, 105, 0.18), transparent 34%),
        #fbf7ef;
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.15);
}

.rzc-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(14px, 2vw, 24px);
    align-items: center;
    margin-bottom: clamp(18px, 2.4vw, 28px);
}

.rzc-section-head .rzc-kicker {
    color: #8c5a2d;
    background: rgba(140, 90, 45, 0.08);
    border-color: rgba(140, 90, 45, 0.2);
    backdrop-filter: none;
}

.rzc-section-head h2 {
    margin: 13px 0 0;
    color: #17110d;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.rzc-section-head p {
    position: relative;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 14px 18px 14px 46px;
    border-radius: 999px;
    color: rgba(23, 17, 13, 0.78);
    font-size: clamp(14px, 0.95vw, 16px);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    background: linear-gradient(135deg, #ffffff 0%, #fff4df 100%);
    border: 1px solid rgba(183, 122, 63, 0.23);
    box-shadow: 0 14px 32px rgba(84, 55, 31, 0.08);
}

.rzc-section-head p::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f6c980 0%, #a96b33 100%);
    box-shadow: 0 0 0 6px rgba(217, 155, 80, 0.14);
    transform: translateY(-50%);
}

.rzc-list {
    display: grid;
    gap: 11px;
}

.rzc-concert {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 108px auto;
    align-items: center;
    gap: 14px;
    padding: clamp(12px, 1.4vw, 15px);
    border-radius: 23px;
    background: #ffffff;
    border: 1px solid rgba(23, 17, 13, 0.08);
    box-shadow: 0 10px 28px rgba(45, 31, 21, 0.065);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.rzc-concert:hover {
    transform: translateY(-2px);
    border-color: rgba(183, 122, 63, 0.28);
    box-shadow: 0 16px 42px rgba(45, 31, 21, 0.11);
}

.rzc-date {
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 82px;
    padding: 10px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, #18110d 0%, #6d4526 100%);
    text-align: center;
}

.rzc-date__day {
    font-size: 33px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.rzc-date__month {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.1;
    text-transform: uppercase;
}

.rzc-date__year {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 750;
}

.rzc-concert__main h3 {
    margin: 0;
    color: #17110d;
    font-size: clamp(21px, 1.65vw, 27px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.rzc-concert__main p {
    margin: 7px 0 0;
    color: rgba(23, 17, 13, 0.56);
    font-size: 14px;
    line-height: 1.42;
}

.rzc-time {
    display: grid;
    gap: 4px;
    color: #17110d;
}

.rzc-time span {
    color: rgba(23, 17, 13, 0.5);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rzc-time strong {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.rzc-concert__action {
    justify-self: end;
}

.rzc-no-ticket {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    color: rgba(23, 17, 13, 0.52);
    font-weight: 800;
}

.rzc-empty {
    padding: clamp(24px, 4vw, 46px);
    border: 1px dashed rgba(23, 17, 13, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
    color: rgba(23, 17, 13, 0.64);
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
}

.rzc-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: clamp(12px, 1.6vw, 18px);
    padding: clamp(17px, 2.2vw, 28px);
    border-radius: clamp(20px, 2.6vw, 30px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(16px);
}

.rzc-contact span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rzc-contact strong {
    display: block;
    color: #fff;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.rzc-contact a {
    color: #ffe1a7 !important;
    font-size: clamp(21px, 2.4vw, 32px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-decoration: none !important;
    white-space: nowrap;
}

.rzc-contact a:hover,
.rzc-contact a:focus-visible {
    color: #fff !important;
    text-decoration: none !important;
}

@media (max-width: 1180px) {
    .rzc-concert {
        grid-template-columns: 90px minmax(0, 1fr) 102px;
    }

    .rzc-concert__action {
        grid-column: 2 / 4;
        justify-self: stretch;
    }

    .rzc-concert__action .rzc-btn {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .rzc-wrap {
        padding: 10px;
    }

    .rzc-hero {
        min-height: 600px;
        padding: 24px;
        align-items: flex-end;
    }

    .rzc-hero::before {
        background-image: var(--rzc-bg-mobile);
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .rzc-hero::after {
        background:
            linear-gradient(180deg, rgba(7, 6, 9, 0.00) 0%, rgba(7, 6, 9, 0.06) 35%, rgba(7, 6, 9, 0.76) 70%, rgba(7, 6, 9, 0.98) 100%);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .rzc-section-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .rzc-section-head p {
        justify-self: start;
        width: max-content;
        max-width: 100%;
    }

    .rzc-concert {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 13px;
    }

    .rzc-time {
        grid-column: 2;
    }

    .rzc-concert__action {
        grid-column: 1 / 3;
    }

    .rzc-contact {
        align-items: flex-start;
        flex-direction: column;
    }

    .rzc-contact a {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .rzc-hero,
    .rzc-concerts,
    .rzc-contact {
        border-radius: 22px;
    }

    .rzc-wrap {
        padding: 8px;
    }

    .rzc-hero {
        min-height: 610px;
        padding: 17px;
    }

    .rzc-hero::before {
        background-size: contain;
        background-position: center top;
    }

    .rzc-hero__content {
        width: 100%;
    }

    .rzc-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 20px;
    }

    .rzc-btn {
        width: 100%;
        min-height: 49px;
        padding-inline: 16px;
        white-space: normal;
    }

    .rzc-badge,
    .rzc-kicker {
        width: 100%;
        justify-content: center;
        padding-inline: 12px;
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .rzc-title {
        margin-top: 15px;
        font-size: clamp(40px, 14vw, 62px);
        letter-spacing: -0.064em;
    }

    .rzc-subtitle {
        font-size: clamp(25px, 7.6vw, 36px);
    }

    .rzc-lead {
        margin-top: 13px;
        font-size: clamp(10.5px, 2.7vw, 13px);
        line-height: 1.35;
        letter-spacing: -0.015em;
        white-space: nowrap;
    }

    .rzc-concerts {
        padding: 15px;
    }

    .rzc-section-head h2 {
        font-size: clamp(30px, 10vw, 42px);
    }

    .rzc-section-head p {
        min-height: 46px;
        padding: 12px 14px 12px 40px;
        border-radius: 999px;
        font-size: clamp(10.5px, 2.8vw, 13px);
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    .rzc-section-head p::before {
        left: 15px;
        top: 50%;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 5px rgba(217, 155, 80, 0.13);
    }

    .rzc-concert {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 20px;
    }

    .rzc-date {
        grid-template-columns: auto auto auto;
        justify-content: start;
        justify-items: start;
        align-items: baseline;
        gap: 7px;
        min-height: auto;
        padding: 12px 14px;
        border-radius: 17px;
    }

    .rzc-date__day,
    .rzc-date__month,
    .rzc-date__year {
        margin: 0;
    }

    .rzc-date__day {
        font-size: 32px;
    }

    .rzc-date__month {
        font-size: 13px;
    }

    .rzc-concert__main,
    .rzc-time,
    .rzc-concert__action {
        grid-column: auto;
    }

    .rzc-time {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        padding-top: 2px;
    }

    .rzc-contact {
        padding: 18px;
    }
}

@media (max-width: 380px) {
    .rzc-lead,
    .rzc-section-head p {
        white-space: normal;
    }

    .rzc-title {
        font-size: 38px;
    }

    .rzc-subtitle {
        font-size: 24px;
    }

    .rzc-hero {
        min-height: 575px;
    }
}

/* v1.0.6 — mobile LIVE TOUR badge fix */
@media (max-width: 900px) {
    .rzc-hero__content {
        position: static;
    }

    .rzc-hero .rzc-badge {
        position: absolute;
        top: clamp(14px, 4.2vw, 24px);
        left: clamp(14px, 4.2vw, 24px);
        z-index: 4;
        width: max-content;
        max-width: calc(100% - clamp(28px, 8.4vw, 48px));
        justify-content: flex-start;
        background: rgba(15, 10, 9, 0.72);
        border-color: rgba(255, 255, 255, 0.26);
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    }
}

@media (max-width: 560px) {
    .rzc-hero .rzc-badge {
        top: 14px;
        left: 14px;
        width: max-content;
        max-width: calc(100% - 28px);
        padding: 8px 13px;
        font-size: 10px;
    }
}
