:root {
  color-scheme: dark;
  --bg: #07080c;
  --panel: #14161d;
  --panel-2: #1b1e27;
  --line: rgba(255, 255, 255, 0.11);
  --text: #fff8ef;
  --muted: #aeb2be;
  --gold: #f1d78f;
  --mint: #75d8b7;
  --red: #ed1c24;
  --liquid-reflection-angle: 18deg;
  --liquid-highlight-x: 20%;
  --liquid-highlight-y: 0%;
  --liquid-reflection-start: -70%;
  --liquid-reflection-end: 128%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(237, 28, 36, 0.18), transparent 25rem),
    radial-gradient(circle at 15% 0%, rgba(237, 28, 36, 0.16), transparent 24rem),
    linear-gradient(135deg, #07080c, #11131a 58%, #06070a);
}

button,
a {
  font: inherit;
}

button,
a,
select {
  transition: color 1500ms ease, background 1500ms ease, border-color 1500ms ease, box-shadow 1500ms ease, transform 1500ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(237, 28, 36, 0.35);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.brand span {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.site-nav nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav nav a.active {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--red);
}

main {
  display: grid;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 54px) 54px;
}

section[id] {
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: end;
  min-height: calc(100vh - 132px);
  padding: clamp(28px, 6vw, 72px) 0;
}

.city-discovery-hero {
  position: relative;
  isolation: isolate;
  margin-block-start: -24px;
  margin-inline: calc(-1 * clamp(18px, 4vw, 54px));
  padding-inline: clamp(18px, 4vw, 54px);
}

.city-discovery-hero::before,
.city-discovery-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.city-discovery-hero::before {
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(1.13) saturate(1.03);
}

.city-discovery-hero::after {
  z-index: 1;
}

.city-discovery-hero > .hero-copy,
.city-discovery-hero > .reward-card {
  position: relative;
  z-index: 2;
}

.city-discovery-hero--ibiza::before {
  background-image: url("/assets/city-heroes/ibiza-discovery-hero.jpg");
  background-position: 42% 48%;
}

.city-discovery-hero--ibiza::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.63) 0%, rgba(7, 8, 12, 0.54) 36%, rgba(7, 8, 12, 0.24) 62%, rgba(7, 8, 12, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 8, 12, 0.36) 0%, rgba(7, 8, 12, 0.02) 48%, rgba(7, 8, 12, 0.20) 100%);
}

.city-discovery-hero--mykonos::before {
  background-image: url("/assets/city-heroes/mykonos-discovery-hero.jpg");
  background-position: 50% 70%;
}

.city-discovery-hero--mykonos::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.62) 0%, rgba(7, 8, 12, 0.53) 36%, rgba(7, 8, 12, 0.20) 64%, rgba(7, 8, 12, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 8, 12, 0.34) 0%, rgba(7, 8, 12, 0.02) 50%, rgba(7, 8, 12, 0.18) 100%);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(52px, 8.6vw, 126px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
}

.city-row,
.stage-strip,
.action-row,
.calendar-controls,
.hero-actions,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-row {
  margin-top: 26px;
}

.city-row button,
.stage-strip button,
.action-row button,
.action-row a,
.hero-actions button,
.hero-actions a,
.mini-actions button,
.event-description a.special-event-ticket-button,
.event-media-hub-card a {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.city-row small {
  margin-left: 8px;
  color: currentColor;
  opacity: 0.7;
}

.city-row button:hover,
.stage-strip button:hover,
.action-row button:hover,
.action-row a:hover,
.hero-actions button:hover,
.hero-actions a:hover,
.mini-actions button:hover,
.event-description a.special-event-ticket-button:hover,
.event-media-hub-card a:hover {
  color: var(--red);
  border-color: #fff;
  background: #fff;
}

.city-row button.active,
.stage-strip button.active,
.action-row button:first-child,
.action-row a:first-child,
.hero-actions button:first-child,
.hero-actions a:first-child,
.mini-actions button.active {
  color: var(--text);
  border-color: rgba(237, 28, 36, 0.68);
  background: var(--red);
}

.city-row button.active:hover,
.stage-strip button.active:hover,
.action-row button:first-child:hover,
.action-row a:first-child:hover,
.hero-actions button:first-child:hover,
.hero-actions a:first-child:hover,
.mini-actions button.active:hover {
  color: var(--red);
  border-color: #fff;
  background: #fff;
}

.reward-card,
.calendar-panel,
.event-page,
.member-hook,
.phone-card,
.import-banner,
.event-media-hub,
.news-preview,
.agent-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 22, 29, 0.78);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.3);
}

.reward-card {
  padding: 22px;
  background:
    radial-gradient(circle at 85% 0%, rgba(117, 216, 183, 0.22), transparent 12rem),
    rgba(20, 22, 29, 0.84);
}

.reward-card span,
.phone-card span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.reward-card strong,
.phone-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--gold);
  font-size: 40px;
}

.reward-card p,
.phone-card p {
  margin-bottom: 0;
  color: var(--mint);
  font-size: 13px;
}

.ai-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 18px;
  align-items: end;
  padding: clamp(20px, 4vw, 34px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 0%, rgba(123, 232, 203, 0.12), transparent 20rem),
    rgba(15, 17, 22, 0.86);
}

.ai-search-panel h2 {
  max-width: 860px;
  margin-bottom: 10px;
  font-size: clamp(26px, 3.4vw, 44px);
}

.ai-search-panel p {
  max-width: 820px;
  margin-bottom: 0;
}

.ai-search-box {
  display: grid;
  gap: 10px;
}

.ai-search-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-search-box input {
  width: 100%;
  min-height: 58px;
  padding: 0 56px 0 18px;
  border: 1px solid rgba(237, 28, 36, 0.48);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.ai-search-box input::-webkit-search-cancel-button,
.ai-search-box input::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
}

.ai-search-box input[type="search"] {
  appearance: textfield;
  -webkit-appearance: textfield;
}

.ai-search-box input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.16);
}

.ai-search-input-wrap {
  position: relative;
  display: block;
}

.ai-search-clear {
  position: absolute;
  top: 50%;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(237, 28, 36, 0.42);
  cursor: pointer;
  line-height: 1;
  transform: translateY(-50%);
}

.ai-search-clear[hidden] {
  display: none;
}

.ai-search-clear:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(237, 28, 36, 0.64);
}

.ai-search-results {
  grid-column: 1 / -1;
  min-width: 0;
}

.ai-search-status {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-search-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 268px;
  overflow: auto;
  overscroll-behavior: contain;
}

.ai-search-result {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  text-align: left;
}

.ai-search-result:hover,
.ai-search-result:focus-visible,
.ai-search-result.is-active {
  border-color: rgba(237, 28, 36, 0.82);
  background: rgba(237, 28, 36, 0.12);
  outline: none;
}

.ai-search-result strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.1;
}

.ai-search-result span,
.ai-search-empty {
  margin-bottom: 0;
  color: var(--mint);
  font-size: 13px;
  line-height: 1.45;
}

.import-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.12), transparent 35%),
    rgba(20, 22, 29, 0.78);
}

.import-banner h2 {
  margin-bottom: 8px;
}

.import-banner p {
  margin-bottom: 0;
}

.agent-box {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.agent-box span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.agent-box strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--mint);
  font-size: 36px;
}

.news-preview {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 28, 36, 0.14), transparent 18rem),
    rgba(20, 22, 29, 0.78);
}

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

.news-grid article {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.news-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-grid strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
}

.news-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.news-grid b {
  align-self: end;
  color: var(--gold);
  font-size: 13px;
}

.stage-strip {
  position: sticky;
  top: 79px;
  z-index: 4;
  justify-content: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(18px);
}

.stage-strip-title {
  flex-basis: 100%;
  margin: 0 0 2px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.experience {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.experience:has(.event-page.full-width) {
  grid-template-columns: 1fr;
}

.calendar-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.panel-head span {
  color: var(--mint);
  font-size: 13px;
}

.club-head-logo {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.club-head-logo img {
  width: 76px;
  max-width: 22vw;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.club-head-logo span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.calendar-controls {
  align-items: end;
  margin-top: 12px;
}

.filter-block {
  display: grid;
  gap: 8px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-filter-row {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.filter-buttons button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.filter-buttons button:hover,
.month-tabs button:hover,
.mini-actions a:hover,
.quick-save:hover {
  color: var(--red);
  border-color: #fff;
  background: #fff;
}

.filter-buttons button.active {
  color: var(--text);
  border-color: var(--red);
  background: var(--red);
}

.filter-buttons button.active:hover,
.month-tabs button.active:hover,
.quick-save.saved:hover {
  color: var(--red);
  border-color: #fff;
  background: #fff;
}

.calendar-control-field {
  display: grid;
  gap: 6px;
  min-width: 128px;
  flex: 1;
}

.calendar-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.calendar-control-head span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.date-reset {
  border: 1px solid rgba(255, 31, 47, 0.45);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--red);
  background: rgba(255, 31, 47, 0.08);
  font: inherit;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
}

.date-reset:hover {
  color: var(--text);
  background: var(--red);
}

.date-reset:disabled {
  cursor: default;
  opacity: 0.35;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
}

.date-reset:disabled:hover {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.calendar-controls select {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.event-list {
  display: grid;
  gap: 10px;
  max-height: 980px;
  overflow: auto;
  padding-right: 6px;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.event-card.active {
  border-color: rgba(237, 28, 36, 0.52);
  background: rgba(237, 28, 36, 0.1);
}

.event-open {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  grid-template-rows: auto auto 1fr;
  gap: 8px 14px;
  width: 100%;
  min-height: 136px;
  padding: 14px 14px 44px 16px;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.event-open > span,
.event-open > strong,
.event-open > small,
.event-open > .area-pill {
  grid-column: 1;
}

.event-open img,
.event-open i {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 112px;
  height: 108px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.07);
}

.event-open img.cavo-paradiso-fit-poster,
.calendar-day img.cavo-paradiso-fit-poster {
  height: auto;
  aspect-ratio: 1010 / 1240;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
}

.event-open img.chinois-calendar-full-poster,
.calendar-day img.chinois-calendar-full-poster {
  height: auto;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
}

.event-open img.rumors-cova-santa-calendar-poster {
  width: 86px;
  height: 108px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.22);
}

.calendar-day img.rumors-cova-santa-calendar-poster {
  width: 22px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.22);
}

.single-club-calendar .calendar-day img.rumors-cova-santa-calendar-poster {
  width: 40px;
  aspect-ratio: 4 / 5;
}

.event-open img[src*="/assets/dc10-ibiza-2026/circoloco/2026/web/"],
.calendar-day img[src*="/assets/dc10-ibiza-2026/circoloco/2026/web/"] {
  height: auto;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
}

.event-open i {
  display: grid;
  place-items: center;
  color: var(--text);
  background: var(--red);
  font-style: normal;
  font-weight: 900;
}

.event-card:hover {
  border-color: rgba(237, 28, 36, 0.52);
}

.saved-sidebar-note {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.event-open span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-open small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.event-open .area-pill {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(237, 28, 36, 0.42);
  border-radius: 999px;
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.event-open strong {
  font-size: 21px;
  line-height: 1.16;
}

.quick-save {
  position: absolute;
  right: 128px;
  top: 92px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(237, 28, 36, 0.45);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.quick-save.saved {
  color: var(--text);
  border-color: var(--red);
  background: var(--red);
}

.event-card:has(.book-table-card) .event-open {
  gap: 12px 14px;
  padding-bottom: 54px;
}

.event-card.paradise-unvrs-card:has(.book-table-card-actions) .event-open {
  min-height: 184px;
  padding-bottom: 72px;
}

.event-card:has(.book-table-card) .event-open small {
  margin-top: 2px;
}

.event-card.scorpios-card .event-open .area-pill {
  grid-column: 2;
  grid-row: 4;
  justify-self: end;
  align-self: start;
}

.event-card.scorpios-card .event-open .area-pill.area-pill--terrace {
  color: var(--gold);
}

.event-card.scorpios-card:has(.book-table-card-actions) .event-open .area-pill {
  position: absolute;
  right: 16px;
  bottom: 17px;
  grid-column: auto;
  grid-row: auto;
}

.book-table-card-actions {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.event-card:has(.book-table-card-actions) .quick-save {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  line-height: 1;
  text-align: center;
}

.book-table-card {
  right: auto;
  left: auto;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.book-table-card,
.book-table-hero {
  color: var(--gold);
  border-color: rgba(237, 28, 36, 0.45);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.42);
}

.book-table-hero {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  text-align: center;
}

.ibiza-access-card-shell {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
}

.event-card:has(.ibiza-access-card-shell) .event-open {
  min-height: 136px;
  padding-bottom: 14px;
}

.ibiza-access-card-shell .quick-save {
  position: static;
  align-self: end;
  min-height: 38px;
  margin: 0;
  border-radius: 8px;
}

.ibiza-access-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.ibiza-access-actions.is-soldout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ibiza-soldout-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(237, 28, 36, 0.74);
  border-radius: 8px;
  color: #ff8d94;
  background: rgba(237, 28, 36, 0.18);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
}

.ibiza-access-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  min-height: 44px !important;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 7px 16px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(128%);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
  font: inherit;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 1500ms ease, background 1500ms ease, border-color 1500ms ease, box-shadow 1500ms ease, transform 1500ms ease;
}

.ibiza-access-link:hover,
.ibiza-access-link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(237, 28, 36, 0.23) 58%, rgba(255, 255, 255, 0.08)),
    rgba(237, 28, 36, 0.24);
  outline: none;
  transform: translateY(-1px);
}

.ibiza-access-actions-hero,
.ibiza-access-actions-checkout {
  flex: 1 0 100%;
  order: 0;
}

.ibiza-access-hero-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  width: fit-content;
  max-width: 100%;
}

.ibiza-access-hero-shell > .ibiza-access-actions-hero {
  grid-column: 1 / -1;
  width: 100%;
  contain: inline-size;
}

.ibiza-access-hero-shell > button {
  width: 100%;
}

.ibiza-access-actions.is-soldout .ibiza-soldout-request {
  border-color: var(--red);
  background: rgba(237, 28, 36, 0.48);
}

.list-note {
  margin: 4px 2px 0;
  font-size: 12px;
}

.list-more {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 10px 0 4px;
}

.liquid-button.compact {
  min-height: 38px;
  padding: 9px 16px;
  font-size: 13px;
}

.event-page {
  overflow: hidden;
}

.event-page:has(.search-empty-state) {
  align-self: stretch;
  display: grid;
}

.month-calendar {
  padding: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(117, 216, 183, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.025);
}

.calendar-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.month-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  max-width: min(100%, 620px);
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.month-tabs::-webkit-scrollbar {
  display: none;
}

.month-tabs button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 88px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  text-align: center;
  line-height: 1.1;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
}

.month-tabs button.active,
.month-tabs button.active {
  color: var(--text);
  border-color: var(--red);
  background: var(--red);
}

.month-calendar .month-tabs button:not(.active),
.month-calendar .month-tabs button:not(.active):hover,
.month-calendar .month-tabs button:not(.active):focus {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekday-row {
  gap: 8px;
  margin-bottom: 8px;
}

.weekday-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-grid {
  gap: 8px;
}

.calendar-event-overview-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.month-overview-scroll {
  max-height: min(54vh, 560px);
  padding-right: 6px;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.calendar-day {
  min-height: 138px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.calendar-day.empty {
  border-color: transparent;
  background: transparent;
}

.calendar-day.has-events {
  border-color: rgba(237, 28, 36, 0.34);
  background: rgba(237, 28, 36, 0.06);
}

.calendar-day.selected {
  outline: 2px solid var(--mint);
}

.calendar-day b {
  display: block;
  color: var(--gold);
  font-size: 15px;
}

.calendar-day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.calendar-day .calendar-day-head small {
  margin-top: 4px;
  text-align: left;
}

.calendar-day button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text);
  text-align: left;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.calendar-day .select-day-button {
  display: inline-grid;
  grid-template-columns: 1fr;
  place-items: center;
  flex: 0 0 auto;
  width: auto;
  min-height: 32px;
  margin: 0;
  padding: 0 10px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--gold);
  text-align: center;
  font-size: 12px;
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.calendar-day button:hover {
  color: var(--red);
  border-color: #fff;
  background: #fff;
}

.calendar-day img {
  width: 24px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
}

.calendar-day span {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.calendar-event-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.calendar-event-text strong,
.calendar-event-text em,
.calendar-event-text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-event-text strong {
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.calendar-event-text em {
  color: var(--mint);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.calendar-event-text small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.single-club-calendar .calendar-day button {
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 64px;
  padding: 7px;
}

.single-club-calendar .calendar-day img {
  width: 44px;
  height: 50px;
}

.single-club-calendar .calendar-event-text {
  gap: 3px;
}

.single-club-calendar .calendar-event-text strong {
  font-size: 12px;
}

.single-club-calendar .calendar-event-text em,
.single-club-calendar .calendar-event-text small {
  font-size: 11px;
}

.calendar-day small {
  display: block;
  margin-top: 7px;
  color: var(--mint);
  font-size: 11px;
}

.selected-day-events {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.day-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.calendar-event-day-list {
  display: grid;
  gap: 14px;
  max-height: min(62vh, 640px);
  padding-right: 6px;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.calendar-event-day {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.calendar-event-day .panel-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.calendar-event-day .day-event-grid {
  max-height: none;
  padding-right: 0;
  overflow: visible;
}

.month-overview {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.poster {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  min-height: 430px;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 82% 2%, rgba(237, 28, 36, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(237, 28, 36, 0.2), rgba(117, 216, 183, 0.08));
}

.poster > span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  color: var(--text);
  background: var(--red);
  font-size: 48px;
  font-weight: 900;
}

.poster-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.poster-image.defected-chinois-main-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.cavo-paradiso-fit-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.rumors-cova-santa-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.poster-image.david-guetta-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.elrow-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.paradise-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.carl-cox-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.john-summit-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.tiesto-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.anyma-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.fisher-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.armin-van-buuren-unvrs-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.unvrs-special-event-hero-poster {
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-image.bedouin-saga-hero-poster {
  display: block;
  border-color: transparent;
  background: transparent;
  clip-path: inset(0 0 6px 0 round 8px);
}

.poster-image[src*="/assets/dc10-ibiza-2026/circoloco/2026/web/"] {
  aspect-ratio: auto;
  object-fit: contain;
}

.bedouin-saga-event-hero .hero-meta-line {
  margin-top: -10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.poster h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 68px);
}

.event-page.pacha-blondish-event-page .poster h2 {
  font-size: clamp(30px, 4vw, 56px);
  overflow-wrap: anywhere;
}

.hero-actions {
  margin: 22px 0 12px;
}

.event-hero small {
  display: block;
  max-width: 620px;
  color: var(--mint);
  line-height: 1.5;
}

.event-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  padding: 18px;
}

.event-body section,
.side-modules div,
.checkout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.event-body section {
  padding: 18px;
}

.event-body:not(.search-empty-state) > section:first-child {
  display: flex;
  flex-direction: column;
  height: var(--event-description-box-height, clamp(620px, calc(100vh - 220px), 900px));
  min-height: 0;
  overflow: hidden;
}

.event-body.search-empty-state > section:first-child {
  display: grid;
  align-content: center;
  min-height: 100%;
}

.event-body.search-empty-state .eyebrow {
  text-align: center;
  font-size: 16px;
}

.event-description {
  max-width: 760px;
  max-height: 520px;
  overflow: auto;
  padding-right: 12px;
  margin-bottom: 16px;
  text-align: center;
  scrollbar-width: none;
}

.event-body:not(.search-empty-state) > section:first-child .event-description {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  max-height: none;
  margin-bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.event-description::-webkit-scrollbar {
  display: none;
}

.event-description p {
  margin-bottom: 22px;
}

.event-description h1,
.event-description h2,
.event-description h3 {
  margin: 22px 0 14px;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.16;
}

.event-description h3 {
  font-weight: 700;
}

.event-description .description-heading {
  max-width: 720px;
  margin: 34px auto 18px;
  color: #fff;
  font-size: clamp(18px, 1.85vw, 26px);
  font-weight: 900;
  line-height: 1.18;
}

.event-description .description-subtitle {
  max-width: 680px;
  margin: -4px auto 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.65vw, 22px);
  font-weight: 800;
  line-height: 1.24;
}

.event-description .description-heading-compact {
  font-size: clamp(16px, 1.5vw, 21px);
}

.event-description .description-heading + p {
  margin-top: -4px;
}

.event-description .lineup-names {
  color: var(--muted);
  font-size: clamp(16px, 1.65vw, 22px);
  font-weight: 800;
  line-height: 1.28;
}

.event-description .lineup-names span {
  display: block;
}

.event-description .hi-lineup-room {
  color: var(--muted);
}

.event-description .hi-lineup-room-label,
.event-description .hi-lineup-room-artists {
  display: block;
}

.event-description .hi-lineup-room-label {
  color: #fff;
  font-weight: 900;
}

.event-description .hi-lineup-room-artists {
  margin-top: 4px;
}

.event-description .unvrs-special-event-description h2 {
  margin-top: 36px;
  margin-bottom: 16px;
}

.event-description .unvrs-special-event-description h2 + p,
.event-description .unvrs-special-event-description h2 + .lineup-names,
.event-description .unvrs-special-event-description h2 + img {
  margin-top: 0;
}

.event-description .unvrs-special-event-description .special-event-description-subtitle {
  max-width: 720px;
  margin: 8px auto 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.25;
}

.event-description .glitterbox-amnesia-description h1,
.event-description .glitterbox-amnesia-description h2,
.event-description .glitterbox-amnesia-description h3,
.glitterbox-amnesia-event-page .event-description h1,
.glitterbox-amnesia-event-page .event-description h2,
.glitterbox-amnesia-event-page .event-description h3 {
  color: #fff;
  font-weight: 900;
}

.event-description .glitterbox-amnesia-description .special-event-description-subtitle {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 800;
}

.event-description .glitterbox-amnesia-description .lineup-names {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 800;
  line-height: 1.34;
}

.event-description .glitterbox-amnesia-description img.glitterbox-amnesia-generic-photo {
  display: block;
  width: 100%;
  max-width: 720px;
  max-height: 460px;
  object-fit: contain;
  margin: 18px auto 30px;
}

.event-description .unvrs-special-event-description .special-event-room-name {
  color: #fff;
  font-weight: 900;
}

.event-description .unvrs-special-event-description img.special-event-party-photo {
  max-height: 460px;
  object-fit: cover;
}

.event-description .unvrs-special-event-description img.cova-santa-event-poster-photo {
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.event-description .unvrs-special-event-description img.special-event-club-image {
  width: 100%;
  height: auto;
  max-height: none;
  margin: 30px auto 4px;
  object-fit: contain;
  object-position: center;
}

.event-description .official-event-description {
  max-width: 700px;
  margin: 4px auto 28px;
  color: #fff;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.event-description .description-end-logo {
  width: min(220px, 62vw);
  margin: 24px auto 4px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.event-description img.cavo-final-logo {
  width: min(220px, 62vw);
  height: auto;
  max-height: none;
  margin: 24px auto 4px;
  border: 0;
  object-fit: contain;
  object-position: center;
}

.event-description .nammos-final-reservation-prompt {
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  pointer-events: none;
}

.event-description .description-menu-link {
  margin: 30px auto;
  color: var(--red);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.25;
}

.event-description .description-menu-link a {
  color: inherit;
}

.event-description .description-cta-row {
  margin: 24px auto;
}

.event-description .description-button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 30px;
}

.event-description a.liquid-glass-button {
  display: inline-grid;
  place-items: center;
}

.event-description a.special-event-ticket-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 44px;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-decoration: none;
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 7px 16px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(128%);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
  transition: color 1500ms ease, background 1500ms ease, border-color 1500ms ease, box-shadow 1500ms ease, transform 1500ms ease;
}

.event-description a.liquid-glass-button::before,
.event-media-hub-card a::before,
.liquid-test .mini-actions a::before,
.liquid-test .mini-actions button::before,
.liquid-test .action-row a::before {
  position: absolute;
  inset: 1px 1px auto;
  height: 48%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  opacity: 0.65;
  pointer-events: none;
}

.event-description .description-heading strong {
  color: inherit;
  font-weight: 900;
}

.spotify-embed {
  margin: 22px auto 34px;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  height: 520px;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.event-description img {
  display: block;
  width: 100%;
  max-height: 420px;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.event-description img.defected-chinois-main-poster {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.event-description img.santanna-main-poster-fit {
  width: auto;
  max-width: 100%;
  max-height: 420px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.event-description img.martin-garrix-description-poster {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.event-description img.santanna-area-plan-image,
.event-description img.santanna-sunbeds-atmosphere-image,
.event-description img.santanna-vip-atmosphere-image {
  width: 100%;
  max-width: 100%;
  max-height: 420px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.event-description img.scorpios-terrace-description-image {
  width: min(100%, 720px);
  height: auto;
  max-height: 420px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.event-description img.scorpios-speedboat-transfer-image {
  width: 100%;
  height: 420px;
  max-height: 420px;
  margin-left: auto;
  margin-right: auto;
  object-fit: fill;
}

.event-description img.scorpios-culinary-lobster-image {
  width: 100%;
  height: 420px;
  max-height: 420px;
  margin-left: auto;
  margin-right: auto;
  object-fit: fill;
}

@media (min-width: 681px) {
  .event-page.alemagou-page .event-description img.alemagou-transfer-image,
  .event-description img.santanna-imove-transfer-image,
  .event-description img.scorpios-imove-transfer-image,
  .event-description img.scorpios-transfer-arrival-image,
  .event-description img.scorpios-speedboat-transfer-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }
}

.event-description.alemagou-description img,
.event-page.alemagou-page .event-description img {
  border: 0;
}

.event-page.alemagou-page .event-description {
  padding-right: 0;
}

.event-page.alemagou-page .event-description img.description-end-logo {
  width: min(220px, 62vw);
  height: auto;
  max-height: none;
  margin: 24px auto 4px;
  object-fit: contain;
  object-position: center;
}

.event-description img.nammos-intro-logo {
  width: min(180px, 48vw);
  height: auto;
  max-height: none;
  margin: -10px auto 24px;
  border: 0;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
}

.event-description img.nammos-desktop-imove-transfer-image {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.event-description img.interni-desktop-imove-transfer-image {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.event-description img.cavo-imove-transfer-image,
.event-description img.cavo-table-plan-image,
.event-description img.cavo-paradiso-fit-poster {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.event-description .void-description img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.event-description .public-layout-preview {
  margin: 24px auto 34px;
}

.event-page.alemagou-page .event-description .alemagou-table-plan-preview img {
  width: min(100%, 920px);
  height: auto;
  max-height: none;
  margin-right: auto;
  margin-left: auto;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.03);
}

.event-description .public-layout-preview figcaption,
.event-description .public-layout-preview .public-layout-title {
  margin-top: -14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.event-description a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-description a.liquid-glass-button,
.liquid-test .side-modules a,
.liquid-test .mini-actions a,
.liquid-test .mini-actions button,
.liquid-test .action-row a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.event-description a.special-event-ticket-button {
  color: var(--text);
}

.description-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.description-images img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.detail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.detail-strip span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--mint);
  font-size: 12px;
}

.offer-title {
  margin-top: 18px;
}

.offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.offer span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.offer b {
  color: var(--gold);
  white-space: nowrap;
}

.side-modules {
  display: grid;
  gap: 12px;
}

.side-modules div {
  padding: 15px;
}

.side-modules .scorpios-ops {
  display: grid;
  gap: 12px;
  border-color: rgba(237, 28, 36, 0.3);
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 28, 36, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.035);
}

.event-media-hub {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 28, 36, 0.14), transparent 18rem),
    rgba(20, 22, 29, 0.78);
}

.event-media-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 681px) {
  .event-media-hub-grid-4 {
    grid-template-columns: minmax(420px, 2.6fr) repeat(3, minmax(150px, 1fr));
    align-items: stretch;
  }

  .event-media-hub-grid-4 .event-media-hub-card:not(.event-media-hub-card-spotify) {
    grid-template-rows: auto 1fr auto;
    padding: 16px 14px;
    background:
      radial-gradient(circle at 50% 100%, rgba(237, 28, 36, 0.14), transparent 13rem),
      rgba(255, 255, 255, 0.04);
  }

.event-media-hub-grid-4 .event-media-hub-card:not(.event-media-hub-card-spotify) a {
  grid-row: 3;
  align-self: end;
}

  .event-media-hub-grid-4 .event-media-hub-card-spotify iframe {
    height: 152px;
    min-height: 152px;
  }

}

.event-media-hub-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(237, 28, 36, 0.12), transparent 16rem),
    rgba(255, 255, 255, 0.04);
}

.event-media-hub-card span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-media-hub-card strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
}

.event-media-hub-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.event-media-hub-card iframe {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.event-media-consent {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 152px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-media-consent p {
  margin: 0;
}

.event-media-consent button {
  justify-self: center;
}

.event-media-hub-card a {
  position: relative;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  overflow: hidden;
  isolation: isolate;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 7px 16px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(128%);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
  transition: color 1500ms ease, background 1500ms ease, border-color 1500ms ease, box-shadow 1500ms ease, transform 1500ms ease;
}

.event-media-hub-card a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(237, 28, 36, 0.23) 58%, rgba(255, 255, 255, 0.08)),
    rgba(237, 28, 36, 0.24);
  transform: translateY(-1px);
}

.scorpios-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.scorpios-plan-grid a {
  display: grid;
  gap: 7px;
  color: var(--text);
  text-decoration: none;
}

.scorpios-plan-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.scorpios-plan-grid span {
  color: var(--muted);
  font-size: 12px;
}

.scorpios-ops em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.side-modules p {
  margin-bottom: 0;
  font-size: 13px;
}

.side-modules a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mini-actions {
  margin-top: 12px;
}

.mini-actions button,
.mini-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.action-row a {
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.disabled-action {
  opacity: 0.52;
}

.city-row button,
.stage-strip button,
.action-row button,
.action-row a,
.hero-actions button,
.hero-actions a,
.mini-actions button,
.mini-actions a,
.filter-buttons button,
.month-tabs button,
.book-table-card,
.calendar-day button,
.club-grid button,
.saved-grid button,
.liquid-test .event-description a.liquid-glass-button,
.event-description a.special-event-ticket-button,
.event-media-hub-card a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 40px;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 7px 16px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(128%);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
  text-decoration: none;
  transition: color 1500ms ease, background 1500ms ease, border-color 1500ms ease, box-shadow 1500ms ease, transform 1500ms ease;
}

.city-row button.active,
.stage-strip button.active,
.filter-buttons button.active,
.month-tabs button.active,
.action-row button:first-child,
.action-row a:first-child,
.hero-actions button:first-child,
.hero-actions a:first-child,
.mini-actions button.active,
.quick-save.saved {
  border-color: rgba(237, 28, 36, 0.68);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(237, 28, 36, 0.36) 58%, rgba(255, 255, 255, 0.07)),
    rgba(237, 28, 36, 0.44);
}

.hero-actions.book-table-secondary-hero-actions button:first-child,
.hero-actions.book-table-secondary-hero-actions a:first-child {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.action-row.mykonos-reservation-actions button:first-child,
.action-row.mykonos-reservation-actions a:first-child {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.city-row button.active,
.city-row button.active:hover,
.stage-strip button.active,
.stage-strip button.active:hover {
  color: #fff;
  border-color: rgba(237, 28, 36, 0.74);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(237, 28, 36, 0.38) 58%, rgba(255, 255, 255, 0.07)),
    rgba(237, 28, 36, 0.5);
}

.month-calendar .filter-buttons button.active,
.month-calendar .filter-buttons button.active:hover,
.month-calendar .month-tabs button.active,
.month-calendar .month-tabs button.active:hover,
.calendar-panel .filter-buttons button.active,
.calendar-panel .filter-buttons button.active:hover {
  color: #fff;
  border-color: rgba(237, 28, 36, 0.74);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(237, 28, 36, 0.38) 58%, rgba(255, 255, 255, 0.07)),
    rgba(237, 28, 36, 0.5);
}

.month-calendar .month-tabs button:not(.active),
.month-calendar .month-tabs button:not(.active):hover,
.month-calendar .month-tabs button:not(.active):focus {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.month-calendar .calendar-day.selected {
  border-color: rgba(237, 28, 36, 0.74);
  outline-color: rgba(237, 28, 36, 0.84);
  background: rgba(237, 28, 36, 0.12);
}

.city-row button:hover,
.stage-strip button:hover,
.action-row button:hover,
.action-row a:hover,
.hero-actions button:hover,
.hero-actions a:hover,
.mini-actions button:hover,
.mini-actions a:hover,
.filter-buttons button:hover,
.month-tabs button:hover,
.book-table-card:hover,
.calendar-day button:hover,
.club-grid button:hover,
.saved-grid button:hover,
.liquid-test .event-description a.liquid-glass-button:hover,
.event-media-hub-card a:hover,
.event-description .unvrs-special-event-description a.special-event-ticket-button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(237, 28, 36, 0.23) 58%, rgba(255, 255, 255, 0.08)),
    rgba(237, 28, 36, 0.24);
  transform: translateY(-1px);
}

.city-row button.active,
.city-row button.active:hover,
.stage-strip button.active,
.stage-strip button.active:hover,
.calendar-panel .filter-buttons button.active,
.calendar-panel .filter-buttons button.active:hover,
.month-calendar .filter-buttons button.active,
.month-calendar .filter-buttons button.active:hover,
.month-calendar .month-tabs button.active,
.month-calendar .month-tabs button.active:hover {
  color: #fff;
  border-color: rgba(237, 28, 36, 0.74);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(237, 28, 36, 0.38) 58%, rgba(255, 255, 255, 0.07)),
    rgba(237, 28, 36, 0.5);
  transform: none;
}

.month-calendar .month-tabs button:not(.active),
.month-calendar .month-tabs button:not(.active):hover,
.month-calendar .month-tabs button:not(.active):focus {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  transform: none;
}

.city-row button::after,
.stage-strip button::after,
.action-row button::after,
.action-row a::after,
.hero-actions button::after,
.hero-actions a::after,
.mini-actions button::after,
.mini-actions a::after,
.filter-buttons button::after,
.month-tabs button::after,
.calendar-day button::after,
.club-grid button::after,
.saved-grid button::after,
.liquid-test .event-description a.liquid-glass-button::after,
.event-media-hub-card a::after,
.event-description .unvrs-special-event-description a.special-event-ticket-button::after {
  position: absolute;
  inset: -45% auto -45% var(--liquid-reflection-start);
  width: 42%;
  transform: rotate(var(--liquid-reflection-angle));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.city-row button:hover::after,
.stage-strip button:hover::after,
.action-row button:hover::after,
.action-row a:hover::after,
.hero-actions button:hover::after,
.hero-actions a:hover::after,
.mini-actions button:hover::after,
.mini-actions a:hover::after,
.filter-buttons button:hover::after,
.month-tabs button:hover::after,
.calendar-day button:hover::after,
.club-grid button:hover::after,
.saved-grid button:hover::after,
.liquid-test .event-description a.liquid-glass-button:hover::after,
.event-media-hub-card a:hover::after,
.event-description .unvrs-special-event-description a.special-event-ticket-button:hover::after {
  animation: liquidReflection 1500ms ease forwards;
}

.quick-save {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  min-height: 30px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px) saturate(128%);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
  transition: color 1500ms ease, background 1500ms ease, border-color 1500ms ease, box-shadow 1500ms ease, transform 1500ms ease;
}

.quick-save:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(237, 28, 36, 0.23) 58%, rgba(255, 255, 255, 0.08)),
    rgba(237, 28, 36, 0.24);
  transform: translateY(-1px);
}

.book-table-card {
  color: var(--gold);
  border-color: rgba(237, 28, 36, 0.45);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(237, 28, 36, 0.055) 50%, rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.42);
  box-shadow: none;
}

.book-table-card:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(237, 28, 36, 0.23) 58%, rgba(255, 255, 255, 0.08)),
    rgba(237, 28, 36, 0.24);
}

.quick-save::after {
  position: absolute;
  inset: -45% auto -45% var(--liquid-reflection-start);
  width: 42%;
  transform: rotate(var(--liquid-reflection-angle));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.quick-save:hover::after {
  animation: liquidReflection 1500ms ease forwards;
}

.event-open {
  min-height: 136px;
}

@keyframes liquidReflection {
  0% {
    left: var(--liquid-reflection-start);
    opacity: 0;
  }

  18% {
    opacity: 0.62;
  }

  100% {
    left: var(--liquid-reflection-end);
    opacity: 0;
  }
}

.clubs-page {
  padding: clamp(20px, 4vw, 34px);
}

.saved-page {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.saved-page > h2 {
  margin-bottom: 0;
}

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

.club-grid button {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.club-grid button:hover span,
.saved-grid button:hover span,
.calendar-day button:hover span {
  color: var(--red);
}

.calendar-day button:hover .calendar-event-text strong {
  color: var(--red);
}

.calendar-day button:hover .calendar-event-text em {
  color: #11131a;
}

/* Timing lock: every interactive control uses the same liquid-glass pace. */
button,
.action-row a,
.mini-actions a,
.filter-buttons button,
.month-tabs button,
.quick-save,
.calendar-day button,
.club-grid button,
.saved-grid button,
.event-description a.liquid-glass-button {
  transition-duration: 1500ms, 1500ms, 1500ms, 1500ms, 1500ms;
}

button:hover::after,
.action-row a:hover::after,
.mini-actions a:hover::after,
.filter-buttons button:hover::after,
.month-tabs button:hover::after,
.book-table-card:hover::after,
.quick-save:hover::after,
.calendar-day button:hover::after,
.club-grid button:hover::after,
.saved-grid button:hover::after,
.event-description a.liquid-glass-button:hover::after {
  animation-duration: 1500ms;
}

.club-grid img,
.club-grid i {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.07);
}

.club-grid span {
  color: var(--muted);
}

.club-detail {
  display: grid;
  gap: 18px;
}

.club-profile {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.club-profile img,
.club-profile i {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.07);
}

.club-profile i {
  display: grid;
  place-items: center;
  color: var(--text);
  background: var(--red);
  font-style: normal;
  font-size: 72px;
  font-weight: 900;
}

.club-description {
  max-height: 360px;
  overflow: auto;
  padding-right: 10px;
}

.club-description p {
  margin-bottom: 18px;
}

.club-description h1,
.club-description h2,
.club-description h3 {
  margin: 18px 0 12px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.14;
}

.club-description img {
  display: block;
  width: 100%;
  max-height: 340px;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.saved-page {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 22, 29, 0.78);
}

.saved-page-head h2,
.saved-day-head h3,
.saved-period-head h4 {
  margin: 0;
}

.saved-page-head > span,
.saved-period-head > span {
  color: var(--muted);
}

.saved-spotlight {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  padding: clamp(14px, 2.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(8, 10, 15, 0.66);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  scroll-margin-top: 128px;
}

.saved-spotlight::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(118deg, rgba(10, 11, 17, 0.38), rgba(10, 11, 17, 0.76) 62%, rgba(237, 28, 36, 0.2));
}

.saved-spotlight-backdrop {
  position: absolute;
  z-index: -2;
  inset: -32px;
  width: calc(100% + 64px);
  height: calc(100% + 64px);
  object-fit: cover;
  filter: blur(27px) brightness(0.76) saturate(1.3);
  opacity: 0.82;
  transform: scale(1.07);
}

.saved-spotlight-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 310px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  min-height: 410px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 3%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045) 48%, rgba(237, 28, 36, 0.08)),
    rgba(12, 14, 20, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 22px 60px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
}

.saved-spotlight-poster,
.saved-spotlight-poster-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
}

.saved-spotlight-poster {
  display: block;
  object-fit: cover;
}

.saved-spotlight-poster-placeholder {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: clamp(54px, 8vw, 94px);
  font-style: normal;
  background: rgba(255, 255, 255, 0.08);
}

.saved-spotlight-copy {
  min-width: 0;
}

.saved-spotlight-close {
  position: absolute;
  z-index: 4;
  top: clamp(24px, 3vw, 40px);
  right: clamp(24px, 3vw, 40px);
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.56);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.saved-spotlight-close:hover,
.saved-spotlight-close:focus-visible {
  border-color: rgba(237, 28, 36, 0.8);
  background: rgba(237, 28, 36, 0.42);
}

.saved-spotlight-label {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.saved-spotlight-copy h3 {
  max-width: 16ch;
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.saved-spotlight-hours {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.saved-spotlight-lineup {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.45;
}

.saved-spotlight-actions {
  margin-top: 22px;
}

.saved-spotlight-actions > button,
.saved-spotlight-actions > a,
.saved-spotlight-actions .ibiza-access-link {
  display: inline-grid;
  place-items: center;
  justify-content: center;
  min-height: 46px;
  text-align: center;
}

.saved-spotlight-actions .ibiza-access-actions.is-soldout {
  flex: 1 1 100%;
}

.saved-spotlight-actions .saved-open-full-event {
  min-width: min(100%, 190px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background:
    radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(237, 28, 36, 0.24)),
    rgba(255, 255, 255, 0.07);
}

.saved-day {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.saved-day-head {
  display: grid;
  gap: 3px;
}

.saved-period {
  display: grid;
  gap: 10px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.saved-period--day-to-night {
  border-left-color: #ff8a3d;
}

.saved-period--night {
  border-left-color: var(--red);
}

.saved-period--needs-review {
  border-left-color: rgba(255, 174, 76, 0.78);
}

.saved-period-head {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

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

.saved-event-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.saved-event-card.is-selected {
  border-color: rgba(237, 28, 36, 0.86);
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 0 1px rgba(237, 28, 36, 0.18), 0 14px 34px rgba(0, 0, 0, 0.2);
}

.saved-grid .saved-event-open {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 12px 12px 8px;
  border: 0;
  border-radius: 0;
  color: var(--text);
  text-align: left;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
}

.saved-grid .saved-event-open img,
.saved-grid .saved-event-open i {
  grid-row: 1 / 4;
  width: 72px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
}

.saved-grid .saved-event-open i {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-style: normal;
  background: rgba(255, 255, 255, 0.07);
}

.saved-grid .saved-event-open strong,
.saved-grid .saved-event-open span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.saved-grid .saved-card-time,
.saved-grid .saved-event-open:hover .saved-card-time {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.saved-grid .saved-card-meta,
.empty-saved {
  color: var(--muted);
}

.saved-grid .saved-event-open:hover .saved-card-meta {
  color: #fff;
}

.saved-grid .saved-event-remove {
  grid-column: 2;
  min-height: 32px;
  width: fit-content;
  margin: 0 12px 12px;
  padding: 0 12px;
  border: 1px solid rgba(237, 28, 36, 0.42);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: none;
  font-size: 12px;
  cursor: pointer;
}

.saved-grid .saved-event-remove:hover {
  color: #fff;
  border-color: rgba(237, 28, 36, 0.76);
  background: rgba(237, 28, 36, 0.28);
}

.saved-time-warning {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 174, 76, 0.5);
  border-radius: 8px;
  color: #ffd39a;
  background: rgba(255, 174, 76, 0.08);
}

@media (min-width: 641px) and (max-width: 980px) {
  .saved-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .city-discovery-hero > .reward-card {
    width: fit-content;
    max-width: 100%;
    justify-self: end;
  }

  .saved-page,
  .saved-day {
    padding: 14px;
  }

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

  .saved-spotlight {
    padding: 10px;
    border-radius: 14px;
    scroll-margin-top: 96px;
  }

  .saved-spotlight-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    min-height: 0;
    padding: 14px;
  }

  .saved-spotlight-close {
    top: 18px;
    right: 18px;
    min-height: 34px;
    padding-inline: 11px;
  }

  .saved-spotlight-poster,
  .saved-spotlight-poster-placeholder {
    max-height: 410px;
    aspect-ratio: 4 / 5;
  }

  .saved-spotlight-copy h3 {
    max-width: none;
    font-size: clamp(28px, 8.6vw, 38px);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .saved-spotlight-actions > button,
  .saved-spotlight-actions > a {
    flex: 1 1 135px;
  }

  .saved-spotlight-actions .saved-open-full-event {
    min-width: 0;
  }

  .saved-period {
    padding-left: 10px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .event-card .quick-save[data-save-event],
  .event-card .quick-save[data-save-event]:hover,
  .event-card .quick-save[data-save-event]:active {
    min-width: 60px;
    transform: none;
  }
}

.checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 18px 18px;
  padding: 18px;
}

.checkout p {
  margin-bottom: 0;
}

.member-hook {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
}

.phone-card {
  padding: 22px;
  border-color: rgba(237, 28, 36, 0.35);
  background:
    radial-gradient(circle at 85% 0%, rgba(237, 28, 36, 0.22), transparent 12rem),
    rgba(20, 22, 29, 0.88);
}

.public-footer {
  display: grid;
  gap: 8px;
  padding: 22px clamp(18px, 4vw, 54px) 30px;
  border-top: 1px solid var(--line);
  color: rgba(255, 248, 239, 0.58);
  font-size: 12px;
  line-height: 1.5;
  background: rgba(7, 8, 12, 0.42);
}

.public-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
}

.public-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.public-footer a {
  color: rgba(241, 215, 143, 0.76);
}

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

@media (min-width: 681px) {
  .public-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .public-footer p {
    margin: 0;
  }

  .public-footer nav {
    justify-content: center;
  }
}

@media (min-width: 1000px) {
  .public-footer {
    justify-content: space-between;
    text-align: left;
  }

  .public-footer nav {
    justify-content: flex-end;
  }
}

@media (max-width: 680px) {
  .public-footer {
    text-align: center;
  }

  .public-footer p {
    margin-inline: auto;
  }

  .public-footer nav {
    justify-content: center;
  }
}

@media (min-width: 981px) {
  .experience:not(:has(.event-page.full-width)) .event-page {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .experience:not(:has(.event-page.full-width)) .event-page .poster.event-hero {
    flex: 0 0 auto;
  }

  .experience:not(:has(.event-page.full-width)) .event-page .event-body {
    flex: 0 0 auto;
    align-items: start;
    min-height: 0;
    overflow: visible;
  }

  .experience:not(:has(.event-page.full-width)) .event-page .event-body > section:first-child {
    height: clamp(620px, calc(100vh - 220px), 900px);
  }

  .experience:not(:has(.event-page.full-width)) .event-page:has(.unvrs-special-event-hero-poster) .event-body:not(.search-empty-state) > section:first-child {
    height: var(--event-description-box-height, clamp(620px, calc(100vh - 220px), 900px));
  }

  .experience:not(:has(.event-page.full-width)) .event-page .side-modules {
    gap: 8px;
    align-content: start;
    align-self: start;
    grid-auto-rows: max-content;
    min-height: 0;
    height: auto;
    overflow: visible;
    scrollbar-width: none;
  }

  .experience:not(:has(.event-page.full-width)) .event-page .side-modules > div {
    padding: 10px;
  }

  .experience:not(:has(.event-page.full-width)) .event-page .side-modules p {
    font-size: 12px;
    line-height: 1.35;
  }

  .experience:not(:has(.event-page.full-width)) .event-page .side-modules .mini-actions {
    gap: 6px;
    margin-top: 8px;
  }

  .experience:not(:has(.event-page.full-width)) .event-page .side-modules::-webkit-scrollbar {
    display: none;
  }

  .event-page.pacha-event-page .event-body {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }

  .event-page.pacha-event-page .event-body:not(.search-empty-state) > section:first-child {
    display: flex;
    flex-direction: column;
    height: min(68vh, 620px);
    min-height: 420px;
    max-height: 620px;
    overflow: hidden;
  }

  .event-page.pacha-event-page .event-body:not(.search-empty-state) > section:first-child .event-description {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    max-height: none;
    padding-right: 8px;
    margin-bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .event-page.pacha-event-page .side-modules {
    align-content: start;
  }

  .event-page.pacha-event-page .side-modules > div {
    align-self: start;
  }

  .experience:not(:has(.event-page.full-width)) .calendar-panel .event-list {
    max-height: min(var(--event-list-bottom-cap, 980px), 980px);
  }

  .month-overview-scroll,
  .calendar-event-day-list {
    max-height: none;
    padding-right: 0;
    overflow: visible;
    overscroll-behavior: auto;
  }
}

@media (max-width: 980px) {
  .hero,
  .experience,
  .event-body,
  .member-hook,
  .import-banner,
  .ai-search-panel,
  .ai-search-results,
  .news-grid,
  .calendar-head {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stage-strip {
    position: relative;
    top: auto;
  }

  main.direct-event-route .experience {
    order: -1;
  }

  main.direct-event-route .event-page {
    order: -1;
  }

  .month-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .ai-search-result-list {
    grid-template-columns: minmax(0, 1fr);
    max-height: 248px;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-card:has(.book-table-card-actions) .event-open {
    min-height: 178px;
    padding-bottom: 72px;
  }

  .event-card:has(.book-table-card-actions) .book-table-card-actions {
    right: auto;
    bottom: 14px;
    left: 16px;
    min-height: 30px;
    max-width: calc(100% - 32px);
  }

  .event-card:has(.book-table-card-actions) .book-table-card-actions .quick-save {
    height: 30px;
    min-height: 30px;
  }

  .event-card:has(.ibiza-access-card-shell) .event-open {
    min-height: 136px;
    padding-bottom: 14px;
  }

  .event-card:has(.ibiza-access-card-shell) .ibiza-access-card-shell {
    position: static;
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  .ibiza-access-card-shell .quick-save {
    width: 100%;
    height: 38px;
    min-height: 38px;
  }

  .ibiza-access-actions,
  .ibiza-access-actions.is-soldout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ibiza-access-hero-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .ibiza-access-hero-shell > .ibiza-access-actions:not(.is-soldout) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ibiza-access-hero-shell > .ibiza-access-actions:not(.is-soldout) .ibiza-access-link {
    padding: 0 8px;
    white-space: nowrap;
  }

  .ibiza-access-hero-shell > button {
    min-height: 44px;
  }

  .ibiza-access-hero-shell > button,
  .ibiza-access-hero-shell > button:first-child,
  .ibiza-access-hero-shell .ibiza-access-link,
  .ibiza-access-hero-shell > .ibiza-access-actions:not(.is-soldout) > .ibiza-access-link:first-child,
  .ibiza-access-hero-shell .ibiza-access-actions.is-soldout .ibiza-soldout-request {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
    background:
      radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.12), transparent 42%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035) 50%, rgba(255, 255, 255, 0.04)),
      rgba(255, 255, 255, 0.04);
  }

  .ibiza-access-hero-shell > button:focus-visible,
  .ibiza-access-hero-shell > button:active,
  .ibiza-access-hero-shell > button[aria-pressed="true"],
  .ibiza-access-hero-shell .ibiza-access-link:focus-visible,
  .ibiza-access-hero-shell .ibiza-access-link:active {
    color: #fff;
    border-color: rgba(237, 28, 36, 0.82);
    background:
      radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.16), transparent 42%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(237, 28, 36, 0.38) 58%, rgba(255, 255, 255, 0.07)),
      rgba(237, 28, 36, 0.5);
  }

  .event-list {
    max-height: min(58vh, 520px);
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .event-media-hub {
    padding: 14px;
  }

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

  main.direct-event-route:has(.event-page.armin-template-page) > .hero,
  main.direct-event-route:has(.event-page.armin-template-page) > .ai-search-panel,
  main.direct-event-route:has(.event-page.armin-template-page) > .stage-strip {
    display: none;
  }

  main.direct-event-route:has(.event-page.armin-template-page) > .event-media-hub {
    order: -1;
  }

  .event-page.unvrs-special-event-page .event-body {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }

  .event-page.unvrs-special-event-page .event-body:not(.search-empty-state) > section:first-child {
    display: flex;
    flex-direction: column;
    height: min(68vh, 620px);
    min-height: 420px;
    max-height: 620px;
    overflow: hidden;
  }

  .event-page.unvrs-special-event-page .event-body:not(.search-empty-state) > section:first-child .event-description {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    max-height: none;
    padding-right: 8px;
    margin-bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .event-page.alemagou-may29-mobile-description-expanded,
  .event-page.alemagou-may29-mobile-description-expanded .event-body,
  .event-page.alemagou-may29-mobile-description-expanded .event-body:not(.search-empty-state) > section:first-child,
  .event-page.alemagou-may29-mobile-description-expanded .event-description {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }

  .event-page.alemagou-may29-mobile-description-expanded .event-body:not(.search-empty-state) > section:first-child {
    display: block;
  }

  .event-page.alemagou-may29-mobile-description-expanded .event-description {
    padding-right: 0;
  }

  .event-description img {
    min-height: min(58vw, 260px);
    object-position: center;
    background: rgba(255, 255, 255, 0.035);
  }

  .event-description .unvrs-special-event-description img.special-event-club-image {
    aspect-ratio: 5 / 3;
    height: auto;
    max-height: none;
    min-height: auto;
    object-fit: contain;
    object-position: center;
  }

  .event-description .unvrs-special-event-description img.cova-santa-event-poster-photo {
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .event-description .void-description img:not(.description-end-logo) {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .event-page.alemagou-page .event-description img.alemagou-transfer-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .event-description img.cavo-mobile-imove-transfer-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .event-description img.interni-mobile-imove-transfer-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .event-description img.nammos-mobile-imove-transfer-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .event-description img.santanna-mobile-imove-transfer-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .event-description img.void-mobile-imove-transfer-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .event-description img.scorpios-imove-transfer-image,
  .event-description img.scorpios-speedboat-transfer-image,
  .event-description img.scorpios-about-panoramic-image,
  .event-description img.scorpios-sunset-beach-image,
  .event-description img.scorpios-terrace-night-image {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .event-description img.santanna-mobile-description-image {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .event-description img.interni-final-logo {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .event-description img.nammos-final-logo {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .event-page.alemagou-page .event-description .alemagou-table-plan-preview img {
    -webkit-clip-path: inset(0 3px 0 0 round 8px);
    clip-path: inset(0 3px 0 0 round 8px);
  }

  .event-description img.description-end-logo,
  .event-description img.nammos-intro-logo {
    min-height: clamp(72px, 22vw, 120px);
    object-fit: contain;
    background: transparent;
  }

  .event-description img.santanna-main-poster-fit {
    width: 100%;
  }

  .event-description img.martin-garrix-description-poster {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    min-height: auto;
    object-fit: contain;
  }

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

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

  .poster h2,
  h1 {
    overflow-wrap: anywhere;
  }

  .weekday-row {
    display: none;
  }

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

  .calendar-day.empty {
    display: none;
  }
}

@media (max-width: 680px) and (hover: hover) and (pointer: fine) {
  .ibiza-access-hero-shell > button:hover,
  .ibiza-access-hero-shell .ibiza-access-link:hover {
    color: #fff;
    border-color: rgba(237, 28, 36, 0.82);
    background:
      radial-gradient(circle at var(--liquid-highlight-x) var(--liquid-highlight-y), rgba(255, 255, 255, 0.16), transparent 42%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(237, 28, 36, 0.38) 58%, rgba(255, 255, 255, 0.07)),
      rgba(237, 28, 36, 0.5);
  }
}

.launch-prototype-header {
  align-items: center;
  background: rgba(10, 12, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px clamp(18px, 5vw, 56px);
}

.launch-prototype-header .brand {
  align-items: center;
  color: #f8f6ef;
  display: inline-flex;
  font-weight: 900;
  gap: 16px;
  letter-spacing: 0;
  text-decoration: none;
}

.launch-prototype-header .brand img {
  height: 54px;
  width: 54px;
}

.launch-prototype-status {
  color: rgba(248, 246, 239, 0.62);
  display: grid;
  gap: 4px;
  justify-items: end;
}

.launch-prototype-status strong {
  color: #ffe59b;
  font-size: 0.88rem;
}

.launch-prototype {
  background:
    radial-gradient(circle at 18% 8%, rgba(229, 34, 47, 0.16), transparent 28%),
    linear-gradient(135deg, #090b10 0%, #141720 58%, #0b0d12 100%);
  color: #fffaf0;
  min-height: 100vh;
  padding: clamp(20px, 4vw, 48px);
}

.launch-prototype-4 {
  color: #fffaf0;
}

.launch-prototype-5 {
  background:
    radial-gradient(circle at 78% 0%, rgba(228, 189, 109, 0.16), transparent 30%),
    linear-gradient(135deg, #070806 0%, #13120f 52%, #080a0d 100%);
}

.launch-prototype-6 {
  background:
    radial-gradient(circle at 80% 10%, rgba(65, 236, 191, 0.14), transparent 30%),
    linear-gradient(135deg, #070b12 0%, #111827 52%, #090b10 100%);
}

.launch-prototype-hero {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 4vw, 36px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin: 0 auto;
  max-width: 1280px;
}

.launch-prototype-copy,
.launch-prototype-identity,
.launch-screen,
.launch-option-button {
  backdrop-filter: blur(18px);
  background: rgba(24, 27, 36, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.launch-prototype-5 .launch-prototype-copy,
.launch-prototype-5 .launch-prototype-identity,
.launch-prototype-5 .launch-screen,
.launch-prototype-5 .launch-option-button {
  background: rgba(20, 19, 16, 0.82);
  border-color: rgba(228, 189, 109, 0.2);
}

.launch-prototype-6 .launch-prototype-copy,
.launch-prototype-6 .launch-prototype-identity,
.launch-prototype-6 .launch-screen,
.launch-prototype-6 .launch-option-button {
  background: rgba(16, 22, 32, 0.82);
  border-color: rgba(65, 236, 191, 0.18);
}

.launch-prototype-copy {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 6vw, 72px);
}

.launch-prototype-copy h1 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.96;
  margin: 0;
  max-width: 780px;
}

.launch-prototype-lede {
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  line-height: 1.55;
  margin: 0;
  max-width: 820px;
}

.launch-prototype-focus {
  color: #ffe59b;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 760px;
}

.launch-prototype-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.launch-prototype-actions button {
  background: linear-gradient(135deg, #e5222f, #8d151d);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fffaf0;
  cursor: default;
  font: inherit;
  font-weight: 900;
  min-height: 48px;
  padding: 12px 18px;
}

.launch-prototype-actions .secondary {
  background: rgba(255, 255, 255, 0.08);
}

.launch-prototype-5 .launch-prototype-actions button {
  background: linear-gradient(135deg, #e2bd74, #846236);
  color: #11100d;
}

.launch-prototype-6 .launch-prototype-actions button {
  background: linear-gradient(135deg, #41ecbf, #188b77);
  color: #07110f;
}

.launch-prototype-identity {
  align-content: start;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
}

.launch-avatar {
  align-items: center;
  background: #e5222f;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 950;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.launch-prototype-5 .launch-avatar {
  background: #e2bd74;
  color: #11100d;
}

.launch-prototype-6 .launch-avatar {
  background: #41ecbf;
  color: #07110f;
}

.launch-avatar-small {
  flex: 0 0 auto;
  font-size: 1rem;
  height: 48px;
  width: 48px;
}

.launch-prototype-identity h2,
.launch-screen h2 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
  margin: 0;
}

.launch-prototype-identity p,
.launch-screen p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.5;
  margin: 0;
}

.launch-prototype-identity dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.launch-prototype-identity dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 4px;
  padding-top: 10px;
}

.launch-prototype-identity dt {
  color: rgba(255, 250, 240, 0.55);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-prototype-identity dd {
  margin: 0;
}

.launch-option-switcher {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px auto;
  max-width: 1280px;
}

.launch-option-button {
  color: #fffaf0;
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  text-align: left;
}

.launch-option-button span {
  color: #ffe59b;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-option-button strong {
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.launch-option-button.is-active {
  border-color: #e5222f;
  box-shadow: inset 0 0 0 1px rgba(229, 34, 47, 0.7), 0 22px 70px rgba(229, 34, 47, 0.12);
}

.launch-prototype-5 .launch-option-button.is-active {
  border-color: #e2bd74;
  box-shadow: inset 0 0 0 1px rgba(226, 189, 116, 0.7), 0 22px 70px rgba(226, 189, 116, 0.1);
}

.launch-prototype-6 .launch-option-button.is-active {
  border-color: #41ecbf;
  box-shadow: inset 0 0 0 1px rgba(65, 236, 191, 0.72), 0 22px 70px rgba(65, 236, 191, 0.1);
}

.launch-screen-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.launch-screen {
  display: grid;
  gap: 18px;
  min-height: 320px;
  padding: clamp(20px, 3vw, 34px);
}

.launch-screen-wide {
  grid-column: span 2;
}

.launch-privacy-pair,
.launch-profile-editor,
.launch-public-profile {
  display: grid;
  gap: 12px;
}

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

.launch-privacy-pair span,
.launch-public-profile span,
.launch-public-profile strong,
.launch-public-profile em {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.78);
  display: block;
  font-style: normal;
  padding: 14px;
}

.launch-privacy-pair strong {
  color: #fffaf0;
  display: block;
  margin-bottom: 4px;
}

.launch-form-preview {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.launch-field-row {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  padding: 12px 14px;
}

.launch-field-row:last-child {
  border-bottom: 0;
}

.launch-field-row strong {
  color: #fffaf0;
}

.launch-field-row span,
.launch-field-row em {
  color: rgba(255, 250, 240, 0.6);
  font-style: normal;
}

.launch-note {
  color: rgba(255, 250, 240, 0.55);
  font-size: 0.9rem;
}

.launch-profile-editor {
  align-items: center;
  grid-template-columns: auto 1fr;
}

.launch-profile-editor div {
  display: grid;
  gap: 5px;
}

.launch-profile-editor span {
  color: rgba(255, 250, 240, 0.62);
}

.launch-chip-list,
.launch-module-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-chip-list span,
.launch-module {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fffaf0;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
}

.launch-module-locked {
  color: rgba(255, 250, 240, 0.66);
}

.launch-module small {
  color: #ffe59b;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.launch-screen h3 {
  color: #ffe59b;
  font-size: 0.92rem;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.launch-qr-preview {
  align-content: space-between;
  background: #fffaf0;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 118px;
  padding: 12px;
  width: 118px;
}

.launch-qr-preview span {
  background: #111;
  display: block;
  height: 38px;
  width: 38px;
}

.launch-option4-interactive {
  --launch-red: #e5222f;
  --launch-red-dark: #8d151d;
  --launch-cream: #fffaf0;
  --launch-gold: #e2bd74;
  --launch-panel: rgba(20, 23, 32, 0.9);
  --launch-border: rgba(255, 255, 255, 0.14);
}

.launch-option4-interactive .launch-prototype-copy,
.launch-option4-interactive .launch-option4-profile,
.launch-option4-form-panel,
.launch-option4-aftercare .launch-screen {
  backdrop-filter: blur(18px);
  background: var(--launch-panel);
  border: 1px solid var(--launch-border);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.launch-option4-interactive .launch-prototype-copy {
  border-top-color: rgba(229, 34, 47, 0.72);
}

.launch-option4-concierge-note {
  border-left: 2px solid var(--launch-gold);
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.5;
  margin: 0;
  max-width: 760px;
  padding-left: 14px;
}

.launch-option4-interactive .launch-prototype-actions button,
.launch-primary-button,
.launch-secondary-button,
.launch-username-suggestions button {
  cursor: pointer;
}

.launch-option4-interactive .launch-prototype-actions button:focus-visible,
.launch-option4-interactive button:focus-visible,
.launch-option4-interactive input:focus-visible,
.launch-option4-interactive select:focus-visible,
.launch-option4-interactive a:focus-visible,
.launch-option4-profile:focus-visible,
.launch-step-heading h2:focus-visible,
.launch-option4-complete:focus-visible {
  outline: 3px solid var(--launch-cream);
  outline-offset: 3px;
}

.launch-option4-profile {
  align-content: start;
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
  scroll-margin-top: 24px;
}

.launch-option4-profile-heading {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr);
}

.launch-option4-profile-heading > div {
  min-width: 0;
}

.launch-option4-profile h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  line-height: 1.05;
  margin: 0;
  overflow-wrap: anywhere;
}

.launch-option4-profile p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.5;
  margin: 6px 0 0;
}

.launch-option4-avatar {
  overflow: hidden;
}

.launch-option4-avatar > span,
.launch-option4-avatar img {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  object-fit: cover;
  width: 100%;
}

.launch-profile-progress,
.launch-step-progress {
  display: grid;
  gap: 9px;
}

.launch-profile-progress > span:first-child,
.launch-step-progress > span:first-child {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.launch-profile-progress em,
.launch-step-progress em {
  color: var(--launch-gold);
  font-style: normal;
}

.launch-profile-progress-track,
.launch-step-progress-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  display: block;
  height: 6px;
  overflow: hidden;
}

.launch-profile-progress-track i,
.launch-step-progress-track i {
  background: linear-gradient(90deg, var(--launch-red), #ff5862);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 180ms ease;
}

.launch-public-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.launch-public-details div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 5px;
  padding-top: 12px;
}

.launch-public-details dt {
  color: rgba(255, 250, 240, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-public-details dd {
  margin: 0;
}

.launch-private-confirmation {
  background: rgba(226, 189, 116, 0.08);
  border: 1px solid rgba(226, 189, 116, 0.24);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.76) !important;
  padding: 14px;
}

.launch-option4-workspace {
  align-items: start;
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
  margin: 0 auto;
  max-width: 1280px;
  scroll-margin-top: 24px;
}

.launch-option4-form-panel {
  min-width: 0;
  padding: clamp(22px, 3.5vw, 40px);
}

.launch-option4-form,
.launch-form-step,
.launch-step-heading,
.launch-input-group,
.launch-option4-complete {
  display: grid;
}

.launch-option4-form {
  gap: 24px;
}

.launch-form-step {
  gap: 20px;
}

.launch-step-heading {
  gap: 9px;
  scroll-margin-top: 24px;
}

.launch-step-heading h2,
.launch-option4-complete h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
  margin: 0;
}

.launch-step-heading p,
.launch-option4-complete p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.5;
  margin: 0;
}

.launch-form-columns {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launch-input-group {
  gap: 8px;
}

.launch-input-label {
  align-items: center;
  color: var(--launch-cream);
  display: flex;
  font-weight: 900;
  gap: 10px;
  justify-content: space-between;
}

.launch-input-label em {
  color: var(--launch-gold);
  font-size: 0.74rem;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-input-group input,
.launch-input-group select,
.launch-username-input {
  background: #0d1017;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--launch-cream);
  font: inherit;
  min-height: 48px;
  width: 100%;
}

.launch-input-group input,
.launch-input-group select {
  padding: 12px 14px;
}

.launch-input-group select {
  color-scheme: dark;
}

.launch-input-group input::placeholder {
  color: rgba(255, 250, 240, 0.38);
}

.launch-input-group small,
.launch-note {
  color: rgba(255, 250, 240, 0.58);
  line-height: 1.45;
}

.launch-input-group.is-error input,
.launch-input-group.is-error select,
.launch-consent.is-error {
  border-color: #ff5862;
}

.launch-input-group.is-success input,
.launch-input-group.is-success select,
.launch-consent.is-success {
  border-color: rgba(226, 189, 116, 0.78);
}

.launch-field-error {
  color: #ff8d94;
  font-size: 0.84rem;
  font-weight: 800;
  min-height: 1.15em;
}

.launch-form-summary {
  color: #ff8d94;
  font-weight: 900;
  min-height: 1.2em;
}

.launch-username-input {
  align-items: center;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  overflow: hidden;
}

.launch-username-input b {
  color: var(--launch-gold);
  padding-left: 14px;
}

.launch-username-input input {
  background: transparent;
  border: 0;
  min-width: 0;
  outline: 0;
}

.launch-username-input:focus-within {
  outline: 3px solid var(--launch-cream);
  outline-offset: 3px;
}

.launch-username-feedback {
  display: grid;
  gap: 10px;
}

.launch-username-state {
  color: rgba(255, 250, 240, 0.6);
  line-height: 1.45;
}

.launch-username-state.is-checking {
  color: var(--launch-gold);
}

.launch-username-state.is-available {
  color: #f3d99e;
  font-weight: 900;
}

.launch-username-state.is-taken {
  color: #ff8d94;
  font-weight: 900;
}

.launch-username-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-username-suggestions button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 189, 116, 0.34);
  border-radius: 999px;
  color: var(--launch-cream);
  font: inherit;
  min-height: 44px;
  padding: 9px 12px;
}

.launch-password-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-password-requirements span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.78rem;
  padding: 7px 10px;
}

.launch-password-requirements span.is-met {
  border-color: rgba(226, 189, 116, 0.56);
  color: #f3d99e;
}

.launch-social-placeholder {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto auto;
}

.launch-social-placeholder button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.48);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
}

.launch-social-placeholder small {
  color: var(--launch-gold);
  display: block;
  font-size: 0.66rem;
  margin-top: 3px;
  text-transform: uppercase;
}

.launch-consent {
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  line-height: 1.5;
  padding: 14px;
}

.launch-consent input {
  accent-color: var(--launch-red);
  height: 22px;
  margin: 1px 0 0;
  width: 22px;
}

.launch-consent a {
  color: #f3d99e;
}

.launch-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.launch-primary-button,
.launch-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--launch-cream);
  font: inherit;
  font-weight: 900;
  min-height: 48px;
  padding: 12px 18px;
}

.launch-primary-button {
  background: linear-gradient(135deg, var(--launch-red), var(--launch-red-dark));
}

.launch-secondary-button {
  background: rgba(255, 255, 255, 0.08);
}

.launch-primary-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.launch-photo-input input[type="file"] {
  cursor: pointer;
  padding: 10px;
}

.launch-option4-complete {
  gap: 16px;
  justify-items: start;
  min-height: 430px;
  place-content: center;
  scroll-margin-top: 24px;
}

.launch-complete-mark {
  align-items: center;
  background: var(--launch-red);
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.55rem;
  font-weight: 950;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.launch-option4-aftercare {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  margin: 24px auto 0;
  max-width: 1280px;
}

.launch-option4-aftercare .launch-screen {
  min-height: 0;
}

.launch-option4-dashboard .launch-module-locked {
  background: rgba(255, 255, 255, 0.035);
  border-style: dashed;
  opacity: 0.72;
}

.launch-option4-invitations .launch-qr-preview {
  box-shadow: 0 0 0 1px rgba(226, 189, 116, 0.28);
}

@media (max-width: 980px) {
  .launch-prototype-header,
  .launch-prototype-hero,
  .launch-option-switcher,
  .launch-screen-grid,
  .launch-privacy-pair,
  .launch-option4-workspace,
  .launch-option4-aftercare {
    grid-template-columns: 1fr;
  }

  .launch-prototype-header {
    align-items: flex-start;
    display: grid;
    gap: 14px;
  }

  .launch-prototype-status {
    justify-items: start;
  }

  .launch-screen-wide {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .launch-prototype {
    padding: 14px;
  }

  .launch-prototype-header {
    min-height: auto;
    padding: 16px;
  }

  .launch-prototype-copy {
    padding: 24px;
  }

  .launch-field-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .launch-option4-interactive .launch-prototype-hero {
    gap: 16px;
  }

  .launch-option4-interactive .launch-prototype-copy,
  .launch-option4-profile,
  .launch-option4-form-panel,
  .launch-option4-aftercare .launch-screen {
    padding: 22px;
  }

  .launch-option4-interactive .launch-prototype-copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .launch-option4-interactive .launch-prototype-actions,
  .launch-form-actions,
  .launch-social-placeholder,
  .launch-form-columns {
    grid-template-columns: 1fr;
  }

  .launch-option4-interactive .launch-prototype-actions,
  .launch-form-actions {
    display: grid;
  }

  .launch-option4-interactive .launch-prototype-actions button,
  .launch-form-actions button,
  .launch-social-placeholder button {
    min-height: 48px;
    width: 100%;
  }

  .launch-social-placeholder {
    align-items: stretch;
  }

  .launch-option4-profile-heading {
    align-items: start;
  }

  .launch-option4-workspace,
  .launch-option4-aftercare {
    margin-top: 16px;
  }
}
