:root {
  --bg: #050507;
  --bg-2: #0b0b0f;
  --surface: rgba(12, 12, 16, 0.88);
  --surface-soft: rgba(22, 24, 30, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.2);
  --text: #f5f5f7;
  --text-soft: #b5b8bf;
  --ink: #111218;
  --accent: #b73cff;
  --accent-deep: #7a22f2;
  --ok: #42d784;
  --error: #ff6b8e;
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.56);
  --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.44);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1240px, 100% - 2rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background-color: var(--bg);
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% -8%, rgba(183, 60, 255, 0.28), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(82, 164, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #020204 0%, #06070a 60%, #040406 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.4px);
  background-size: 26px 26px;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 0 2.4rem;
}

.nav {
  position: sticky;
  top: 0.8rem;
  z-index: 120;
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.78rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
  transition: transform 0.28s var(--ease-out), background 0.28s ease, border-color 0.28s ease;
}

body.scrolled .nav {
  transform: translateY(-2px);
  background: rgba(6, 7, 10, 0.95);
  border-color: rgba(255, 255, 255, 0.16);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  color: #e5e6ea;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand {
  gap: 0.62rem;
  margin-right: 0.44rem;
  padding-left: 0.36rem !important;
  padding-right: 0.5rem !important;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  color: #f2f2f4;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-pill {
  background: var(--accent);
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 22px rgba(183, 60, 255, 0.4);
}

.nav-pill:hover {
  background: #cb6cff;
}

.welcome {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.alert {
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.alert-success {
  background: rgba(66, 215, 132, 0.16);
  border-color: rgba(66, 215, 132, 0.46);
  color: #7ce8ab;
}

.alert-error {
  background: rgba(255, 107, 142, 0.15);
  border-color: rgba(255, 107, 142, 0.5);
  color: #ff96b0;
}

.panel {
  background: linear-gradient(165deg, rgba(14, 15, 20, 0.94), rgba(8, 9, 12, 0.93));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  margin-bottom: 0.6rem;
  background: rgba(183, 60, 255, 0.22);
  border: 1px solid rgba(183, 60, 255, 0.48);
  color: #f2cbff;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.66rem 1.2rem;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), filter 0.2s ease;
}

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

.btn-small {
  min-height: 36px;
  padding: 0.42rem 0.88rem;
  font-size: 0.8rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #e9eaee;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.46);
}

.btn-light {
  background: #ffffff;
  color: #111218;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin-top: 0.58rem;
}

.inline-form {
  display: inline;
}

.hero-row {
  margin-bottom: 1rem;
}

.ltd-hero {
  position: relative;
  min-height: 72vh;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #050609;
  box-shadow: var(--shadow-xl);
  display: grid;
  place-items: center;
}

.dot-layer {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 94%);
}

.floating-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  width: clamp(110px, 10vw, 210px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  opacity: 0.88;
  pointer-events: auto;
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
  animation: float 8s ease-in-out infinite;
}

.floating-card:hover {
  opacity: 1;
}

.floating-card img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.slot-a {
  top: 7%;
  left: 4%;
}

.slot-b {
  top: 8%;
  right: 5%;
}

.slot-c {
  top: 35%;
  left: 2%;
  width: clamp(95px, 8.4vw, 180px);
}

.slot-d {
  top: 34%;
  right: 2%;
  width: clamp(95px, 8.4vw, 180px);
}

.slot-e {
  bottom: 8%;
  left: 8%;
}

.slot-f {
  bottom: 8%;
  right: 8%;
}

.slot-g {
  top: 16%;
  left: 26%;
  width: clamp(84px, 6.2vw, 145px);
}

.slot-h {
  top: 16%;
  right: 27%;
  width: clamp(84px, 6.2vw, 145px);
}

.slot-i {
  bottom: 14%;
  left: 30%;
  width: clamp(84px, 6.2vw, 145px);
}

.slot-j {
  bottom: 12%;
  right: 31%;
  width: clamp(84px, 6.2vw, 145px);
}

.hero-center {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  padding: 1rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  padding: 0.22rem 0.66rem;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 900;
  color: #efc9ff;
  border: 1px solid rgba(183, 60, 255, 0.5);
  background: rgba(183, 60, 255, 0.12);
}

.hero-center h1 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(3rem, 8.4vw, 8.6rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-center p {
  max-width: 690px;
  margin: 0 auto;
  color: #f1f2f5;
  font-size: clamp(1rem, 1.8vw, 1.36rem);
}

.hero-center .highlight {
  color: var(--accent);
  font-weight: 800;
}

.hero-center .inline-actions {
  justify-content: center;
  margin-top: 1.2rem;
}

.hero-footnote {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  color: #dbdde4;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-footnote span {
  position: relative;
  padding-left: 0.72rem;
}

.hero-footnote span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--accent);
}

.search-panel {
  background: rgba(10, 11, 15, 0.95);
  border-radius: 18px;
}

.search-form {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr auto;
  gap: 0.66rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

.search-form input,
.search-form select,
.search-form textarea,
.form-grid input,
.form-grid select,
.form-grid textarea,
.booking-form input,
.panel input,
.panel select,
.panel textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(24, 26, 33, 0.92);
  color: #f4f5f9;
  padding: 0.6rem 0.72rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form textarea,
.form-grid textarea {
  min-height: 100px;
}

.search-form input:focus,
.search-form select:focus,
.search-form textarea:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.booking-form input:focus,
.panel input:focus,
.panel select:focus,
.panel textarea:focus {
  outline: none;
  border-color: rgba(183, 60, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(183, 60, 255, 0.22);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  min-height: 34px;
  padding: 0.35rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e6e7eb;
  background: rgba(20, 22, 28, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.chip:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.chip-active {
  color: #ffffff;
  border-color: transparent;
  background: var(--accent);
}

.light-wrap {
  border-radius: 22px;
  padding: 1.1rem;
  margin-bottom: 1.1rem;
  background: #f6f6f7;
  color: var(--ink);
  border: 1px solid #e2e2e5;
}

.light-wrap .subtle {
  color: #4d5058;
}

.search-form-compact {
  grid-template-columns: 1fr auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.88rem;
}

.section-head h2,
.section-head h1 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: inherit;
}

.subtle {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.86rem;
  margin-bottom: 1.2rem;
}

.event-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(18, 19, 26, 0.98), rgba(10, 11, 16, 0.96));
  box-shadow: var(--shadow-lg);
  transition: transform 0.26s var(--ease-out), border-color 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 60, 255, 0.52);
}

.event-media-link {
  display: block;
  position: relative;
}

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

.event-media-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.event-price-tag {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  z-index: 1;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--accent);
}

.event-body {
  padding: 0.8rem;
  display: grid;
  gap: 0.5rem;
}

.event-body h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.event-body p {
  color: #c8ccd5;
  font-size: 0.88rem;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(183, 60, 255, 0.58);
  color: #f2cbff;
  background: rgba(183, 60, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #dfe1e7;
  font-size: 0.74rem;
  padding: 0.18rem 0.5rem;
}

.event-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.light-wrap .event-card {
  background: #ffffff;
  border-color: #d9dce4;
  color: #121318;
}

.light-wrap .event-body p {
  color: #3c3f47;
}

.light-wrap .meta-chip {
  color: #242733;
  border-color: #c8cedb;
}

.light-wrap .pill {
  color: #3f1a66;
  background: rgba(183, 60, 255, 0.2);
  border-color: rgba(122, 34, 242, 0.64);
}

.host-join-panel {
  margin-top: 1rem;
}

.host-join-panel h2 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.host-join-panel p {
  color: #ccd1db;
  margin-bottom: 0.8rem;
}

.social-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.9rem 1rem;
  background: rgba(9, 10, 14, 0.88);
  margin-bottom: 1rem;
}

.social-bottom-copy h3 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
}

.social-bottom-copy p {
  color: #c2c7d3;
}

.social-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.9rem;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(15, 17, 24, 0.96), rgba(8, 9, 13, 0.96));
  box-shadow: var(--shadow-lg);
  transition: transform 0.24s var(--ease-out), border-color 0.24s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 60, 255, 0.56);
}

.blog-cover {
  display: block;
}

.blog-cover img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 0.86rem;
  display: grid;
  gap: 0.52rem;
}

.blog-date {
  color: #afb4c0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.blog-card-body p {
  color: #cad0dc;
  font-size: 0.88rem;
}

.blog-article {
  padding: 1.2rem;
}

.blog-article h1 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  text-transform: uppercase;
  margin: 0.35rem 0 0.65rem;
}

.blog-excerpt {
  color: #d5dae3;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.blog-hero-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 0.9rem;
}

.blog-content {
  display: grid;
  gap: 0.72rem;
  color: #dbe0ea;
}

.blog-content h1,
.blog-content h2 {
  font-family: "Anton", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.blog-content h1 {
  font-size: clamp(1.7rem, 4vw, 3.3rem);
}

.blog-content h2 {
  font-size: clamp(1.3rem, 3vw, 2.3rem);
}

.blog-content p {
  color: #d3d9e4;
  line-height: 1.7;
}

.blog-content a {
  color: #c45eff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-inline-image {
  margin: 0.2rem 0;
}

.blog-inline-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.blog-inline-image figcaption {
  margin-top: 0.28rem;
  color: #aeb4c2;
  font-size: 0.82rem;
}

.blog-related-list {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.42rem;
}

.blog-related-list a:hover {
  color: #dfa1ff;
}

code {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.1rem 0.32rem;
  border-radius: 6px;
}

.auth-wrap {
  max-width: 580px;
  margin: 1.2rem auto;
}

.form-grid {
  display: grid;
  gap: 0.52rem;
}

.form-grid label {
  color: #d5d8df;
  font-size: 0.84rem;
  font-weight: 700;
}

.event-headline {
  margin-bottom: 0.95rem;
}

.event-headline h1 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(2.2rem, 5.6vw, 5rem);
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.event-headline p {
  color: #d7dae1;
  max-width: 72ch;
}

.event-detail {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.92rem;
  margin-bottom: 1rem;
}

.event-media img {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}

.event-summary h2 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  text-transform: uppercase;
  margin: 0.3rem 0 0.5rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.42rem;
  color: #d4d8e1;
}

.detail-list strong {
  color: #ffffff;
}

.booking-form {
  margin-top: 0.92rem;
  display: grid;
  gap: 0.52rem;
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 0.82rem;
  margin-bottom: 1rem;
}

.booking-card h3 {
  margin-bottom: 0.36rem;
}

.booking-card p {
  margin: 0.2rem 0;
  color: #ccd0d8;
}

.booking-card strong {
  color: #f8f9fb;
}

.dashboard-hero h1 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.dashboard-hero p {
  color: #d0d3db;
}

.metrics {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 1rem;
}

.metric-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.9rem;
  background: linear-gradient(155deg, rgba(22, 23, 32, 0.95), rgba(13, 13, 19, 0.94));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.metric-card p {
  margin: 0;
  color: #a7adb9;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card h3 {
  margin-top: 0.24rem;
  font-family: "Anton", "Inter", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 0.55rem;
}

.table th,
.table td {
  text-align: left;
  vertical-align: top;
  padding: 0.64rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.table th {
  color: #b9bfcb;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
}

.empty-state h3 {
  margin-bottom: 0.32rem;
}

.empty-state p {
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) translateY(0px);
  }

  50% {
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) translateY(-8px);
  }
}

@media (max-width: 1120px) {
  .nav {
    width: min(1240px, 100% - 1.4rem);
  }

  .slot-g,
  .slot-h,
  .slot-i,
  .slot-j {
    display: none;
  }

  .hero-center h1 {
    font-size: clamp(2.8rem, 10vw, 6.4rem);
  }

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

@media (max-width: 860px) {
  .search-form {
    grid-template-columns: 1fr 1fr;
  }

  .search-form-compact {
    grid-template-columns: 1fr;
  }

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

  .slot-a,
  .slot-b,
  .slot-c,
  .slot-d,
  .slot-e,
  .slot-f {
    width: clamp(80px, 18vw, 130px);
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(1240px, 100% - 1rem);
  }

  .nav {
    top: 0.45rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-left,
  .nav-right {
    width: 100%;
  }

  .brand {
    margin-right: 0;
  }

  .brand-text {
    display: none;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .hero-center {
    padding: 0.8rem;
  }

  .hero-center p {
    font-size: 1rem;
  }

  .slot-a,
  .slot-b,
  .slot-c,
  .slot-d,
  .slot-e,
  .slot-f {
    display: none;
  }

  .ltd-hero {
    min-height: 58vh;
  }

  .social-bottom {
    align-items: flex-start;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
