/* ============================================================
   Secret Cabaret Show — overrides on top of styles.css
   ============================================================ */

:root {
  --cabaret-red: #b00f2a;
  --cabaret-red-soft: #d8344b;
  --cabaret-gold: #e8c372;
  --cabaret-deep: #160508;
}

body {
  background-image:
    radial-gradient(circle at 0 0, rgba(216, 52, 75, .14), transparent 38%),
    radial-gradient(circle at 100% 15%, rgba(36, 210, 231, .10), transparent 32%);
}

/* ---------- HERO ---------- */
.hero--cabaret {
  display: block;
  padding: 0 0 4rem;
  background: transparent;
}

.hero--cabaret::before,
.hero--cabaret::after {
  display: none;
}

.hero-poster {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.hero-poster-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(1.05);
  animation: posterIn 1.6s cubic-bezier(.16,.84,.34,1) both;
}

@keyframes posterIn {
  from { transform: scale(1.04); opacity: .4; filter: saturate(.9) blur(8px); }
  to   { transform: scale(1);    opacity: 1;  filter: saturate(1.05) blur(0); }
}

.hero-poster-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, var(--bg-dark) 92%);
  pointer-events: none;
}

.hero-content {
  transform: none;
  margin-top: -2.4rem;
  position: relative;
  z-index: 2;
  gap: 1.1rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-date {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .92rem;
  margin: 0;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  background: rgba(11, 5, 8, .78);
  border: 1px solid rgba(232, 195, 114, .35);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

.hero-cta {
  background-image: linear-gradient(120deg, var(--cabaret-red), #ff5468 70%, #ff8a6a);
  box-shadow: 0 14px 36px rgba(176, 15, 42, .42), inset 0 1px 0 rgba(255,255,255,.18);
  padding: 1rem 2.2rem;
  letter-spacing: .04em;
  font-size: 1.02rem;
}

@media (min-width: 640px) {
  .hero-content { margin-top: -3.2rem; }
  .hero-date { font-size: 1rem; padding: .75rem 1.3rem; }
}

/* ---------- CARDS LAYOUT ---------- */

.card--lead {
  border-color: rgba(232, 195, 114, .22);
}

.card--lead::after {
  background: linear-gradient(125deg, rgba(216, 52, 75, .14), transparent 42%);
}

.sub-text {
  margin-top: .75rem;
  color: #c9ccd5;
  font-size: 1rem;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(6, 1fr); }
  .cards > .card:nth-child(1) { grid-column: span 6; }
  .cards > .card--lead         { grid-column: span 6; }
  .cards > .card:nth-child(3)  { grid-column: span 3; }
  .cards > .card:nth-child(4)  { grid-column: span 3; }
}

/* ---------- SEATING ---------- */

#seating {
  padding-top: 1rem;
  padding-bottom: 1.4rem;
}

.seating-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.seating-image-wrap {
  position: relative;
  display: block;
  width: min(540px, 100%);
  padding: .85rem;
  border-radius: 1.4rem;
  border: 1px solid var(--surface-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    var(--bg-card);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  font: inherit;
  color: inherit;
  text-align: left;
}

.seating-image-wrap:hover,
.seating-image-wrap:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(232, 195, 114, .35);
  box-shadow: 0 28px 70px rgba(216, 52, 75, .18);
  outline: none;
}

.seating-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .85rem;
  background: #fff;
}

.seating-image-hint {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(11, 5, 8, .82);
  border: 1px solid rgba(232, 195, 114, .35);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.seating-image-hint .zoom-icon {
  font-size: .95rem;
  line-height: 1;
}

.seating-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-muted);
}

.seating-legend li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.seating-legend strong {
  color: var(--text-light);
  font-feature-settings: "tnum";
  font-weight: 800;
}

.seating-legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0;
  border: 1px solid rgba(0,0,0,.25);
}

.seating-legend .dot--70 { background: #b3e6b3; box-shadow: 0 0 8px rgba(155, 227, 168, .5); }
.seating-legend .dot--60 { background: #f7e96b; box-shadow: 0 0 8px rgba(240, 220, 107, .5); }
.seating-legend .dot--50 { background: #f0b8e3; box-shadow: 0 0 8px rgba(232, 166, 214, .5); }

/* ---------- LIGHTBOX ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(4, 2, 4, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s ease;
  backdrop-filter: blur(8px);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lightbox-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 3.5rem 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: .6rem;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

@media (min-width: 720px) {
  .lightbox-img {
    max-height: calc(100vh - 6rem);
  }
}

.lightbox-close {
  position: fixed;
  top: .75rem;
  right: .75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(11, 5, 8, .85);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  transition: background .15s ease, transform .15s ease;
}
.lightbox-close:hover { background: rgba(216, 52, 75, .8); transform: scale(1.05); }

/* ---------- PAYMENT — methods ---------- */

#payment {
  padding-top: 2rem;
  background: linear-gradient(180deg, rgba(216, 52, 75, .05), transparent 30%);
}

.pay-method {
  width: min(820px, 100%);
  margin: 0 auto 2.5rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005)),
    var(--bg-card);
  border: 1px solid var(--surface-line);
  border-radius: 1.6rem;
  padding: 1.6rem 1.3rem 1.7rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}

.pay-method::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(216,52,75,.18), transparent 40%);
  opacity: .65;
}

.pay-method > * { position: relative; }

.pay-method-title {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: .35rem;
}

.badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: rgba(216, 52, 75, .15);
  border: 1px solid rgba(216, 52, 75, .4);
  color: #ff8095;
  vertical-align: middle;
}

.badge--mono {
  background: rgba(36, 210, 231, .12);
  border-color: rgba(36, 210, 231, .35);
  color: #75e5f1;
}

.pay-method-sub {
  color: var(--text-muted);
  font-size: .98rem;
  margin-bottom: 1.1rem;
}

.price-grid,
.mono-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
}

.price-tile,
.mono-tile {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .6rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(11, 12, 18, .55);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-light);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  text-align: left;
}

.price-tile:hover,
.mono-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  color: var(--text-light);
}

.price-tile-amount,
.mono-tile-eur {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.02em;
  font-feature-settings: "tnum";
  min-width: 3.2ch;
}

.price-tile-label,
.mono-tile-uah {
  color: var(--text-muted);
  font-size: .98rem;
  font-weight: 500;
}

.mono-tile-uah {
  color: #e7e9ee;
  font-weight: 700;
  font-size: 1.08rem;
  font-feature-settings: "tnum";
}

.price-tile-cta,
.mono-tile-cta {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--cabaret-red), #ff5468);
  color: #fff;
  white-space: nowrap;
}

.mono-tile-cta {
  background: linear-gradient(120deg, #09b6cf, var(--accent2));
}

.price-tile--vip,
.mono-tile--vip {
  border-color: rgba(232, 195, 114, .35);
  background:
    linear-gradient(180deg, rgba(232,195,114,.06), rgba(232,195,114,.01)),
    rgba(11, 12, 18, .65);
}

.price-tile--vip .price-tile-amount,
.mono-tile--vip .mono-tile-eur {
  color: var(--cabaret-gold);
}

/* Bizum tile */
.bizum-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(11, 12, 18, .55);
  color: var(--text-light);
  width: 100%;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.bizum-tile:hover,
.bizum-tile:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  outline: none;
}

.bizum-tile-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.bizum-tile-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .15rem;
  min-width: 0;
}

.bizum-tile-number {
  font-family: 'Manrope', sans-serif;
  font-feature-settings: "tnum";
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .01em;
  word-break: break-all;
}

.bizum-tile-name {
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 500;
}

.bizum-tile-copy {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text-light);
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.bizum-tile.is-copied .bizum-tile-copy {
  background: rgba(36, 210, 231, .2);
  border-color: rgba(36, 210, 231, .5);
  color: #b9f0f7;
}

@media (min-width: 640px) {
  .bizum-tile-number { font-size: 1.25rem; }
}

.revolut-extras {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
  align-items: center;
}

.revolut-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(11, 12, 18, .55);
  color: var(--text-light);
  font-weight: 600;
}

.revolut-link:hover { color: var(--text-light); border-color: rgba(255,255,255,.18); }

.revolut-link-icon { font-size: 1.05rem; }

.revolut-link-text {
  flex: 1;
  font-family: 'Manrope', sans-serif;
  font-feature-settings: "tnum";
  font-size: .98rem;
  word-break: break-all;
}

.revolut-copy {
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text-light);
  cursor: pointer;
  transition: background .2s ease;
}

.revolut-copy:hover { background: rgba(255,255,255,.14); }
.revolut-copy.is-copied {
  background: rgba(36, 210, 231, .2);
  border-color: rgba(36, 210, 231, .5);
  color: #b9f0f7;
}

.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .9rem;
  border-radius: 1rem;
  background: #fff;
  width: fit-content;
  margin: 0 auto;
}

.qr {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr canvas,
.qr svg {
  display: block;
  width: 180px !important;
  height: 180px !important;
}

.qr-caption {
  color: #555;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 640px) {
  .price-grid,
  .mono-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-tile,
  .mono-tile {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    gap: .35rem;
    padding: 1.2rem 1rem 1.1rem;
    justify-items: center;
  }

  .price-tile-amount,
  .mono-tile-eur { font-size: 2rem; }

  .price-tile-cta,
  .mono-tile-cta { margin-top: .35rem; }

  .revolut-extras {
    grid-template-columns: 1fr auto;
    gap: 1.4rem;
  }

  .qr-block { margin: 0; }
}
