:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f1f2f4;
  --text: #1b1b1f;
  --muted: #6b7280;
  --line: #d8dee8;
  --accent: #ff3b30;
  --accent-dark: #e62e24;
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --favorite-heart-broken: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7.2-4.35-9.65-8.52C.42 9.2 1.4 5.2 4.76 4.1 7.13 3.32 9.7 4.27 12 6.84c2.3-2.57 4.87-3.52 7.24-2.74 3.36 1.1 4.34 5.1 2.41 8.38C19.2 16.65 12 21 12 21z' fill='white' stroke='%23111827' stroke-width='2.25' stroke-linejoin='round'/%3E%3Cpath d='M13.2 5.8 10.7 9.3l2.7 2-3.1 4.2 1.7 5.4' fill='none' stroke='%23111827' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --favorite-heart-active: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7.2-4.35-9.65-8.52C.42 9.2 1.4 5.2 4.76 4.1 7.13 3.32 9.7 4.27 12 6.84c2.3-2.57 4.87-3.52 7.24-2.74 3.36 1.1 4.34 5.1 2.41 8.38C19.2 16.65 12 21 12 21z' fill='%23ff3b30'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

::selection {
  background: #C1FF72;
  color: #111827;
}

::-moz-selection {
  background: #C1FF72;
  color: #111827;
}

body[data-page="admin"] .modal,
body[data-page="admin"] .mobile-menu {
  display: none !important;
}

body[data-page="admin"].menu-open {
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.event-title {
  font-family: var(--font-heading);
}

.page-bg {
  position: fixed;
  inset: 0;
  background: #ffffff !important;
  z-index: 0;
  pointer-events: none;
}

.container {
  width: min(1134px, 94vw);
  margin: 0 auto;
}

main,
.site-footer,
.site-header {
  position: relative;
  z-index: 1;
}

body.modal-open main {
  z-index: 2;
}

body.modal-open .site-footer {
  z-index: 0;
  margin-top: 40px;
}

main {
  flex: 1 0 auto;
  width: 100%;
  z-index: 2;
}

.site-footer {
  margin-top: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 88px;
  background: #000;
  border-bottom: 1px solid #111;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
  padding: 0;
  gap: 40px;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.header-center {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  overflow: visible;
}

.header-right {
  flex: 0 1 auto;
  justify-content: flex-end;
}

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

.burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  box-shadow: var(--shadow);
  flex-direction: column;
}

.burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 47px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

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

.logo img {
  height: 65px;
  width: auto;
  display: block;
}

.site-header .logo img {
  height: var(--header-logo-size, 65px);
}

.site-footer .logo img {
  height: 65px;
}

.main-nav {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.nav-pill,
.nav-more-toggle,
.footer-links a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d6dbe4;
  background: #ffffff;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-header .nav-category,
.site-header .nav-more {
  min-height: 36px;
}

.site-header .nav-category::after,
.site-header .main-nav > .nav-pill::after {
  content: "";
  align-self: center;
  flex: 0 0 auto;
  width: 2px;
  height: 18px;
  margin: 0 14px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(199, 255, 103, 0.55) 0 3px,
    transparent 3px 8px
  );
}

.site-header .main-nav > .nav-pill::after {
  display: inline-block;
}

.site-header .nav-pill,
.site-header .nav-more-toggle {
  min-height: 36px;
  padding: 0 17px;
  border: 1px solid rgba(112, 255, 79, 0.32);
  border-radius: 999px;
  background: transparent;
  color: #70ff4f;
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.site-header .nav-pill:hover,
.site-header .nav-more-toggle:hover,
.site-header .nav-more:focus-within .nav-more-toggle {
  background: rgba(112, 255, 79, 0.08);
  border-color: #70ff4f;
  color: #70ff4f;
}

.site-header .nav-pill.active,
.site-header .nav-pill.active:hover {
  background: #00f020;
  border-color: #00f020;
  color: #020402;
}

.site-header .nav-category > .nav-pill::after,
.site-header .nav-more-toggle::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
}

.site-header .header-search {
  display: inline-flex;
  width: 36px;
  min-width: 36px;
  height: 36px;
  background: transparent;
  border-color: rgba(112, 255, 79, 0.32);
  color: #70ff4f;
  box-shadow: none;
}

.nav-pill:hover,
.nav-more-toggle:hover {
  color: #111827;
  border-color: #cfd5df;
  background: #f3f4f6;
}

.nav-pill.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.mobile-category-strip {
  display: none;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 6px;
}

.mobile-category-strip::-webkit-scrollbar {
  display: none;
}

.mobile-strip-logo {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.mobile-strip-logo img {
  height: var(--header-logo-size-mobile, 46px);
  width: auto;
  display: block;
}

.mobile-category-link {
  white-space: nowrap;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #cfd5df;
  background: #fff;
}

.mobile-category-link.active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.nav-more {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-category {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-more-toggle {
  cursor: pointer;
}

.nav-more-menu,
.nav-category-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #d6dbe4;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.nav-category-menu {
  left: 0;
  right: auto;
  min-width: 190px;
}

.nav-more:hover .nav-more-menu,
.nav-more:focus-within .nav-more-menu,
.nav-category:hover .nav-category-menu,
.nav-category:focus-within .nav-category-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-more-menu a,
.nav-category-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 10px;
  display: block;
  white-space: nowrap;
}

.nav-more-menu a:hover,
.nav-category-menu a:hover {
  background: #f3f4f6;
}

.header-search {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #d6dbe4;
  background: #fff;
  color: #111827;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-search:hover {
  border-color: #cfd5df;
  background: #f3f4f6;
}

.site-header .header-search:hover {
  background: rgba(112, 255, 79, 0.08);
  border-color: #70ff4f;
  color: #70ff4f;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70vw;
  max-width: 360px;
  background: var(--surface);
  box-shadow: -12px 0 30px rgba(15, 23, 42, 0.2);
  border-radius: 20px 0 0 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.mobile-menu-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
  grid-auto-rows: max-content;
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 6px;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.mobile-menu-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 6px 0;
}

.mobile-menu-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 8px 0;
}

.mobile-menu-group {
  display: grid;
  gap: 4px;
}

.mobile-menu-main-link {
  font-weight: 700;
}

.mobile-menu-months {
  display: grid;
  gap: 2px;
  padding-left: 10px;
}

.mobile-menu-month-link {
  color: var(--muted) !important;
  font-weight: 500 !important;
  font-size: 13px;
  padding: 4px 0 !important;
}

.mobile-menu-theme {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eef0f3;
}

.mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-theme-label {
  font-weight: 600;
  color: var(--text);
}

.mobile-theme-toggle {
  width: 72px;
  justify-content: center;
  align-self: center;
}

body.menu-open .mobile-menu {
  pointer-events: auto;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
}

body.menu-open .mobile-menu-panel {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.header-search-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-search-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-label {
  display: none;
}

.search-modal {
  width: min(720px, 92vw);
}

.search-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 27, 31, 0.12);
  font-size: 14px;
}

.search-hero {
  align-items: flex-start;
  gap: 24px;
}

.search-hero-content {
  flex: 1;
}

.search-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: min(420px, 100%);
}

.search-inline input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 27, 31, 0.12);
  font-size: 14px;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 34px;
  flex: 0 0 auto;
}

.theme-icon {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.theme-toggle .sun {
  left: 12px;
}

.theme-toggle .moon {
  right: 12px;
}

.theme-toggle input {
  appearance: none;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle input::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.theme-toggle input:checked {
  background: #1f2430;
}

.theme-toggle input:checked::after {
  transform: translateX(34px);
}

.city-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.city-pin {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.city-pin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.main-nav a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 13px;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 56px 0 32px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 16px;
}

.eyebrow {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.sub {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card-header {
  font-weight: 700;
  margin-bottom: 12px;
}

.filters {
  display: flex;
  gap: 16px;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 14px;
}

.date-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 18px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.calendar-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  background: #C1FF72;
  border: 1px solid #C1FF72;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  flex: 0 0 auto;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.calendar-toggle:hover {
  background: #9FFF24;
  border-color: #9FFF24;
  color: #111827;
}

.calendar-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calendar-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.date-strip-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.date-strip-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
}

.date-strip-track {
  --days-visible: 14;
  --day-gap: 4px;
  --pill-size: 59px;
  display: flex;
  gap: var(--day-gap);
  overflow-x: auto;
  overflow-y: visible;
  padding: 22px 0 8px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
  user-select: none;
  align-items: center;
}

.date-strip-track.dragging {
  cursor: grabbing;
}

.date-strip-track::-webkit-scrollbar {
  height: 0;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  margin: 6px 0 18px;
  padding-bottom: 6px;
  position: relative;
  z-index: 40;
}

.price-range-row {
  overflow: visible;
  position: relative;
  z-index: 120;
}

.price-range-row .price-filter {
  z-index: 140;
}

.period-price-row {
  overflow: visible;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  z-index: 120;
  padding-bottom: 0;
}

.period-price-row .price-static {
  flex: 0 0 auto;
  position: sticky;
  left: 0;
  z-index: 5;
  padding-right: 6px;
  display: flex;
  align-items: center;
}

.period-price-row .price-filter {
  flex: 0 0 auto;
  z-index: 140;
  display: flex;
  align-items: center;
}

.period-price-row .price-dropdown {
  display: flex;
  align-items: center;
}

.period-price-row .price-toggle {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.period-price-row .period-chips-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  overflow-y: visible;
  flex: 1 1 auto;
  white-space: nowrap;
  padding-bottom: 0;
  scrollbar-width: none;
}

.period-price-row .period-chips-scroll::-webkit-scrollbar {
  height: 0;
}

.chip-row::-webkit-scrollbar {
  height: 0;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #1b1b1f;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.chip:not(.active):not(.disabled):hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.chip.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.chip.disabled {
  background: #f1f2f4;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  pointer-events: none;
}

.price-filter {
  position: relative;
  display: inline-block;
  z-index: 140;
}

.price-dropdown {
  position: relative;
  z-index: 150;
}

.price-dropdown .price-toggle {
  cursor: pointer;
  touch-action: manipulation;
  appearance: none;
  -webkit-appearance: none;
}

.price-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.price-panel-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 900;
}

.price-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
  z-index: 1000;
  box-sizing: border-box;
}

.price-dropdown .price-panel {
  display: none;
}

.price-toggle-input:checked ~ .price-panel-backdrop {
  display: block;
}

.price-toggle-input:checked ~ .price-panel {
  display: block;
}

.price-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.price-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.price-quick-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.price-form {
  display: grid;
  gap: 10px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-inputs input {
  width: 90px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 14px;
}

.price-sep {
  color: var(--muted);
}

.price-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.date-pill {
  flex: 0 0 var(--pill-size);
  width: var(--pill-size, 48px);
  min-width: var(--pill-size, 48px);
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: none;
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-drag: none;
  transform: none;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.date-pill:not(.disabled):not(.selected) {
  background: rgba(255, 255, 255, 0.5);
}

.date-pill.selected {
  background: #2f3542;
  border: 1px solid #2f3542;
}

.date-pill.selected .date-number,
.date-pill.selected .date-weekday,
.date-pill.selected .date-month {
  color: #fff;
}

.date-month-title {
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.date-month-title.disabled {
  color: #9ca3af;
  pointer-events: none;
}

.date-month-title.is-empty {
  visibility: hidden;
}

.date-pill.disabled {
  background: #eef0f3;
  color: var(--muted);
  pointer-events: none;
  box-shadow: none;
  cursor: default;
}

.date-pill.disabled .date-number,
.date-pill.disabled .date-weekday,
.date-pill.disabled .date-month {
  color: var(--muted);
}

.date-pill-all {
  background: #f6f7fb;
  border: 1px dashed #d1d5db;
  color: var(--muted);
}

.date-pill-month {
  background: #fff;
  border: 1px solid #9FFF24;
  color: #111827;
  text-align: center;
  align-items: center;
  justify-items: center;
}

.date-pill-month .date-month-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.date-pill-month.disabled {
  background: #eef0f3;
  border: 1px dashed #d1d5db;
  color: var(--muted);
}

.date-pill.weekend .date-number,
.date-pill.weekend .date-weekday {
  color: var(--accent);
}

.date-number {
  font-weight: 700;
  line-height: 1;
  font-size: 15px;
}

.date-weekday,
.date-month {
  font-size: 9px;
  color: #6b7280;
  line-height: 1;
}

.filter-group label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.filter-group select,
.filter-group input {
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(29, 27, 31, 0.1);
  font-size: 14px;
}

.date-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  box-shadow: none;
  gap: 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 48px;
  min-width: 0;
}

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

@media (max-width: 1200px) {
  .events-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

.empty-state {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.event-card {
  background: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.16);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
  position: relative;
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.event-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.2);
}

.event-card-media {
  position: relative;
  z-index: 1;
}

.event-card-favorite,
.favorite-icon-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 39, 0.28);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  flex: 0 0 auto;
}

.event-card-favorite::before,
.favorite-icon-button::before {
  content: '';
  width: 21px;
  height: 21px;
  display: block;
  background: transparent var(--favorite-heart-broken) center / contain no-repeat;
  -webkit-mask: none;
  mask: none;
  filter: none;
}

.event-card-favorite:hover,
.favorite-icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--accent);
  color: #071100;
}

.event-card-favorite.is-active,
.favorite-icon-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #071100;
}

.event-card-favorite.is-active::before,
.favorite-icon-button.is-active::before {
  background-image: var(--favorite-heart-active);
}

.event-card-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-color: transparent;
  background: transparent;
  color: #fff;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.event-card-favorite::before {
  width: 21px;
  height: 21px;
  background: transparent var(--favorite-heart-broken) center / contain no-repeat;
  -webkit-mask: none;
  mask: none;
  filter: none;
}

.event-card-favorite:hover {
  border-color: transparent;
  background: transparent;
  color: #fff;
}

.event-card-favorite.is-active,
.event-card-favorite.is-active:hover,
.event-card-favorite.account-action-button.is-active,
.event-card-favorite.account-action-button.is-active:hover {
  border-color: transparent;
  background: transparent;
  color: #ff3b30;
}

.event-card-favorite.is-active::before {
  background-image: var(--favorite-heart-active);
  filter: none;
}

.event-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.event-thumb {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 59, 47, 0.12), rgba(255, 176, 31, 0.24));
  font-weight: 600;
  padding: 42px 16px 16px;
  height: 170px;
  color: var(--text);
  text-align: center;
}

.event-thumb span {
  display: block;
}

.event-thumb.past {
  background: #e5e7eb;
  color: #6b7280;
  align-items: center;
  padding: 24px 16px;
  font-weight: 600;
}

.event-card-content {
  padding: 12px 14px 16px;
  display: grid;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.event-card-main {
  display: block;
  color: inherit;
  text-decoration: none;
}

.event-card-main:hover .event-title {
  text-decoration: none;
}


.event-meta-place {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.event-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 12px;
  color: var(--muted);
}

.event-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-meta {
  display: grid;
  gap: 4px;
  color: #1b1b1f;
  font-size: 14px;
}

html[data-theme="dark"] .event-meta {
  color: #f6f7fb;
}

.event-meta a {
  color: inherit;
  text-decoration: none;
}

.event-meta-place-link {
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.event-meta-place-link:hover {
  text-decoration: underline;
}

.event-link {
  color: #111;
  text-decoration: none;
}

html[data-theme="dark"] .event-link {
  color: #f6f7fb;
  text-decoration: none;
}

.event-link:hover {
  text-decoration: underline;
}

.event-price {
  position: absolute;
  top: 12px;
  left: 12px;
  right: auto;
  background: rgba(159, 255, 36, 0.72) !important;
  border: none;
  color: #111827 !important;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow:
    0 10px 22px rgba(17, 24, 39, 0.16);
  -webkit-backdrop-filter: blur(10px) saturate(145%);
  backdrop-filter: blur(10px) saturate(145%);
  z-index: 2;
}

.calendar-column,
.events-column {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
}

.calendar-column {
  display: none;
}

.calendar-modal-body {
  padding: 12px 0 0;
}

.calendar {
  display: grid;
  gap: 12px;
}

.calendar-month {
  margin-bottom: 16px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day,
.calendar-cell {
  text-align: center;
  padding: 8px 0;
  border-radius: 10px;
  font-size: 13px;
  display: block;
}

.calendar-day {
  color: var(--muted);
  font-weight: 600;
}

.calendar-cell {
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, background 0.2s ease;
  text-decoration: none;
  color: var(--text);
  aspect-ratio: 1 / 1;
  padding: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-cell.disabled {
  background: #eef0f3;
  color: #9ca3af;
  pointer-events: none;
  cursor: default;
}

.calendar-cell:hover {
  transform: translateY(-2px);
  background: rgba(159, 255, 36, 0.14);
}

.calendar-cell.disabled:hover {
  transform: none;
  background: #eef0f3;
}

.calendar-cell.has-events::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9FFF24;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.calendar-cell.selected {
  background: rgba(159, 255, 36, 0.18);
  border: 1px solid rgba(159, 255, 36, 0.55);
}

.btn {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.search-modal .btn-primary {
  background: #C1FF72;
  border: 1px solid #C1FF72;
  color: #111827;
}

.search-modal .btn-primary:hover {
  background: #9FFF24;
  border-color: #9FFF24;
  color: #111827;
}

.price-panel .btn-primary {
  background: #C1FF72;
  border: 1px solid #C1FF72;
  color: #111827;
}

.price-panel .btn-primary:hover {
  background: #9FFF24;
  border-color: #9FFF24;
  color: #111827;
}

.btn-outline {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #1b1b1f;
}

.btn-outline:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #1b1b1f;
}

.btn-ghost {
  background: #f3f4f6;
  color: var(--text);
}

.btn-link {
  background: none;
  color: var(--accent);
  padding: 0;
  font-size: 13px;
}

.section-header h2,
.section-header h3 {
  margin: 0;
}

.section-header h2 {
  font-size: 22px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 12px;
}

.search-results {
  margin-bottom: 32px;
}

.search-results .section-header p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.search-inline .btn-primary {
  background: #C1FF72;
  border: 1px solid #C1FF72;
  color: #111827;
}

.search-inline .btn-primary:hover {
  background: #9FFF24;
  border-color: #9FFF24;
  color: #111827;
}

.section-header h2 a {
  text-decoration: none;
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.category-month-section .section-header h2 a:hover,
.category-month-section .section-header h2 a:focus-visible {
  color: #111827;
  text-decoration: underline;
  text-decoration-color: #9FFF24;
}

.section-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.section-link:hover {
  color: var(--accent);
}

.category-sections {
  display: grid;
  gap: 28px;
  padding-bottom: 32px;
}

.category-section {
  display: grid;
  gap: 12px;
}

.category-month-section {
  margin-top: 32px;
}

.popular-events-section {
  margin-bottom: 20px;
}

.all-events-section-header {
  margin-top: 8px;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 12px;
  flex-wrap: wrap;
}

.page-link,
.page-nav {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.page-link.active {
  background: #9FFF24;
  color: #111827;
  border-color: #9FFF24;
}

.page-nav.disabled {
  color: #9ca3af;
  border-color: #e5e7eb;
  background: #f3f4f6;
  cursor: default;
}

.page-ellipsis {
  padding: 0 6px;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  padding: 72px 0 84px;
  border-top: 4px solid #00f020;
  background: #000;
  color: #f5f5f5;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p,
.footer-contacts p:not(.footer-title) {
  margin: 28px 0 0;
  color: #f5f5f5;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.footer-title {
  margin: 0 0 28px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.footer-links {
  display: grid;
  gap: 14px;
  margin: 0;
}

.footer-links a,
.footer-contacts a {
  display: inline;
  width: fit-content;
  max-width: 290px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  text-align: left;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links a:hover,
.footer-contacts a:hover {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #70ff4f;
  text-decoration: none;
}

.footer-column:nth-child(3) .footer-links a:first-child {
  color: #70ff4f;
}

.footer-contacts p a {
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 500;
}

.site-footer .footer-dzen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 208px;
  min-height: 56px;
  margin-top: 26px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #050505 !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  line-height: 1;
}

.footer-dzen-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 0 8px, #000 9px),
    conic-gradient(from 45deg, #000 0 25%, transparent 0 50%, #000 0 75%, transparent 0);
}

.event-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin: 24px 0;
  align-items: stretch;
  position: relative;
}

.event-media {
  border-radius: var(--radius-lg);
  background: #f3f4f6;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-self: start;
  overflow: hidden;
  display: flex;
}

.event-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.event-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
}

.event-info .eyebrow {
  margin: 0;
}

.event-info h1 {
  margin: 0;
}

.event-city-tail {
  display: inline-block;
  white-space: nowrap;
}

.event-sub {
  color: var(--muted);
  margin: 0;
}

.event-info .event-sub {
  margin: 0;
}

.event-info .event-meta {
  margin: 0;
}

.event-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
}

.event-actions .btn-buy {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 45px;
  padding: 0 68px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  box-sizing: border-box;
}

.event-buy-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(380px, 100%);
}

.event-discount-link {
  margin-top: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #6b7280;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
}

.event-discount-link:hover,
.event-discount-link:focus-visible {
  color: #4b5563;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-actions .btn-buy::before,
.event-float-cta .btn::before,
#event-ticket::before {
  display: none !important;
  content: none !important;
}

.event-actions .btn-buy::after,
.event-float-cta .btn::after,
#event-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent url("/uploads/branding/yandex-afisha-mark.png") center / contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}

.event-actions .favorite-icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111827;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
  padding: 0;
}

.event-hero > .favorite-icon-button {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
}

.event-actions .favorite-icon-button::before {
  width: 28px;
  height: 28px;
}

.event-actions .favorite-icon-button:hover {
  border: 0;
  background: transparent;
  color: #111827;
}

.btn-buy,
.event-float-cta .btn,
#event-ticket {
  position: relative;
  overflow: hidden;
  padding-right: 68px !important;
  padding-left: 68px !important;
  background: linear-gradient(90deg, #ff3b30 0%, #ff3b30 64%, #ff6a24 78%, #fff200 92%, #fff200 100%) !important;
  border: 0 !important;
  outline: 0 !important;
  color: #fff !important;
  isolation: isolate;
  box-shadow: none !important;
}

.btn-buy:hover,
.event-float-cta .btn:hover,
#event-ticket:hover {
  background: linear-gradient(90deg, #ee3028 0%, #ee3028 64%, #ff6420 78%, #fff200 92%, #fff200 100%) !important;
  border: 0 !important;
  outline: 0 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.event-float-cta {
  display: none;
}

@media (max-width: 700px) {
  .event-buy-stack {
    width: min(300px, 100%);
  }

  .event-actions .btn-buy {
    max-width: 100%;
    height: 44px;
  }

  .event-actions .favorite-icon-button {
    width: 44px;
    height: 44px;
  }

  .event-float-cta {
    position: fixed;
    left: 50%;
    bottom: calc(16px + env(safe-area-inset-bottom));
    transform: translateX(-50%) translateY(120%);
    width: 70vw;
    max-width: 360px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 60;
    display: flex;
    justify-content: center;
  }

  .event-float-cta .btn {
    width: 100%;
    border-radius: 999px;
    padding: 14px 68px !important;
    font-size: 17px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
  }

  .event-float-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 700px) {
  .event-actions {
    flex-direction: row;
    align-items: center;
  }
  .similar-more {
    width: 100%;
  }
  .similar-more .btn-arrow {
    width: 100%;
    justify-content: center;
  }
  .event-info .eyebrow {
    margin-bottom: 15px;
  }
  .event-info h1 {
    margin-bottom: 15px;
  }
  .event-info .event-sub {
    margin-bottom: 15px;
  }
  .event-info .event-meta {
    margin-bottom: 15px;
  }
  .event-address-card .event-map iframe {
    height: 300px;
  }
}

.event-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.place-address {
  margin: 18px 0 32px;
}

.artist-block {
  margin: 18px 0 32px;
}

.artist-block h2 {
  margin-bottom: 12px;
}

.artist-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  box-shadow: var(--shadow);
}

.artist-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #e5e7eb;
}

.event-map {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.event-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.event-address-card .event-map {
  width: 100%;
}

.event-address-card .event-map iframe {
  height: 360px;
}

.event-address-place {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.info-card {
  padding: 18px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.event-faq h2 {
  margin-bottom: 12px;
}

.event-faq {
  font-family: var(--font-body);
}

.event-details .event-faq {
  grid-column: 1 / -1;
}

.event-faq .faq-item + .faq-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.event-faq h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.event-faq p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 15px;
}

.event-text {
  line-height: 1.6;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}

.static-page-wrap {
  margin-top: 28px;
}

.static-page .event-text h1 {
  margin-top: 0;
}

.static-page .event-text a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.static-page .event-text a:hover {
  text-decoration: underline;
}

.venue-directory {
  column-count: 3;
  column-gap: 28px;
}

.venue-directory a {
  display: block;
  break-inside: avoid;
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 600;
}

.seo-text {
  font-size: 15px;
  line-height: 1.6;
}

.seo-text p {
  margin: 0 0 12px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.rating-card {
  padding: 0;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

@media (max-width: 768px) {
  .rating-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rating-card .rating-table {
    min-width: 560px;
  }
}

.rating-table {
  width: 100%;
  border-collapse: collapse;
}

.rating-table th,
.rating-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}

.rating-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.02);
}

.rating-links {
  margin: 8px 0 20px;
  flex-wrap: wrap;
}

.rating-updated {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 6px;
}

.rating-note {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: var(--text);
}

.rating-table tr + tr {
  border-top: 1px solid #e5e7eb;
}

.rating-rank {
  font-weight: 700;
  white-space: nowrap;
}

.rating-entity a {
  color: var(--text);
  text-decoration: none;
}

.rating-entity a:hover {
  text-decoration: underline;
}

.list-card .rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.seo-text a,
.seo-text a:visited {
  color: var(--text);
  text-decoration: underline;
}

.seo-text a:hover {
  color: var(--text);
  text-decoration: underline;
}

.similar {
  padding-bottom: 48px;
}

/* similar list layout */
.similar-list {
  margin-bottom: 16px;
}

.similar-more {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(112, 255, 79, 0.42);
  border-radius: 999px;
  background: #050505;
  color: #70ff4f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: none;
}

.btn-arrow:hover {
  border-color: #70ff4f;
  background: #0b0b0b;
  color: #70ff4f;
}

.btn-arrow .arrow {
  font-size: 18px;
  line-height: 1;
}

.city-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0 10px;
}

.city-hero h1 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 6px 0 8px;
}

.city-hero-heading-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.city-hero-heading-row h1 {
  margin: 6px 0 8px;
}

.venue-follow-heart {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.venue-follow-heart::before {
  content: "";
  width: 27px;
  height: 27px;
  display: block;
  background: transparent url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7.2-4.35-9.65-8.52C.42 9.2 1.4 5.2 4.76 4.1 7.13 3.32 9.7 4.27 12 6.84c2.3-2.57 4.87-3.52 7.24-2.74 3.36 1.1 4.34 5.1 2.41 8.38C19.2 16.65 12 21 12 21z' fill='white' stroke='%23111827' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: none;
}

.venue-follow-heart.is-active::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7.2-4.35-9.65-8.52C.42 9.2 1.4 5.2 4.76 4.1 7.13 3.32 9.7 4.27 12 6.84c2.3-2.57 4.87-3.52 7.24-2.74 3.36 1.1 4.34 5.1 2.41 8.38C19.2 16.65 12 21 12 21z' fill='%23ff3b47' stroke='%23111827' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.city-meta {
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.admin-container {
  padding: 32px 0 60px;
}

.admin-login,
.admin-panel {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.admin-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.theme-section {
  margin-top: 18px;
}

.theme-section h4 {
  margin: 0 0 8px;
}

.theme-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.theme-control input[type="color"] {
  width: 52px;
  height: 38px;
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(29, 27, 31, 0.12);
  background: #fff;
}

.theme-control input[type="text"] {
  min-width: 220px;
}

.branding-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.branding-preview img {
  height: 40px;
  width: auto;
  border-radius: 10px;
  background: var(--surface-alt);
  border: 1px solid #e5e7eb;
  padding: 6px;
}

.branding-preview small {
  color: var(--muted);
}

.default-images-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 16px;
}

.default-image-item {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: #fff;
  display: grid;
  gap: 10px;
}

.default-image-title {
  font-weight: 700;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(29, 27, 31, 0.12);
}

.admin-form.inline {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 20px 0;
}

.admin-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  overflow-x: auto;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  color: var(--muted);
  font-weight: 600;
}

.admin-card h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-subnav {
  display: flex;
  gap: 10px;
  margin: 14px 0 22px;
  flex-wrap: wrap;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
}

.admin-item {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(29, 27, 31, 0.08);
  display: grid;
  gap: 6px;
  cursor: pointer;
}

.admin-item.selected {
  border-color: var(--accent);
  background: rgba(255, 59, 47, 0.08);
}

.admin-list-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-tab {
  appearance: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.admin-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.admin-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.admin-pagination .btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.meta-templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.template-group {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.template-group h4 {
  margin: 0;
  font-size: 14px;
}

.template-group label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.template-group input,
.template-group textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(29, 27, 31, 0.12);
  font-size: 13px;
}

.meta-category-section {
  margin-top: 12px;
}

.meta-category-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.meta-category-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 10px;
}

.meta-category-item h5 {
  margin: 0;
  font-size: 14px;
}

.meta-category-item .sub {
  margin: 0;
}

.meta-category-item label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.meta-category-item input,
.meta-category-item textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(29, 27, 31, 0.12);
  font-size: 13px;
}

.meta-variables {
  margin-top: 16px;
}

.meta-var-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.meta-var {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 20px 0 40px;
}

.list-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.list-card-link {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.list-card-rating {
  padding: 0 16px 16px;
}

.list-card-artist .list-card-body {
  padding-bottom: 10px;
}

.list-card h3 {
  margin: 0;
}

.list-card-body h3 {
  font-size: 16px;
}

.list-card-media {
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: #e5e7eb;
}

.list-card-media.placeholder {
  background: linear-gradient(135deg, rgba(255, 59, 47, 0.12), rgba(255, 186, 73, 0.2));
}

.list-card-body {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
}

.list-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal:target {
  display: flex;
}

.modal-dialog {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  width: min(520px, 92vw);
  max-height: 86vh;
  overflow: auto;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.modal-close-float {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.city-modal {
  width: min(560px, 92vw);
  border-radius: 28px;
  padding: 20px 20px 18px;
}

.city-modal-header h3 {
  font-size: 24px;
  margin: 0;
}

.city-modal-header .modal-close {
  font-size: 30px;
  color: var(--text);
}

.city-search {
  position: relative;
  margin: 12px 0 14px;
}

.city-search input {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  background: #fff;
}

.city-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.city-search-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
}

.city-featured {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.city-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.city-pill.active {
  border-color: rgba(255, 59, 47, 0.4);
  background: rgba(255, 59, 47, 0.08);
}

.city-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 0;
}

.city-list {
  display: grid;
  gap: 14px;
}

.city-group {
  display: grid;
  gap: 6px;
}

.city-letter {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.city-item {
  display: block;
  padding: 6px 0;
  border-radius: 0;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: none;
}

.city-item.active {
  color: var(--accent);
  font-weight: 700;
}

.calendar-modal {
  width: min(760px, 94vw);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  max-height: 68vh;
  overflow: hidden;
}

.calendar-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.calendar-modal-header h3 {
  margin: 0;
  font-size: 22px;
}

.calendar-modal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.calendar-periods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.calendar-modal-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.calendar-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding-top: 6px;
}

.calendar-modal-footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  background: var(--surface);
  padding-top: 8px;
}

.calendar-modal-footer .btn-reset,
.calendar-modal-footer .btn-dark {
  flex: 0 0 auto;
  min-width: 140px;
  text-align: center;
}

.btn-outline {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #1b1b1f;
}

.btn-dark {
  background: #111827;
  color: #fff;
}

.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.modal-close {
  text-decoration: none;
  font-size: 22px;
  color: var(--muted);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  max-height: 50vh;
  overflow: auto;
}

.hero-nearest-item {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(29, 27, 31, 0.08);
}

.hero-nearest-item:last-child {
  border-bottom: none;
}

.event-links {
  margin-top: 12px;
}

.not-found {
  margin: 28px 0 34px;
}

.not-found-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 12px;
}

.not-found-code {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.not-found-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 18px auto 8px;
  flex-wrap: wrap;
}

.not-found-search input {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  min-width: min(420px, 80vw);
  font-size: 16px;
  background: #fff;
}

.not-found .btn-primary,
.not-found .btn-ghost {
  background: #C1FF72;
  border: 1px solid #C1FF72;
  color: #111827;
}

.not-found .btn-primary:hover,
.not-found .btn-ghost:hover {
  background: #9FFF24;
  border-color: #9FFF24;
  color: #111827;
}

.not-found-popular {
  margin: 0 0 72px;
}

.not-found-popular .section-header {
  margin-bottom: 18px;
}

.breadcrumbs {
  display: block;
  overflow-x: auto;
  padding-bottom: 0;
  margin: 18px 0 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.breadcrumbs::-webkit-scrollbar {
  height: 0;
  display: none;
}

.breadcrumbs::-webkit-scrollbar-thumb {
  background: transparent;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  margin: 0 10px;
  color: var(--muted);
}

.breadcrumb-item a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.breadcrumb-item.current a,
.breadcrumb-item.current span {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}

.breadcrumbs + .city-hero {
  padding-top: 0;
}

.breadcrumbs + .city-hero h1 {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.form-hint {
  color: var(--muted);
  font-size: 13px;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    height: 80px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .calendar-column {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .header-center {
    justify-content: flex-start;
    flex: 1 1 0;
    min-width: 0;
  }
  .mobile-category-strip {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    padding: 0 2px;
  }
  .mobile-category-link {
    background: transparent;
    border-color: rgba(112, 255, 79, 0.32);
    color: #70ff4f;
    box-shadow: none;
    font-size: 12px;
    padding: 7px 12px;
  }
  .mobile-category-link.active {
    background: #00f020;
    border-color: #00f020;
    color: #020402;
  }
  .site-header .header-search {
    display: inline-flex;
    background: #0b0b0b;
    border-color: rgba(112, 255, 79, 0.32);
    color: #70ff4f;
  }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 8px;
  }
  .header-left {
    display: none;
    min-width: 0;
  }
  .mobile-strip-logo {
    display: inline-flex;
    margin-right: 6px;
  }
  .header-right {
    flex: 0 0 auto;
    position: relative;
    z-index: 3;
    padding-left: 4px;
    background: #000;
  }
  .header-center {
    overflow: hidden;
  }
  .header-actions {
    gap: 5px;
  }
  .burger {
    display: inline-flex;
    width: 38px;
    min-width: 38px;
    height: 38px;
    background: #0b0b0b;
    border-color: rgba(112, 255, 79, 0.32);
    color: #70ff4f;
    box-shadow: none;
  }
  .city-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-hero {
    padding: 0;
    gap: 0;
  }
  .event-media {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .event-hero > .favorite-icon-button {
    top: 10px;
    right: 10px;
  }
  .event-info {
    padding: 20px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1134px, 92vw);
  }
  .city-hero h1,
  .event-info h1 {
    font-size: 30px;
    line-height: 1.1;
  }
  .site-header .logo img {
    height: var(--header-logo-size-mobile, 52px);
  }
  .site-footer .logo img {
    height: 52px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .footer-brand,
  .footer-contacts {
    max-width: none;
  }
  .footer-title {
    font-size: 21px;
    margin-bottom: 18px;
  }
  .footer-brand p,
  .footer-contacts p:not(.footer-title),
  .footer-links a,
  .footer-contacts a {
    font-size: 15px;
  }
  .footer-dzen {
    min-width: 168px;
    min-height: 48px;
    font-size: 22px !important;
  }
  .venue-directory {
    column-count: 2;
  }
  .events-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .event-card img {
    height: 160px;
  }
  .date-strip-track {
    --days-visible: 5;
    --day-gap: 8px;
    --pill-size: 48px;
  }
  .date-pill {
    padding: 6px 6px;
    border-radius: 12px;
  }
  .date-number {
    font-size: 13px;
  }
  .date-weekday,
  .date-month {
    font-size: 9px;
  }
  .calendar-toggle {
    width: 38px;
    height: 38px;
  }
  .date-strip-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .modal {
    align-items: center;
    padding-top: 96px;
    padding-bottom: 24px;
  }
  .calendar-modal {
    max-height: calc(100vh - 140px);
  }
  .calendar-modal-body {
    padding-top: 6px;
    max-height: min(360px, calc(100vh - 260px));
  }
  .calendar {
    gap: 8px;
  }
  .calendar-grid {
    gap: 4px;
  }
  .calendar-day,
  .calendar-cell {
    padding: 6px 0;
    font-size: 12px;
  }
  .calendar-cell {
    padding: 0 0 6px;
  }
  .calendar-cell.has-events::after {
    width: 4px;
    height: 4px;
    bottom: 4px;
  }
  .calendar-modal .modal-close {
    font-size: 26px;
  }
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .search-form {
    flex-direction: column;
    align-items: stretch;
  }
  .search-form .btn {
    width: 100%;
  }
  .search-hero {
    flex-direction: column;
  }
  .search-inline {
    width: 100%;
  }
  .search-inline .btn {
    width: 100%;
  }
  .header-search {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }
  .header-search-label {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 48px 0 56px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .venue-directory {
    column-count: 1;
  }
  .events-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

html[data-theme="dark"] {
  --bg: #0f1116;
  --surface: #151922;
  --surface-alt: #1d2230;
  --text: #f6f7fb;
  --muted: #9aa3b2;
  --accent: #ff4d4d;
  --accent-dark: #e63c3c;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .page-bg {
  background: #ffffff !important;
  opacity: 1;
}

html[data-theme="dark"] .site-header {
  background: rgba(18, 22, 33, 0.56);
  border-bottom: 1px solid rgba(173, 195, 255, 0.18);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(206, 223, 255, 0.17);
}

html[data-theme="dark"] .city-trigger {
  color: var(--accent);
}

html[data-theme="dark"] .nav-more-toggle {
  color: var(--muted);
}

html[data-theme="dark"] .nav-more-menu {
  background: rgba(23, 30, 44, 0.58);
  border-color: rgba(173, 195, 255, 0.22);
}

html[data-theme="dark"] .nav-category-menu {
  background: rgba(23, 30, 44, 0.58);
  border-color: rgba(173, 195, 255, 0.22);
}

html[data-theme="dark"] .nav-more-menu a:hover,
html[data-theme="dark"] .nav-category-menu a:hover {
  background: rgba(206, 223, 255, 0.14);
}

html[data-theme="dark"] .mobile-category-link {
  background: #1b2030;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .nav-pill,
html[data-theme="dark"] .nav-more-toggle {
  background: rgba(27, 32, 48, 0.48);
  border-color: rgba(173, 195, 255, 0.22);
  color: var(--muted);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(206, 223, 255, 0.14);
}

html[data-theme="dark"] .nav-pill.active {
  background: color-mix(in srgb, var(--accent) 72%, #ffffff 28%);
  border-color: color-mix(in srgb, var(--accent) 65%, #ffffff 35%);
  color: #fff;
}

html[data-theme="dark"] .mobile-category-link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@supports not (background: color-mix(in srgb, #000 50%, #fff 50%)) {
  .nav-pill.active {
    background: var(--accent);
    border-color: var(--accent);
  }

  html[data-theme="dark"] .nav-pill.active {
    background: var(--accent);
    border-color: var(--accent);
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.9);
  }

  .nav-pill,
  .nav-more-toggle,
  .nav-more-menu,
  .nav-category-menu {
    background: rgba(255, 255, 255, 0.9);
  }

  html[data-theme="dark"] .site-header {
    background: rgba(18, 22, 33, 0.92);
  }

  html[data-theme="dark"] .nav-pill,
  html[data-theme="dark"] .nav-more-toggle,
  html[data-theme="dark"] .nav-more-menu,
  html[data-theme="dark"] .nav-category-menu {
    background: rgba(23, 30, 44, 0.9);
  }
}

html[data-theme="dark"] .event-card {
  background: rgba(22, 28, 42, 0.5);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .event-card::before {
  background:
    linear-gradient(160deg, rgba(206, 223, 255, 0.2) 0%, rgba(206, 223, 255, 0.06) 42%, rgba(206, 223, 255, 0) 100%);
}

html[data-theme="dark"] .event-card:hover {
  background: rgba(27, 34, 50, 0.58);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .event-card {
    background: rgba(255, 255, 255, 0.86);
  }

  html[data-theme="dark"] .event-card {
    background: rgba(21, 25, 34, 0.9);
  }
}

html[data-theme="dark"] .mobile-menu-divider {
  background: #2b3344;
}

html[data-theme="dark"] .btn-outline {
  background: #fff;
  border-color: #e5e7eb;
  color: #1b1b1f;
}

html[data-theme="dark"] .btn-dark {
  background: #000;
}

html[data-theme="dark"] .artist-card {
  background: #1b2030;
  color: var(--text);
}

html[data-theme="dark"] .main-nav a {
  color: var(--muted);
}

html[data-theme="dark"] .main-nav a.active,
html[data-theme="dark"] .main-nav a:hover {
  color: var(--text);
}

html[data-theme="dark"] .theme-toggle input {
  background: #1f2430;
}

html[data-theme="dark"] .theme-toggle input::after {
  background: #fff;
}

html[data-theme="dark"] .search-trigger {
  background: #151a26;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .burger {
  background: #151a26;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .mobile-menu-panel {
  background: var(--surface);
}

html[data-theme="dark"] .mobile-menu-close {
  background: #151a26;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .mobile-menu-theme {
  border-top-color: #2b3344;
}

html[data-theme="dark"] .mobile-theme-label {
  color: var(--text);
}

html[data-theme="dark"] .search-form input {
  background: #111522;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .search-form input::placeholder {
  color: var(--muted);
}

html[data-theme="dark"] .search-inline input {
  background: #111522;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .city-modal {
  background: var(--surface);
}

html[data-theme="dark"] .city-search input {
  background: #111522;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .not-found-search input {
  background: #111522;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .city-pill {
  background: #151a26;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .city-pill.active {
  background: rgba(255, 77, 77, 0.18);
  border-color: rgba(255, 77, 77, 0.45);
}

html[data-theme="dark"] .city-divider {
  background: #2b3344;
}

html[data-theme="dark"] .chip {
  background: #fff;
  border-color: #e5e7eb;
  color: #1b1b1f;
}

html[data-theme="dark"] .chip-row .chip:not(.active):not(.disabled),
html[data-theme="dark"] .period-price-row .chip:not(.active):not(.disabled) {
  background: #fff;
  border-color: #e5e7eb;
  color: #1b1b1f;
}

html[data-theme="dark"] .chip.disabled {
  background: #111522;
  color: #6b7280;
  border-color: #1f2737;
}

html[data-theme="dark"] .date-pill {
  background: transparent;
  color: var(--text);
}

html[data-theme="dark"] .date-pill:not(.disabled):not(.selected) {
  background: rgb(0 0 0);
}

html[data-theme="dark"] .date-pill .date-number,
html[data-theme="dark"] .date-pill .date-weekday,
html[data-theme="dark"] .date-pill .date-month {
  color: #ffffff;
}

html[data-theme="dark"] .date-pill.weekend .date-number,
html[data-theme="dark"] .date-pill.weekend .date-weekday {
  color: var(--accent);
}

html[data-theme="dark"] .date-pill.weekend .date-month {
  color: #ffffff;
}

html[data-theme="dark"] .date-pill.selected {
  background: #2b3344;
  border: 1px solid #2b3344;
}

html[data-theme="dark"] .date-pill.disabled {
  background: transparent;
  color: var(--muted);
}

html[data-theme="dark"] .date-pill-all {
  background: #111522;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--muted);
}

html[data-theme="dark"] .date-pill-month {
  background: #fff;
  border-color: #9FFF24;
  color: #111827;
}

html[data-theme="dark"] .date-pill-month.disabled {
  background: #111522;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--muted);
}

html[data-theme="dark"] .calendar-toggle {
  background: #C1FF72;
  border-color: #C1FF72;
  color: #111827;
}

html[data-theme="dark"] .date-strip-arrow {
  background: #151a26;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .date-strip-track::-webkit-scrollbar-thumb {
  background: #2b3344;
}

html[data-theme="dark"] .date-strip {
  background: transparent;
}

html[data-theme="dark"] .date-month-title {
  color: #9aa4b2;
}

html[data-theme="dark"] .date-month-title {
  color: #9aa4b2;
}

html[data-theme="dark"] .date-filter {
  background: #161b27;
  border-color: #2b3344;
}

html[data-theme="dark"] .price-panel {
  background: #101827;
  border: 1px solid #2b3344;
}

html[data-theme="dark"] .price-quick-link {
  color: #1b1b1f;
}

html[data-theme="dark"] .price-inputs input {
  background: #0b1220;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .empty-state {
  background: rgba(17, 20, 30, 0.85);
}

html[data-theme="dark"] .event-price {
  background: rgba(159, 255, 36, 0.72) !important;
  border: none;
  color: #111827 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .event-price {
    background: rgba(159, 255, 36, 0.72) !important;
  }

  html[data-theme="dark"] .event-price {
    background: rgba(159, 255, 36, 0.72) !important;
  }
}

html[data-theme="dark"] .calendar-cell {
  background: rgba(17, 20, 30, 0.9);
}

html[data-theme="dark"] .calendar-cell:hover {
  background: rgba(159, 255, 36, 0.16);
}

html[data-theme="dark"] .calendar-cell.selected {
  background: rgba(159, 255, 36, 0.2);
  border-color: rgba(159, 255, 36, 0.58);
}

html[data-theme="dark"] .calendar-cell.disabled {
  background: rgba(17, 20, 30, 0.5);
  color: var(--muted);
}

html[data-theme="dark"] .page-link,
html[data-theme="dark"] .page-nav {
  background: #151a26;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .page-link.active {
  background: #9FFF24;
  border-color: #9FFF24;
  color: #111827;
}

html[data-theme="dark"] .page-nav.disabled {
  background: #111522;
  border-color: #1f2737;
  color: #6b7280;
}

html[data-theme="dark"] .site-footer {
  background: #000;
  border-top: 4px solid #00f020;
}

html[data-theme="dark"] .event-hero {
  background: #151922;
}

html[data-theme="dark"] .event-media {
  background: #1d2230;
  background-size: cover;
  background-position: center;
}

html[data-theme="dark"] .default-image-item {
  background: #151a26;
  border-color: #2b3344;
}

html[data-theme="dark"] .modal-close-float {
  background: #151a26;
  border-color: #2b3344;
  color: var(--text);
}

html[data-theme="dark"] .event-map {
  border-color: #2b3344;
}

html[data-theme="dark"] .btn-ghost {
  background: #e5e7eb;
  color: #111827;
}

html[data-theme="dark"] .rating-badge-wrap .rating-badge {
  background: #252525;
  border-color: #252525;
  color: #fff;
}

html[data-theme="dark"] .list-card {
  background: #151922;
}

html[data-theme="dark"] .list-card-media {
  background-color: #1d2230;
}

.account-header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.account-header-nav a {
  color: #fff;
  text-decoration: none;
}

.account-header-name {
  display: inline-block;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.mobile-account-nav {
  display: flex;
  align-items: center;
  margin: 6px 0 18px;
}

.mobile-account-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(112, 255, 79, 0.42);
  border-radius: 999px;
  background: #050505;
  color: #70ff4f;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.account-auth,
.account-page {
  padding: 48px 0 80px;
}

.account-auth {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 48px 0 80px;
}

.account-auth-card,
.account-panel,
.account-sidebar,
.account-content {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.account-auth-card {
  width: min(480px, 100%);
  margin: 0 auto;
  padding: 56px 48px 48px;
  text-align: center;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
}

.account-auth-brand {
  display: none;
}

.account-auth-card h1,
.account-content h1 {
  margin: 0 0 22px;
}

.account-auth-card h1 {
  margin: 0 0 8px;
  color: #1a1c1c;
  font-size: 48px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.account-auth-lead {
  max-width: 330px;
  margin: 0 auto 48px;
  color: #5f5e5e;
  font-size: 16px;
  line-height: 24px;
}

.account-form {
  display: grid;
  gap: 16px;
}

.account-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.account-form input[type="email"],
.account-form input[type="password"],
.account-form input[type="text"] {
  width: 100%;
  min-height: 54px;
  display: block;
  border: 1px solid #d8dee8 !important;
  border-radius: 12px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: #ffffff !important;
  box-shadow: none;
  opacity: 1;
}

.account-form input:disabled {
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  background: #f6f7f9 !important;
  opacity: 1;
}

.account-form input:focus {
  outline: none;
  border-color: #9FFF24 !important;
  box-shadow: 0 0 0 3px rgba(159, 255, 36, 0.18);
  background: #fff;
}

.account-form .btn-primary {
  background: #9FFF24 !important;
  border: 1px solid #9FFF24 !important;
  color: #102000 !important;
}

.account-form .btn-primary:hover {
  background: #7ee900 !important;
  border-color: #7ee900 !important;
  color: #102000 !important;
}

.account-auth-card .account-form {
  gap: 24px;
}

.account-auth-card .account-form label {
  gap: 4px;
  color: #424938;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.account-auth-card .account-form input[type="email"],
.account-auth-card .account-form input[type="password"],
.account-auth-card .account-form input[type="text"] {
  min-height: 54px;
  border: 1px solid #c2c9b3 !important;
  border-radius: 8px;
  padding: 15px 24px;
  background: #f3f3f3 !important;
}

.account-auth-card .account-form input:focus {
  border-color: #416900 !important;
  outline: none;
  box-shadow: 0 0 0 4px rgba(65, 105, 0, 0.1);
  background: #fff !important;
}

.account-auth-card .account-form input:-webkit-autofill,
.account-auth-card .account-form input:-webkit-autofill:hover,
.account-auth-card .account-form input:-webkit-autofill:focus {
  border: 1px solid #c2c9b3 !important;
  -webkit-box-shadow: 0 0 0 1000px #f3f3f3 inset;
  -webkit-text-fill-color: #1a1c1c;
}

.account-auth-card .account-form .btn-primary {
  min-height: 48px;
  margin-top: 24px;
  border-radius: 8px;
  background: #c1ff72 !important;
  border-color: #c1ff72 !important;
  color: #102000 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 28px rgba(193, 255, 114, 0.22);
}

.account-auth-card .account-form .btn-primary:hover {
  background: #b5ef66 !important;
  border-color: #b5ef66 !important;
  color: #102000 !important;
}

.account-content .account-form input[type="email"],
.account-content .account-form input[type="password"],
.account-content .account-form input[type="text"] {
  border: 1px solid #d8dee8 !important;
  background: #fff !important;
}

.account-content .account-form input:disabled {
  background: #f6f7f9 !important;
}

.account-content .account-form input:focus {
  border-color: #9FFF24 !important;
  box-shadow: 0 0 0 3px rgba(159, 255, 36, 0.18);
}

.account-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
  line-height: 1.35;
}

.account-checkbox input {
  margin-top: 4px;
}

.account-message,
.account-error {
  padding: 13px 15px;
  border-radius: 8px;
  margin: 0 0 16px;
  font-weight: 700;
}

.account-message {
  background: rgba(169, 255, 78, 0.22);
  color: #134e0b;
}

.account-error {
  background: rgba(255, 68, 68, 0.1);
  color: #b42318;
}

.btn-google {
  width: 100%;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  min-height: 58px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-google::before {
  content: 'G';
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border-radius: 50%;
  color: #4285f4;
  font-weight: 1000;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.12);
}

.account-auth-card .account-auth-separator {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
  color: var(--muted);
  font-weight: 800;
}

.account-auth-card .account-auth-separator::before,
.account-auth-card .account-auth-separator::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(194, 201, 179, 0.45);
}

.account-auth-card .account-auth-separator span {
  color: #5f5e5e;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.account-form-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  font-weight: 800;
}

.account-form-links a,
.account-debug-link a,
.account-item-title {
  color: var(--text);
}

.account-auth-card .account-modal-register {
  margin-top: 48px;
}

.account-auth-card .account-modal-register a {
  color: #416900;
  font-weight: 900;
}

.account-page {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 24px;
  align-items: start;
}

.account-sidebar,
.account-content,
.account-panel {
  padding: 24px;
}

.account-user-mini {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.account-user-mini img,
.account-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.account-user-mini span {
  color: var(--muted);
  word-break: break-word;
}

.account-sidebar nav {
  display: grid;
  gap: 8px;
}

.account-sidebar nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.account-sidebar nav a.active {
  border-color: #9FFF24;
  background: #9FFF24;
  color: #071100;
}

.account-hero {
  margin-bottom: 22px;
}

.account-hero p {
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

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

.account-stat-card {
  display: grid;
  gap: 8px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
}

.account-stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.account-stat-card strong {
  font-size: 28px;
}

.account-list {
  display: grid;
  gap: 12px;
}

.account-list-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-event-cards .events-list,
.account-artist-block .events-list {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.account-event-cards .event-card,
.account-artist-block .event-card {
  min-width: 0;
}

.account-venue-more {
  display: flex;
  justify-content: flex-end;
}

.account-artist-block {
  width: 100%;
  display: grid;
  gap: 16px;
}

.account-artist-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.account-artist-events {
  display: grid;
  gap: 8px;
}

.account-artist-event {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  background: #f8fafc;
}

.account-artist-event:hover strong {
  text-decoration: underline;
}

.account-artist-event span,
.account-muted {
  color: var(--muted);
}

.account-list-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.account-item-title {
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.account-item-title:hover {
  text-decoration: underline;
}

.account-item-actions,
.account-security-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.account-item-actions .btn-ghost:hover,
.account-artist-head [data-account-remove]:hover,
button[data-account-remove]:hover {
  background: #ff3b30 !important;
  border-color: #ff3b30 !important;
  color: #fff !important;
}

.account-danger-zone {
  margin-top: 20px;
  border-color: rgba(255, 59, 48, 0.25);
}

.account-danger-zone p {
  color: var(--muted);
  margin: 0 0 16px;
}

.btn-danger {
  background: #ff3b30;
  color: #fff;
}

.btn-danger:hover {
  background: #d92d20;
  color: #fff;
}

.account-inline-action {
  display: flex;
  justify-content: flex-end;
  margin: 24px 0 0;
}

.account-action-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #071100;
}

.event-hero > .favorite-icon-button,
.event-hero > .favorite-icon-button:hover,
.event-hero > .favorite-icon-button:focus-visible,
.event-hero > .favorite-icon-button.is-active,
.event-hero > .favorite-icon-button.is-active:hover,
.event-hero > .favorite-icon-button.account-action-button.is-active,
.event-hero > .favorite-icon-button.account-action-button.is-active:hover {
  border: 0 !important;
  background: transparent !important;
  color: #ff3b30;
  box-shadow: none !important;
}

.event-hero > .favorite-icon-button::before {
  width: 30px;
  height: 30px;
  background: transparent var(--favorite-heart-broken) center / contain no-repeat !important;
  filter: none !important;
}

.event-hero > .favorite-icon-button.is-active::before,
.event-hero > .favorite-icon-button.account-action-button.is-active::before {
  background-image: var(--favorite-heart-active) !important;
}

.account-auth-modal[hidden] {
  display: none;
}

.account-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
}

.account-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 28, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.account-auth-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
}

.account-register-top {
  display: flex;
  justify-content: flex-end;
  padding: 24px;
}

.account-register-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 48px;
  text-align: center;
}

.account-register-intro {
  margin-bottom: 48px;
}

.account-register-intro h2 {
  margin: 0 0 8px;
  color: #1a1c1c;
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
}

.account-register-intro p {
  max-width: 320px;
  margin: 0 auto;
  color: #5f5e5e;
  font-size: 16px;
  line-height: 24px;
}

.account-register-highlight {
  display: inline;
  padding: 1px 3px;
  background: #c1ff72;
  color: #102000;
}

.account-auth-close {
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: transparent;
  color: #5f5e5e;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.account-auth-close:hover {
  background: #f3f3f3;
}

.account-google-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(194, 201, 179, 0.55);
  border-radius: 8px;
  background: #fff;
  color: #1a1c1c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.account-google-button:hover {
  background: #f3f3f3;
  transform: translateY(-1px);
}

.account-auth-separator,
.account-modal-register {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.account-auth-separator {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
}

.account-auth-separator::before,
.account-auth-separator::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(194, 201, 179, 0.45);
}

.account-auth-separator span {
  color: #5f5e5e;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.account-modal-login {
  width: 100%;
  display: grid;
  gap: 24px;
}

.account-modal-login label {
  display: grid;
  gap: 4px;
  color: #424938;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: left;
}

.account-modal-login input {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 15px 24px;
  font: inherit;
  color: #1a1c1c;
  background: #f3f3f3;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.account-modal-login input:focus {
  border-color: #416900;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(65, 105, 0, 0.1);
}

.account-modal-login .account-modal-policy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: -4px;
  color: #5f5e5e;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.account-modal-policy input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid #c2c9b3;
  border-radius: 4px;
  accent-color: #9fff24;
  background: #fff;
}

.account-modal-policy a {
  color: #416900;
  font-weight: 800;
}

.account-password-field {
  position: relative;
  display: block;
}

.account-password-field input {
  padding-right: 58px;
}

.account-password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f5e5e;
  transform: translateY(-50%);
  cursor: pointer;
}

.account-password-toggle:hover {
  color: #416900;
}

.account-password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-register-submit {
  min-height: 48px;
  margin-top: 10px;
  border-radius: 8px;
  background: #c1ff72 !important;
  border-color: #c1ff72 !important;
  color: #102000 !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(193, 255, 114, 0.22);
}

.account-register-submit:hover {
  background: #b5ef66 !important;
  border-color: #b5ef66 !important;
}

.account-modal-error {
  color: #b42318;
  font-weight: 800;
}

.account-modal-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(193, 255, 114, 0.28);
  color: #304f00;
  font-weight: 700;
}

.account-modal-register {
  margin: 48px 0 0;
  color: #5f5e5e;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.account-modal-register a {
  color: #416900;
  font-weight: 800;
}

.account-modal-legal {
  max-width: 280px;
  margin: 80px 0 0;
  color: rgba(95, 94, 94, 0.55);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.account-modal-legal a {
  color: inherit;
}

.account-promotions {
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid rgba(169, 255, 78, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(169, 255, 78, 0.22), rgba(255, 255, 255, 0.9));
}

.account-promotions h2 {
  margin: 0 0 14px;
}

.account-promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.account-promo {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #fff;
}

.account-promo strong,
.account-promo-code {
  width: fit-content;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: #071100;
  color: #fff;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.account-promo-code:hover {
  background: #111827;
  color: #fff;
}

.account-promo span {
  font-weight: 900;
}

.account-promo p {
  margin: 0;
  color: var(--muted);
}

.account-promo small {
  color: var(--muted);
  font-weight: 700;
}

.account-copy-promo {
  width: fit-content;
  margin-top: 4px;
}

.account-promo-guide {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.account-promo-guide h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.account-promo-guide-steps {
  display: grid;
  gap: 22px;
  margin-top: 20px;
}

.promo-guide-step {
  display: grid;
  gap: 12px;
}

.promo-guide-step-text {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 900px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.promo-guide-step-text p {
  margin: 0;
}

.promo-shot {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: #f3f4f6;
}

.promo-step-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #9fff24;
  color: #071100;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(159, 255, 36, 0.28);
}

.promo-guide-step-text .promo-step-badge {
  position: static;
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.promo-shot-toolbar {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow: hidden;
  background: #fafafa;
}

.promo-shot-promocode,
.promo-shot-applied {
  padding-top: 0;
}

.promo-shot-toolbar span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9ecef;
  color: #1f2937;
  font-size: 12px;
}

.promo-shot-map {
  display: grid;
  min-height: 150px;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    repeating-radial-gradient(circle at center, rgba(17, 24, 39, 0.08) 0 2px, transparent 2px 9px),
    rgba(17, 24, 39, 0.5);
}

.promo-seat-modal {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
  align-items: center;
  width: min(280px, 82%);
  padding: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.promo-seat-modal strong,
.promo-seat-modal span {
  grid-column: 1 / -1;
}

.promo-seat-modal button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 4px;
  background: #ffe500;
  font: inherit;
  font-weight: 900;
}

.promo-shot-header {
  padding: 12px;
  text-align: center;
  font-weight: 800;
  background: #fff;
}

.promo-form-card {
  display: grid;
  gap: 10px;
  max-width: 330px;
  margin: 26px auto 24px;
}

.promo-form-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.promo-form-card span {
  padding: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
}

.promo-checkout-card,
.promo-applied-card {
  display: grid;
  gap: 12px;
  width: min(330px, calc(100% - 36px));
  margin: 48px auto;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.promo-checkout-card b {
  padding: 14px 16px;
  border-radius: 8px;
  background: #f8fafc;
}

.promo-applied-card em {
  color: #16a34a;
  font-style: normal;
}

.promo-applied-card s {
  color: var(--muted);
  font-size: 13px;
}

.promo-applied-card span {
  padding: 12px 14px;
  border: 1px solid #ffe500;
  background: #fff;
}

.promo-applied-card button {
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: #ffe500;
  font: inherit;
  font-weight: 900;
}

.account-reminder-row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px !important;
}

.account-reminder-row span {
  display: inline;
}

.account-days-input {
  width: 76px !important;
  min-height: 38px;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  text-align: center;
  font-weight: 900;
}

.account-admin-table-wrap {
  overflow-x: auto;
  margin: 18px 0 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.account-admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 14px;
}

.account-admin-table th,
.account-admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.account-admin-table th {
  background: #f6f7f9;
  font-weight: 900;
}

.account-admin-table td strong,
.account-admin-table td span {
  display: block;
}

.account-admin-user-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.account-admin-user-link:hover {
  text-decoration-color: currentColor;
}

.account-admin-table td span {
  margin-top: 4px;
  color: var(--muted);
}

.account-back-link {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 800;
}

.account-admin-user-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.account-admin-user-summary span {
  color: var(--muted);
}

.account-inline-form {
  margin: 0;
}

@media (max-width: 900px) {
  .account-header-nav {
    display: none;
  }

  .account-page {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .account-auth,
  .account-page {
    padding: 28px 0 54px;
  }

  .account-auth-card,
  .account-sidebar,
  .account-content,
  .account-panel {
    padding: 20px;
  }

  .account-auth .account-auth-card {
    padding: 34px 24px 36px;
  }

  .account-auth-card h1 {
    font-size: 38px;
    line-height: 44px;
  }

  .account-auth-lead {
    margin-bottom: 30px;
  }

  .account-register-top {
    padding: 18px;
  }

  .account-register-content {
    padding: 0 18px 30px;
  }

  .account-register-intro {
    margin-bottom: 30px;
  }

  .account-register-intro h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .account-modal-legal {
    margin-top: 40px;
  }

  .account-stats {
    grid-template-columns: 1fr;
  }

  .account-promo-guide {
    padding: 16px;
  }

  .account-promo-guide h2 {
    font-size: 24px;
  }

  .promo-guide-step-text {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .account-list-item {
    display: grid;
  }

  .account-item-actions,
  .account-security-actions,
  .account-inline-action {
    justify-content: stretch;
  }

  .account-item-actions .btn,
  .account-security-actions .btn,
  .account-inline-action .btn {
    width: 100%;
  }
}
