:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-soft: #efefeb;
  --surface-strong: #e6e6df;
  --text: #11110f;
  --muted: #77776f;
  --line: rgba(17, 17, 15, 0.11);
  --line-strong: rgba(17, 17, 15, 0.2);
  --accent: #ef3c20;
  --accent-2: #ffb000;
  --header-bg: rgba(247, 247, 244, 0.82);
  --shadow: 0 16px 45px rgba(10, 10, 8, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1360px;
}

html[data-theme="dark"] {
  --bg: #0d0d0c;
  --surface: #151513;
  --surface-soft: #1c1c19;
  --surface-strong: #252520;
  --text: #f4f4ef;
  --muted: #9a9a90;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --header-bg: rgba(13, 13, 12, 0.82);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Vazirmatn", sans-serif;
  transition: background-color .35s ease, color .35s ease;
}

body,
button,
input {
  font-family: "Vazirmatn", sans-serif;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--header-bg);
}

.header-inner,
.location-wrap,
.hero,
.events-section,
.feature-strip,
.footer {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline-start: auto;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -11px;
  height: 2px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: 28px;
}

.theme-switch {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 11px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
}

.theme-switch__track {
  position: relative;
  width: 43px;
  height: 24px;
  border-radius: 999px;
  background: var(--surface-strong);
}

.theme-switch__thumb {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  transition: transform .3s ease;
}

.theme-switch__thumb svg {
  position: absolute;
  width: 11px;
  height: 11px;
  stroke-width: 1.7;
}

.moon-icon {
  opacity: 0;
}

html[data-theme="dark"] .theme-switch__thumb {
  transform: translateX(-19px);
}

html[data-theme="dark"] .sun-icon {
  opacity: 0;
}

html[data-theme="dark"] .moon-icon {
  opacity: 1;
}

.theme-label {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.login-button {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.login-button svg {
  width: 15px;
  height: 15px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.location-bar {
  border-top: 1px solid var(--line);
}

.location-wrap {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
}

.province-selector {
  position: relative;
  min-width: 220px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  direction: rtl;
  cursor: pointer;
  text-align: right;
  transition: border-color .2s ease, background .2s ease;
}

.province-selector:hover {
  border-color: var(--line-strong);
}

.province-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--text);
}

.province-icon svg {
  width: 16px;
  height: 16px;
}

.province-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.province-text small {
  color: var(--muted);
  font-size: 9px;
}

.province-text strong {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
}

.province-selector .chevron {
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: transform .2s ease;
}

.province-selector[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.location-message {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  color: var(--muted);
  direction: rtl;
  font-size: 11px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(239, 60, 32, .4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 60, 32, .32); }
  70% { box-shadow: 0 0 0 8px rgba(239, 60, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 60, 32, 0); }
}

.province-dropdown {
  position: absolute;
  top: 55px;
  left: 0;
  width: 290px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  direction: rtl;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .22s ease;
}

.province-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-search {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 11px;
  border-radius: 11px;
  background: var(--surface-soft);
}

.dropdown-search svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.dropdown-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 11px;
}

.dropdown-search input::placeholder {
  color: var(--muted);
}

.province-list {
  max-height: 260px;
  margin-top: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.province-option {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 11px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 11px;
}

.province-option:hover,
.province-option.selected {
  background: var(--surface-soft);
}

.province-option.selected::after {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.hero {
  min-height: 620px;
  padding: 66px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 650px;
  margin: 18px 0 20px;
  font-size: clamp(54px, 6.5vw, 96px);
  line-height: .99;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.hero-search {
  max-width: 600px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  padding: 7px 8px 7px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(10, 10, 8, .04);
}

.hero-search > svg {
  flex: none;
  width: 19px;
  height: 19px;
  color: var(--muted);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
}

.hero-search input::placeholder {
  color: var(--muted);
}

.hero-search button {
  height: 46px;
  min-width: 84px;
  border-radius: 11px;
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.hero-meta div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hero-meta strong {
  font-size: 16px;
}

.hero-meta span {
  color: var(--muted);
  font-size: 9px;
}

.meta-divider {
  width: 1px;
  height: 20px;
  background: var(--line-strong);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-card {
  width: min(100%, 520px);
  aspect-ratio: .91;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(-2.2deg);
}

.visual-top,
.visual-bottom {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .15em;
}

.stage-art {
  position: relative;
  flex: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 176, 0, .24), transparent 22%),
    radial-gradient(circle at 36% 70%, rgba(239, 60, 32, .24), transparent 30%),
    linear-gradient(135deg, #1c1c1b 0%, #050505 70%);
}

html[data-theme="dark"] .stage-art {
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 176, 0, .29), transparent 22%),
    radial-gradient(circle at 36% 70%, rgba(239, 60, 32, .3), transparent 30%),
    linear-gradient(135deg, #252522 0%, #070707 70%);
}

.stage-art::before,
.stage-art::after {
  content: "";
  position: absolute;
  inset: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.stage-art::before {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -110px;
}

.stage-art::after {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -80px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-1 {
  width: 115px;
  height: 115px;
  top: 14%;
  right: 13%;
  background: var(--accent);
  opacity: .86;
}

.orb-2 {
  width: 74px;
  height: 74px;
  top: 38%;
  left: 12%;
  background: var(--accent-2);
}

.orb-3 {
  width: 36px;
  height: 36px;
  bottom: 16%;
  right: 31%;
  border: 1px solid rgba(255,255,255,.5);
}

.stage-title {
  position: absolute;
  right: 36px;
  bottom: 42px;
  z-index: 2;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
}

.stage-title small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  letter-spacing: .22em;
}

.stage-title strong {
  font-size: clamp(44px, 4.4vw, 70px);
  line-height: .82;
  letter-spacing: -.06em;
}

.stage-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 11.8%,
    rgba(255,255,255,.035) 12%,
    transparent 12.2%
  );
}

.events-section {
  padding: 42px 0 82px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
}

.section-head h2 {
  margin: 7px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.filter-pills {
  display: flex;
  gap: 7px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.filter-pill {
  min-width: 56px;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  transition: .2s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--text);
  color: var(--bg);
}

.view-all {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 13px;
  color: var(--text);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.view-all svg {
  width: 14px;
  height: 14px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.event-card.hidden {
  display: none;
}

.event-poster {
  position: relative;
  aspect-ratio: .86;
  overflow: hidden;
  margin: 7px 7px 0;
  border-radius: 15px;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
}

.poster-one {
  background:
    radial-gradient(circle at 75% 16%, rgba(255,188,68,.95), transparent 23%),
    linear-gradient(145deg, #29110e 0%, #b62917 54%, #0b0b0b 100%);
}

.poster-two {
  background:
    radial-gradient(circle at 24% 23%, rgba(255,255,255,.22), transparent 20%),
    linear-gradient(140deg, #091a2a 0%, #16435f 52%, #db5d37 130%);
}

.poster-three {
  background:
    radial-gradient(circle at 70% 28%, rgba(244,255,122,.25), transparent 25%),
    linear-gradient(145deg, #1f1838 0%, #6f4aaf 54%, #12100e 100%);
}

.poster-four {
  background:
    radial-gradient(circle at 23% 25%, rgba(255,255,255,.16), transparent 22%),
    linear-gradient(150deg, #112919 0%, #1e7547 58%, #080b09 100%);
}

.poster-noise {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.16) 3px);
  mix-blend-mode: soft-light;
}

.poster-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  font-size: 7px;
  letter-spacing: .19em;
}

.poster-main {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 32px;
}

.poster-main small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.68);
  font-size: 7px;
  letter-spacing: .2em;
}

.poster-main strong {
  display: block;
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: .82;
  letter-spacing: -.065em;
}

.poster-date {
  position: absolute;
  right: 16px;
  top: 18px;
  writing-mode: vertical-rl;
  font-size: 7px;
  letter-spacing: .17em;
  opacity: .7;
}

.event-info {
  padding: 15px 15px 16px;
}

.event-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.event-title-row h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.event-title-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.heart-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: .2s ease;
}

.heart-button:hover,
.heart-button.active {
  border-color: rgba(239, 60, 32, .35);
  color: var(--accent);
}

.heart-button.active svg {
  fill: currentColor;
}

.heart-button svg {
  width: 16px;
  height: 16px;
}

.event-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.event-time {
  max-width: 52%;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.7;
}

.price {
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
}

.empty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--muted);
}

.empty-state h3 {
  margin: 0;
  font-size: 16px;
}

.empty-state p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  min-height: 150px;
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 24px 30px;
  border-left: 1px solid var(--line);
}

.feature:last-child {
  border-left: 0;
}

.feature-index {
  align-self: flex-start;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
}

.feature strong {
  font-size: 13px;
}

.feature p {
  max-width: 270px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
}

.footer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
}

.footer span,
.footer p,
.footer a {
  font-size: 9px;
}

.footer span,
.footer p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer p {
  direction: ltr;
  margin: 0;
  font-family: Arial, sans-serif;
  letter-spacing: .08em;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .hero-grid {
    gap: 38px;
  }

  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-main strong {
    font-size: 48px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-controls {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 780px) {
  .header-inner,
  .location-wrap,
  .hero,
  .events-section,
  .feature-strip,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    height: 72px;
    gap: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy small {
    display: none;
  }

  .theme-label,
  .login-button span {
    display: none;
  }

  .theme-switch {
    width: 48px;
    padding: 0;
    justify-content: center;
  }

  .login-button {
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .search-mobile {
    display: grid;
  }

  .location-wrap {
    height: 58px;
  }

  .province-selector {
    width: 100%;
    min-width: 0;
  }

  .location-message {
    display: none;
  }

  .province-dropdown {
    width: 100%;
    top: 51px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 8px;
  }

  .visual-card {
    width: min(92%, 480px);
  }

  .hero-meta {
    gap: 14px;
  }

  .hero-meta div {
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
  }

  .section-controls {
    align-items: flex-start;
    gap: 10px;
  }

  .filter-pills {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .view-all {
    display: none;
  }

  .event-grid {
    gap: 12px;
  }

  .poster-main strong {
    font-size: clamp(28px, 8vw, 42px);
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 112px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 0;
  }
}

@media (max-width: 540px) {
  .brand-copy strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 6px;
  }

  .search-mobile {
    display: none;
  }

  .hero-search {
    height: 58px;
    padding-left: 7px;
  }

  .hero-search button {
    min-width: 69px;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 200px;
  }

  .event-poster {
    aspect-ratio: auto;
    height: calc(100% - 14px);
    margin: 7px 7px 7px 0;
  }

  .poster-main {
    left: 12px;
    right: 12px;
    bottom: 20px;
  }

  .poster-main strong {
    font-size: 26px;
  }

  .event-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 17px 13px;
  }

  .event-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-time {
    max-width: none;
  }
}


/* TOP CONCERT SLIDER */
.top-slider{width:min(calc(100% - 80px),1180px);margin:24px auto 0}
.slider-track{position:relative;height:clamp(380px,43vw,520px);overflow:hidden;border-radius:26px;background:#111}
.slide{position:absolute;inset:0;opacity:0;visibility:hidden;transform:scale(1.025);transition:opacity .7s ease,transform 1.1s ease,visibility .7s ease;color:#fff;overflow:hidden}
.slide.active{opacity:1;visibility:visible;transform:scale(1)}
.slide-a{background:radial-gradient(circle at 74% 29%,rgba(255,181,72,.32),transparent 20%),radial-gradient(circle at 21% 85%,rgba(239,60,32,.25),transparent 28%),linear-gradient(115deg,#090909 4%,#32120d 45%,#a32617 100%)}
.slide-b{background:radial-gradient(circle at 72% 20%,rgba(150,219,255,.28),transparent 22%),radial-gradient(circle at 22% 80%,rgba(218,86,52,.25),transparent 25%),linear-gradient(115deg,#061018 3%,#12394f 52%,#191817 100%)}
.slide-c{background:radial-gradient(circle at 80% 20%,rgba(193,151,255,.3),transparent 23%),radial-gradient(circle at 22% 82%,rgba(255,206,77,.18),transparent 24%),linear-gradient(115deg,#0c0910 3%,#30234d 50%,#7547a2 100%)}
.slide:before,.slide:after{content:"";position:absolute;border:1px solid rgba(255,255,255,.14);border-radius:50%}
.slide:before{width:min(46vw,620px);aspect-ratio:1;left:-6%;bottom:-38%}
.slide:after{width:min(36vw,480px);aspect-ratio:1;right:7%;top:-26%}
.slide-content{position:absolute;z-index:2;right:clamp(26px,6vw,88px);bottom:clamp(55px,8vw,90px);max-width:660px}
.slide-meta{display:flex;align-items:center;gap:12px;margin-bottom:15px;color:rgba(255,255,255,.66);font-size:11px}
.live-badge{padding:6px 10px;border:1px solid rgba(255,255,255,.28);border-radius:999px;color:#fff;font:8px Arial,sans-serif;letter-spacing:.14em}
.slide-content h2{margin:0;font-size:clamp(50px,7vw,100px);line-height:.95;letter-spacing:-.055em}
.slide-content p{max-width:520px;margin:20px 0 0;color:rgba(255,255,255,.68);font-size:13px;line-height:2}
.slide-actions{display:flex;align-items:center;gap:18px;margin-top:26px}
.slide-primary{display:inline-flex;align-items:center;justify-content:center;min-width:112px;height:44px;padding:0 18px;border-radius:999px;background:#fff;color:#111;font-size:11px;font-weight:800}
.slide-actions span{color:rgba(255,255,255,.68);font-size:10px}
.slide-number{position:absolute;left:clamp(25px,4vw,60px);top:clamp(25px,4vw,52px);z-index:2;color:rgba(255,255,255,.45);font:11px Arial,sans-serif;letter-spacing:.18em}
.slider-controls{position:absolute;z-index:5;left:26px;bottom:25px;display:flex;align-items:center;gap:11px;direction:ltr}
.slider-arrow{width:40px;height:40px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.22);border-radius:50%;color:#fff;background:rgba(0,0,0,.12);backdrop-filter:blur(8px);cursor:pointer;font-size:20px}
.slider-dots{display:flex;gap:6px}
.slider-dot{width:20px;height:3px;padding:0;border-radius:99px;background:rgba(255,255,255,.3);cursor:pointer;transition:.25s}
.slider-dot.active{width:38px;background:#fff}
@media(max-width:780px){.top-slider{width:calc(100% - 28px);margin-top:14px}.slider-track{height:460px;border-radius:23px}.slide-content{right:24px;left:24px;bottom:80px}.slide-content h2{font-size:clamp(48px,15vw,74px)}.slide-content p{font-size:12px}.slider-controls{left:22px;bottom:23px}}
@media(max-width:520px){.slider-track{height:440px}.slide-meta{font-size:9px}.slide-content p{max-width:90%;margin-top:13px;font-size:10px}.slide-actions{margin-top:18px}}


/* =====================================================
   MODERN FOOTER
===================================================== */

.site-footer {
  position: relative;
  width: min(calc(100% - 48px), 1280px);
  margin: 70px auto 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--surface) 96%, transparent),
      color-mix(in srgb, var(--surface-2) 92%, transparent)
    );
}

.footer-container {
  position: relative;
  z-index: 2;
  padding: 52px 52px 24px;
}

.footer-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .5;
}

.footer-glow-one {
  width: 320px;
  height: 320px;
  right: -130px;
  top: -150px;
  background: rgba(239, 60, 32, .13);
}

.footer-glow-two {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -160px;
  background: rgba(255, 176, 0, .08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr .8fr .8fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.footer-logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--text);
  color: var(--bg);
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.footer-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-logo-copy strong {
  font-size: 15px;
  font-weight: 800;
}

.footer-logo-copy small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 7px;
  letter-spacing: .18em;
}

.footer-brand-block > p {
  max-width: 340px;
  margin: 21px 0 24px;
  color: var(--muted);
  font-size: 11px;
  line-height: 2.15;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column-title {
  position: relative;
  margin-bottom: 9px;
  padding-bottom: 12px;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.footer-column > a:not(.footer-contact-item) {
  color: var(--muted);
  font-size: 10px;
  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-column > a:not(.footer-contact-item):hover {
  color: var(--text);
  transform: translateX(-3px);
}

.footer-contact {
  gap: 11px;
}

.footer-contact-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 65%, transparent);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.footer-contact-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.contact-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--soft);
  color: var(--text);
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item small {
  color: var(--muted);
  font-size: 8px;
}

.footer-contact-item strong {
  overflow: hidden;
  color: var(--text);
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-divider {
  height: 1px;
  margin: 42px 0 22px;
  background: var(--line);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 8px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .5;
}

.footer-bottom a {
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: var(--text);
}

@media (max-width: 1050px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact .footer-column-title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-footer {
    width: calc(100% - 28px);
    margin-top: 50px;
    border-radius: 24px;
  }

  .footer-container {
    padding: 34px 24px 20px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-brand-block > p {
    max-width: 470px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-contact {
    grid-column: auto;
  }

  .footer-contact {
    display: flex;
  }

  .footer-contact .footer-column-title {
    grid-column: auto;
  }

  .footer-container {
    padding: 30px 20px 18px;
  }

  .footer-divider {
    margin-top: 32px;
  }
}


/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal-section,
.reveal-card,
.site-footer {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .7s cubic-bezier(.22,.61,.36,1),
    transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}

.reveal-card {
  transform: translateY(42px) scale(.985);
  transition-delay: .08s;
}

.reveal-section.is-visible,
.reveal-card.is-visible,
.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-card,
  .site-footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================================================
   KAZERUN LOCATION EVENT CARD
===================================================== */
.location-event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.location-event-card {
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 16px 50px rgba(0,0,0,.05);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.location-event-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 26px 70px rgba(0,0,0,.10);
}

.location-card-visual {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,176,0,.35), transparent 26%),
    radial-gradient(circle at 85% 80%, rgba(239,60,32,.38), transparent 34%),
    linear-gradient(145deg, #191918, #101010 58%, #23110d);
  color: #fff;
}

.location-card-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .7;
}

.location-card-orb.orb-a {
  width: 170px;
  height: 170px;
  left: -60px;
  bottom: -50px;
  background: rgba(239,60,32,.28);
}

.location-card-orb.orb-b {
  width: 130px;
  height: 130px;
  right: -40px;
  top: 40px;
  background: rgba(255,176,0,.20);
}

.location-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-live-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .14em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.location-card-index {
  font-family: Arial, sans-serif;
  font-size: 10px;
  opacity: .6;
}

.location-card-city {
  position: relative;
  z-index: 2;
  margin-top: 66px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-card-city small {
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .18em;
  opacity: .55;
}

.location-card-city strong {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 800;
}

.location-card-city span {
  margin-top: 13px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.location-card-mapline {
  position: absolute;
  right: 30px;
  left: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .7;
}

.map-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
}

.map-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
}

.location-card-info {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 44px 46px 26px;
}

.location-card-label {
  display: block;
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
}

.location-card-info h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -.03em;
}

.location-card-info p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.location-card-arrow {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.location-event-card:hover .location-card-arrow {
  background: var(--text);
  color: var(--bg);
  transform: translateX(-4px);
}

.location-card-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.location-card-footer {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 46px 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.location-card-footer > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 9px;
}

.location-card-footer svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.location-card-footer strong {
  font-size: 9px;
}

@media (max-width: 800px) {
  .location-event-card {
    grid-template-columns: 1fr;
  }

  .location-card-visual,
  .location-card-info,
  .location-card-footer {
    grid-column: 1;
  }

  .location-card-visual {
    min-height: 280px;
  }

  .location-card-info {
    padding: 30px 28px 20px;
  }

  .location-card-footer {
    margin: 0 28px 28px;
  }
}


/* =====================================================
   LOCATION CARD — ORIGINAL COMPACT SIZE
===================================================== */
.location-event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.location-event-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  border-radius: 22px;
}

.location-card-visual {
  min-height: 245px;
  padding: 22px;
}

.location-card-city {
  margin-top: 48px;
}

.location-card-city strong {
  font-size: 34px;
}

.location-card-mapline {
  right: 22px;
  left: 22px;
  bottom: 20px;
}

.location-card-info {
  width: 100%;
  display: flex;
  padding: 20px 20px 14px;
}

.location-card-info h3 {
  font-size: 17px;
}

.location-card-arrow {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 13px;
}

.location-card-footer {
  width: auto;
  margin: 0 20px 20px;
  padding-top: 14px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

@media (max-width: 1100px) {
  .location-event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .location-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .location-event-grid {
    grid-template-columns: 1fr;
  }

  .location-event-card {
    max-width: 420px;
  }
}




/* =====================================================
   AUTHORITATIVE HEADER LAYOUT
   RIGHT = LOGO | CENTER = MENU | LEFT = THEME + AUTH
===================================================== */

.site-header .header-inner {
  position: relative !important;
  display: block !important;
  min-height: 74px;
}

/* Logo — fixed visually on the RIGHT */
.site-header .brand {
  position: absolute !important;
  top: 50%;
  right: 0 !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  z-index: 3;
}

/* Navigation — fixed exactly in the CENTER */
.site-header .main-nav {
  position: absolute !important;
  top: 50%;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
  width: max-content !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 2;
  direction: rtl;
}

/* Theme + Login/Register — fixed visually on the LEFT */
.site-header .header-actions {
  position: absolute !important;
  top: 50%;
  left: 0 !important;
  right: auto !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  z-index: 3;
  direction: rtl;
}

.site-header .auth-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-header .login-link,
.site-header .register-link {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 700;
  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.site-header .login-link {
  min-width: 52px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.site-header .register-link {
  min-width: 68px;
  padding: 0 14px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
}

.site-header .login-link:hover,
.site-header .register-link:hover {
  transform: translateY(-2px);
}

/* Prevent inherited RTL/flex rules from moving zones */
html[dir="rtl"] .site-header .brand {
  right: 0 !important;
  left: auto !important;
}

html[dir="rtl"] .site-header .header-actions {
  left: 0 !important;
  right: auto !important;
}

@media (max-width: 1100px) {
  .site-header .main-nav {
    gap: 18px;
  }

  .site-header .main-nav a {
    font-size: 8px;
  }

  .site-header .theme-label {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header .header-inner {
    min-height: 68px;
  }

  .site-header .main-nav {
    display: none !important;
  }

  .site-header .brand {
    right: 0 !important;
  }

  .site-header .header-actions {
    left: 0 !important;
  }

  .site-header .login-link {
    min-width: 46px;
    padding: 0 9px;
  }

  .site-header .register-link {
    min-width: 58px;
    padding: 0 10px;
  }
}

@media (max-width: 520px) {
  .site-header .auth-actions {
    gap: 5px;
  }

  .site-header .login-link,
  .site-header .register-link {
    height: 36px;
    font-size: 8px;
  }
}


/* Slider controls removed */
.slider-arrow,
.slider-nav,
.slider-dots,
#sliderPrev,
#sliderNext {
  display: none !important;
}


/* =====================================================
   PAST EVENTS
===================================================== */
.past-events-section {
  width: min(1180px, calc(100% - 40px));
  margin: 74px auto 84px;
}

.past-events-heading {
  margin-bottom: 24px;
}

.past-events-heading h2 {
  margin: 5px 0 7px;
}

.past-events-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.past-event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.past-event-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--text) 22%, var(--line));
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.past-event-visual {
  position: relative;
  min-height: 185px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 25%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #191919, #444);
}

.past-event-visual--two {
  background:
    radial-gradient(circle at 75% 25%, rgba(255,255,255,.17), transparent 30%),
    linear-gradient(135deg, #262626, #696969);
}

.past-event-visual--three {
  background:
    radial-gradient(circle at 30% 80%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(135deg, #101010, #555);
}

.past-event-visual::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: -35px;
  bottom: -65px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.past-event-status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  color: #fff;
  font-size: 9px;
  backdrop-filter: blur(8px);
}

.past-event-art {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: #fff;
  direction: ltr;
}

.past-event-art span {
  font-size: 9px;
  letter-spacing: 4px;
  opacity: .65;
}

.past-event-art strong {
  margin-top: 3px;
  font-size: 26px;
  letter-spacing: -1px;
}

.past-event-content {
  padding: 18px;
}

.past-event-date {
  color: var(--muted);
  font-size: 9px;
}

.past-event-content h3 {
  margin: 8px 0 5px;
  font-size: 16px;
}

.past-event-content p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.past-event-ended {
  display: inline-flex;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  width: 100%;
  color: var(--muted);
  font-size: 9px;
}

@media (max-width: 900px) {
  .past-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .past-events-section {
    width: min(100% - 24px, 1180px);
    margin: 50px auto 60px;
  }

  .past-events-grid {
    grid-template-columns: 1fr;
  }

  .past-event-visual {
    min-height: 165px;
  }
}


/* =====================================================
   COMPACT SECTION SPACING
===================================================== */
.hero-slider {
  margin-bottom: 34px !important;
}

.events-section {
  padding-top: 26px !important;
  padding-bottom: 32px !important;
  margin-bottom: 0 !important;
}

.past-events-section {
  margin-top: 34px !important;
  margin-bottom: 42px !important;
}

.site-footer {
  margin-top: 0 !important;
}

@media (max-width: 620px) {
  .hero-slider {
    margin-bottom: 22px !important;
  }

  .events-section {
    padding-top: 18px !important;
    padding-bottom: 22px !important;
  }

  .past-events-section {
    margin-top: 24px !important;
    margin-bottom: 30px !important;
  }
}

/* =====================================================
   ONLINE SUPPORT
===================================================== */
.online-support {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1200;
  direction: rtl;
  font-family: inherit;
}

.support-launcher {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 14px 35px rgba(0,0,0,.16);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease;
}

.support-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}

.support-launcher svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.support-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #2bd576;
  box-shadow: 0 0 0 4px rgba(43,213,118,.13);
}

.support-panel {
  position: absolute;
  left: 0;
  bottom: 62px;
  width: min(340px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom left;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

.support-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.support-panel-head {
  padding: 17px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.support-panel-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-panel-head strong {
  font-size: 13px;
}

.support-panel-head small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.support-agent-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 8px;
}

.support-agent-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bd576;
}

.support-panel-head > button {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.support-panel-body {
  min-height: 185px;
  padding: 18px;
  background: color-mix(in srgb, var(--surface) 94%, var(--text) 6%);
}

.support-message {
  width: fit-content;
  max-width: 82%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 4px 14px;
  background: var(--surface);
  font-size: 10px;
  line-height: 1.9;
}

.support-quick-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.support-quick-actions button {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  transition: color .2s ease, border-color .2s ease;
}

.support-quick-actions button:hover {
  color: var(--text);
  border-color: var(--text);
}

.support-input-row {
  padding: 11px;
  display: grid;
  grid-template-columns: 1fr 39px;
  gap: 7px;
  border-top: 1px solid var(--line);
}

.support-input-row input {
  min-width: 0;
  height: 39px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 9px;
}

.support-input-row input:focus {
  border-color: var(--text);
}

.support-input-row button {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
}

.support-input-row button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 620px) {
  .online-support {
    left: 12px;
    bottom: 12px;
  }

  .support-launcher {
    min-height: 44px;
    padding: 0 13px;
  }

  .support-panel {
    bottom: 56px;
  }
}

/* =====================================================
   NOVA AI SUPPORT ENHANCEMENT
===================================================== */
.ai-badge{display:inline-grid;place-items:center;min-width:22px;height:18px;padding:0 5px;margin-right:5px;border:1px solid color-mix(in srgb,var(--text) 20%,transparent);border-radius:999px;font-size:7px;letter-spacing:.08em;font-weight:900;vertical-align:middle}
.support-panel{width:min(370px,calc(100vw - 28px))}
.support-panel-body{padding:12px;min-height:270px;display:flex;flex-direction:column;background:color-mix(in srgb,var(--surface) 95%,var(--text) 5%)}
.support-messages{height:270px;overflow:auto;padding:4px 4px 10px;scroll-behavior:smooth;overscroll-behavior:contain;scrollbar-width:thin}
.ai-message{display:flex;flex-direction:column;align-items:flex-start;margin:8px 0}
.ai-message.is-user{align-items:flex-end}
.ai-bubble{max-width:86%;padding:10px 12px;border:1px solid var(--line);border-radius:14px 14px 4px 14px;background:var(--surface);font-size:9px;line-height:1.9;white-space:pre-wrap;word-break:break-word}
.ai-message.is-user .ai-bubble{border-color:var(--text);background:var(--text);color:var(--bg);border-radius:14px 14px 14px 4px}
.ai-actions{display:flex;flex-wrap:wrap;gap:5px;margin-top:6px;max-width:88%}
.ai-actions a{padding:6px 8px;border:1px solid var(--line);border-radius:999px;background:var(--surface);color:var(--text);font-size:7.5px;text-decoration:none;font-weight:700}
.ai-actions a:hover{border-color:var(--text)}
.ai-quick-actions{margin-top:2px;padding-top:9px;border-top:1px solid var(--line)}
.ai-scope-note{margin-top:7px;color:var(--muted);font-size:7px;text-align:center;opacity:.82}
.ai-typing .ai-bubble{display:flex;align-items:center;gap:4px;min-width:42px;height:34px}
.ai-typing span{width:5px;height:5px;border-radius:50%;background:var(--muted);animation:novaAiDot 1s infinite ease-in-out}
.ai-typing span:nth-child(2){animation-delay:.15s}.ai-typing span:nth-child(3){animation-delay:.3s}
@keyframes novaAiDot{0%,80%,100%{transform:translateY(0);opacity:.35}40%{transform:translateY(-3px);opacity:1}}
.support-input-row input:disabled{opacity:.65}
@media(max-width:620px){.support-panel{width:min(360px,calc(100vw - 24px));max-height:72vh}.support-messages{height:250px}.ai-bubble{font-size:9px}}
/* Admin-connected event media */
.admin-card-visual{position:relative;overflow:hidden}.admin-card-media{position:absolute;inset:0;width:100%;height:100%;display:block;z-index:0}.admin-card-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.5));z-index:1}.admin-card-visual .location-card-top,.admin-card-visual .location-card-city{position:relative;z-index:2}



/* =====================================================
   PAST EVENTS — 9 CARDS PER PAGE / UP TO 10 PAGES
===================================================== */
.past-events-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin:30px auto 0;
  padding:0 16px;
}
.past-events-pagination[hidden]{display:none!important}
.past-page-btn{
  min-width:42px;
  height:42px;
  padding:0 12px;
  border:1px solid var(--line,#ded7ca);
  border-radius:12px;
  background:var(--surface,#fff);
  color:var(--text,#171717);
  font:inherit;
  font-weight:800;
  cursor:pointer;
  transition:border-color .2s ease,background .2s ease,color .2s ease,transform .2s ease;
}
.past-page-btn:hover{transform:translateY(-1px);border-color:var(--gold,#b8903f)}
.past-page-btn.active{
  background:var(--gold,#b8903f);
  border-color:var(--gold,#b8903f);
  color:#fff;
}
.past-page-btn:focus-visible{outline:3px solid rgba(184,144,63,.28);outline-offset:2px}
@media (max-width:540px){
  .past-events-pagination{gap:6px;margin-top:22px;padding:0 8px}
  .past-page-btn{min-width:38px;height:38px;border-radius:10px;padding:0 9px}
}

/* Homepage archive pagination: pages 1–10, 9 cards per page. */
.past-page-btn:disabled{
  opacity:.38;
  cursor:not-allowed;
  transform:none!important;
}
.past-page-btn:disabled:hover{
  border-color:var(--line,#ded7ca);
}


/* TELEGRAM SUPPORT */
.ai-telegram-support{
  display:flex;align-items:center;gap:10px;margin-top:10px;padding:11px 12px;
  border:1px solid var(--line,#e6e0d6);border-radius:14px;text-decoration:none;
  background:var(--surface,#fff);color:var(--text,#111);transition:.2s ease;
}
.ai-telegram-support[hidden]{display:none!important}
.ai-telegram-support:hover{transform:translateY(-1px);border-color:rgba(34,158,217,.55)}
.ai-telegram-icon{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#229ED9;color:#fff;font-size:16px;font-weight:800;flex:0 0 auto}
.ai-telegram-support span:last-child{display:flex;flex-direction:column;gap:2px;min-width:0}
.ai-telegram-support strong{font-size:12px}
.ai-telegram-support small{font-size:10px;color:var(--muted,#777)}

/* Sale Counter — overlay on event boxes */
.sale-counter{position:absolute;z-index:7;display:flex;align-items:center;gap:10px;direction:rtl;background:rgba(17,17,15,.88);color:#fff;border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(12px);box-shadow:0 12px 30px rgba(0,0,0,.18)}
.sale-counter-label{font-size:10px;opacity:.72}.sale-counter strong{font-family:Arial,sans-serif;font-size:14px;letter-spacing:.5px;direction:ltr}
.sale-counter-slide{display:none!important}.sale-counter-card{right:12px;bottom:12px;padding:8px 11px;border-radius:12px}.location-card-visual,.slide{position:relative}
@media(max-width:600px){.sale-counter-label{display:none}}
/* Entry support notice */
.nova-entry-notice{position:fixed;inset:0;z-index:12000;display:grid;place-items:center;padding:22px;background:rgba(13,13,12,.58);backdrop-filter:blur(8px)}
.nova-entry-notice[hidden]{display:none}.nova-entry-card{position:relative;width:min(510px,100%);padding:34px 30px 28px;text-align:center;background:var(--surface);color:var(--text);border:1px solid var(--line-strong);border-radius:var(--radius-lg);box-shadow:0 28px 90px rgba(0,0,0,.22)}
.nova-entry-icon{width:64px;height:64px;margin:0 auto 18px;display:grid;place-items:center;border-radius:50%;background:var(--surface-soft);border:1px solid var(--line-strong);color:var(--accent);font-size:28px;font-weight:800}.nova-entry-card h2{margin:0 0 12px;font-size:22px}.nova-entry-card p{margin:0 auto;color:var(--muted);line-height:2;max-width:420px;font-size:13px}.nova-entry-phone{display:flex;align-items:center;justify-content:center;gap:10px;margin:20px auto;padding:13px 16px;border-radius:15px;background:var(--surface-soft);border:1px solid var(--line);font-family:Arial,sans-serif;font-size:18px;font-weight:800;direction:ltr}.nova-entry-ok{width:100%;min-height:48px;border-radius:14px;background:var(--text);color:var(--bg);font-weight:800;cursor:pointer}.nova-entry-close{position:absolute;top:14px;left:14px;width:36px;height:36px;border-radius:50%;background:var(--surface-soft);color:var(--text);font-size:20px;cursor:pointer}
\n\n/* =====================================================\n   FIXED EVENT CARD DIMENSIONS — UPCOMING + PAST\n   Past cards intentionally match the compact upcoming-card footprint.\n===================================================== */\n@media (min-width: 1101px) {\n  .location-event-card,\n  .past-event-card {\n    width: 100% !important;\n    height: 430px !important;\n    min-height: 430px !important;\n    max-height: 430px !important;\n  }\n\n  .past-events-grid {\n    grid-template-columns: repeat(3, minmax(0, 280px)) !important;\n    justify-content: center;\n    align-items: stretch;\n    gap: 18px;\n  }\n\n  .past-event-card {\n    max-width: 280px !important;\n  }\n}\n\n.location-event-card {\n  overflow: hidden !important;\n}\n.location-card-visual,\n.past-event-visual {\n  height: 245px !important;\n  min-height: 245px !important;\n  max-height: 245px !important;\n  flex: 0 0 245px !important;\n}\n.past-event-visual { padding: 18px; }\n.past-event-visual > img { width:100% !important; height:100% !important; object-fit:cover !important; display:block; }\n.past-event-content {\n  height: 185px !important;\n  min-height: 185px !important;\n  max-height: 185px !important;\n  overflow: hidden;\n  display:flex;\n  flex-direction:column;\n}\n.past-event-ended { margin-top:auto !important; }\n\n@media (max-width: 1100px) and (min-width: 781px) {\n  .location-event-card, .past-event-card { height:430px !important; min-height:430px !important; max-height:430px !important; }\n  .past-events-grid { grid-template-columns:repeat(3,minmax(0,1fr)) !important; }\n}\n@media (max-width: 780px) and (min-width: 541px) {\n  .past-events-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }\n  .location-event-card, .past-event-card { height:430px !important; min-height:430px !important; max-height:430px !important; }\n}\n@media (max-width: 540px) {\n  .past-events-grid { grid-template-columns:1fr !important; }\n  .location-event-card, .past-event-card { width:100% !important; max-width:420px !important; height:430px !important; min-height:430px !important; max-height:430px !important; margin-inline:auto; }\n}\n
/* Homepage automatic SOLD OUT card overlay */
.location-card-visual.admin-card-visual{position:relative;overflow:hidden}
.nova-soldout-overlay{position:absolute;inset:0;z-index:8;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,rgba(5,7,12,.38),rgba(18,5,17,.72));backdrop-filter:saturate(.72) contrast(1.06);-webkit-backdrop-filter:saturate(.72) contrast(1.06);pointer-events:none}
.nova-soldout-overlay:before{content:"";position:absolute;width:210px;height:90px;border-radius:999px;background:rgba(208,35,77,.17);filter:blur(25px);transform:rotate(-6deg)}
.nova-soldout-stamp{position:relative;min-width:178px;padding:13px 22px 12px;text-align:center;border:1px solid rgba(255,255,255,.72);border-radius:12px;background:rgba(10,10,15,.76);box-shadow:0 14px 35px rgba(0,0,0,.34),inset 0 0 0 1px rgba(203,46,84,.28);transform:rotate(-5deg)}
.nova-soldout-stamp:before,.nova-soldout-stamp:after{content:"";position:absolute;left:10px;right:10px;height:1px;background:linear-gradient(90deg,transparent,rgba(220,48,89,.9),transparent)}
.nova-soldout-stamp:before{top:7px}.nova-soldout-stamp:after{bottom:7px}
.nova-soldout-stamp small{display:block;font:700 9px/1.2 Arial,sans-serif;letter-spacing:.32em;color:rgba(255,255,255,.62);margin-bottom:2px}
.nova-soldout-stamp strong{display:block;font:900 25px/1.05 Arial,sans-serif;letter-spacing:.08em;color:#fff;text-shadow:0 0 18px rgba(222,46,89,.48)}
.nova-soldout-stamp em{display:block;margin-top:6px;font-style:normal;font-size:10px;font-weight:700;color:rgba(255,255,255,.8)}
.is-event-sold-out .location-live-badge{opacity:.22}
@media(max-width:540px){.nova-soldout-stamp{min-width:160px;padding:12px 18px}.nova-soldout-stamp strong{font-size:22px}}

/* =====================================================
   PAST EVENTS — AUTOMATIC GRAYSCALE MEDIA
   Any event moved to the past-events archive automatically uses this card class,
   so its uploaded event image becomes grayscale without changing the source file.
===================================================== */
.past-event-card .past-event-visual > img,
.past-event-card .past-event-visual .admin-card-media {
  filter: grayscale(100%) saturate(0) !important;
  -webkit-filter: grayscale(100%) saturate(0) !important;
}

/* Navatik: archived events are always visually desaturated. */
.past-event-card .past-event-image,
.past-event-card .past-event-visual > img {
  filter: grayscale(100%) saturate(0) !important;
  -webkit-filter: grayscale(100%) saturate(0) !important;
}


/* =====================================================
   NAVATIK SLIDER RELIABILITY FIX
   Keep every slide layered inside the fixed slider track.
===================================================== */
.top-slider .slider-track{position:relative!important;overflow:hidden!important;}
.top-slider .slider-track .slide{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
}
.top-slider .slider-track .slide.active{z-index:2;}


/* Upcoming card overlay: date -> artist -> venue */
.location-card-city{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.location-card-city small{
  direction:rtl;
  font-family:inherit;
  letter-spacing:0;
  font-size:10px;
  font-weight:700;
}
.location-card-city strong{
  max-width:100%;
  font-size:clamp(30px,4.2vw,52px);
  line-height:1.12;
  overflow-wrap:anywhere;
}
.location-card-city span{
  max-width:100%;
  font-size:12px;
  font-weight:700;
  overflow-wrap:anywhere;
}


/* =====================================================
   NAVATIK — EVENT CARD COUNTDOWN REDESIGN
===================================================== */
.sale-counter{
  position:absolute;
  z-index:7;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:9px 12px;
  direction:rtl;
  padding:9px 12px;
  border:1px solid rgba(218,181,112,.52);
  border-radius:16px;
  background:linear-gradient(135deg,rgba(17,18,20,.86),rgba(17,18,20,.62));
  color:#fff;
  -webkit-backdrop-filter:blur(16px) saturate(1.15);
  backdrop-filter:blur(16px) saturate(1.15);
  box-shadow:0 10px 28px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.08);
  overflow:hidden;
}
.sale-counter::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#d8b371;
  box-shadow:0 0 0 5px rgba(216,179,113,.12),0 0 18px rgba(216,179,113,.6);
  grid-row:1 / span 2;
  align-self:center;
}
.sale-counter::after{
  content:"";
  position:absolute;
  inset:auto -18px -34px auto;
  width:78px;
  height:78px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(216,179,113,.18),transparent 68%);
  pointer-events:none;
}
.sale-counter-label{
  grid-column:2;
  font-size:8px;
  font-weight:800;
  letter-spacing:.04em;
  color:#d8b371;
  opacity:1;
  white-space:nowrap;
}
.sale-counter strong{
  grid-column:2;
  direction:ltr;
  font-family:Arial,sans-serif;
  font-size:13px;
  line-height:1;
  font-weight:800;
  letter-spacing:.8px;
  color:#fff;
  white-space:nowrap;
}
.sale-counter-card{
  right:14px;
  bottom:14px;
  min-width:146px;
}
.sale-counter-slide{
  right:28px;
  top:28px;
  min-width:164px;
  padding:11px 14px;
}
@media(max-width:600px){
  .sale-counter-card{right:10px;bottom:10px;min-width:136px;padding:8px 10px}
  .sale-counter-label{display:block;font-size:7px}
  .sale-counter strong{font-size:12px}
}

/* Entry notice — WhatsApp action */
.nova-entry-whatsapp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  cursor:pointer;
}
.nova-entry-whatsapp:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
}


/* Countdown pinned to bottom of event image on homepage */
.location-card-visual{position:relative!important;}
.location-card-visual > .sale-counter-card{
  position:absolute!important;
  z-index:12!important;
  left:14px!important;
  right:14px!important;
  bottom:14px!important;
  top:auto!important;
  width:auto!important;
  max-width:none!important;
  min-width:0!important;
  padding:9px 12px!important;
  border-radius:12px!important;
  background:rgba(12,13,15,.82)!important;
  border:1px solid rgba(255,255,255,.2)!important;
  box-shadow:0 10px 28px rgba(0,0,0,.28)!important;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:12px!important;
}
.location-card-visual > .sale-counter-card .sale-counter-label{font-size:8px!important;opacity:.82!important;white-space:nowrap;}
.location-card-visual > .sale-counter-card strong{font-size:13px!important;white-space:nowrap;}
@media(max-width:600px){
  .location-card-visual > .sale-counter-card{left:10px!important;right:10px!important;bottom:10px!important;padding:8px 10px!important;}
  .location-card-visual > .sale-counter-card .sale-counter-label{display:block!important;font-size:7px!important;}
  .location-card-visual > .sale-counter-card strong{font-size:11px!important;}
}



/* FINAL: homepage countdown sits at the bottom of the event IMAGE only */
.location-card-visual{position:relative!important;overflow:hidden!important;}
.location-card-visual > .sale-counter-card{
  position:absolute!important;
  z-index:20!important;
  left:12px!important;
  right:12px!important;
  bottom:12px!important;
  top:auto!important;
  width:auto!important;
  min-width:0!important;
  max-width:none!important;
  margin:0!important;
  padding:9px 12px!important;
  border-radius:12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:10px!important;
  background:rgba(10,11,13,.88)!important;
  border:1px solid rgba(255,255,255,.22)!important;
  box-shadow:0 8px 24px rgba(0,0,0,.30)!important;
  backdrop-filter:blur(10px)!important;
  -webkit-backdrop-filter:blur(10px)!important;
  color:#fff!important;
  pointer-events:none!important;
}
.location-card-visual > .sale-counter-card .sale-counter-label{
  display:block!important;
  margin:0!important;
  font-size:8px!important;
  font-weight:700!important;
  opacity:.78!important;
  white-space:nowrap!important;
}
.location-card-visual > .sale-counter-card strong{
  margin:0!important;
  font-family:Arial,sans-serif!important;
  font-size:13px!important;
  font-weight:800!important;
  letter-spacing:.4px!important;
  direction:ltr!important;
  white-space:nowrap!important;
}
/* Keep date / artist / venue clear of the counter strip. */
.location-card-visual:has(> .sale-counter-card) .location-card-city{
  transform:translateY(-42px)!important;
}
.sale-counter-slide{display:none!important;}
@media(max-width:600px){
  .location-card-visual > .sale-counter-card{left:9px!important;right:9px!important;bottom:9px!important;padding:8px 9px!important;}
  .location-card-visual > .sale-counter-card .sale-counter-label{font-size:7px!important;}
  .location-card-visual > .sale-counter-card strong{font-size:11px!important;}
  .location-card-visual:has(> .sale-counter-card) .location-card-city{transform:translateY(-38px)!important;}
}


/* Slider cleanup: remove decorative circles/blobs */
.top-slider .slide::before,
.top-slider .slide::after{
  display:none!important;
  content:none!important;
}


.staff-portal-footer-link{color:inherit}.staff-portal-footer-link:before{content:"STAFF";display:inline-flex;margin-left:7px;padding:2px 6px;border:1px solid rgba(177,138,76,.35);border-radius:999px;color:#b18a4c;font:800 6px/1.2 Arial,sans-serif;letter-spacing:.8px;vertical-align:middle}
