:root {
  --bg: #070b16;
  --bg-soft: #0b1328;
  --panel: rgba(10, 17, 36, 0.86);
  --panel-soft: rgba(12, 21, 44, 0.74);
  --line: rgba(103, 232, 249, 0.3);
  --line-strong: rgba(103, 232, 249, 0.55);
  --text: #e8f5ff;
  --muted: #9cb2c9;
  --cyan: #5ee8ff;
  --blue: #2f79ff;
  --pink: #ff57c2;
  --lime: #6fffc8;
  --radius: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(900px 500px at 110% -10%, rgba(47, 121, 255, 0.18), transparent 60%),
    radial-gradient(600px 400px at -10% 15%, rgba(255, 87, 194, 0.12), transparent 55%),
    linear-gradient(160deg, var(--bg), var(--bg-soft));
}

.noise::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.12;
  z-index: 0;
}

.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 18px 90px;
  position: relative;
  z-index: 1;
}

.page > section {
  margin-top: 20px;
}

.neon-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px 8px 16px;
  background: rgba(9, 15, 33, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.brand {
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: none;
  color: var(--cyan);
  white-space: nowrap;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 999px;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.brand-wrap:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.brand-wrap:focus-visible {
  outline: 2px solid rgba(111, 255, 200, 0.9);
  outline-offset: 4px;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 87, 194, 0.55);
  box-shadow: 0 0 12px rgba(255, 87, 194, 0.55);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #d3e7ff;
  border: 1px solid rgba(94, 232, 255, 0.28);
  background: rgba(11, 19, 40, 0.86);
}

.nav-link.active {
  border-color: rgba(94, 232, 255, 0.65);
  color: #f3fcff;
  box-shadow: 0 0 0 1px rgba(94, 232, 255, 0.2) inset;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  border: 1px solid rgba(94, 232, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 16, 34, 0.82);
  padding: 4px 6px;
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  text-decoration: none;
  color: #d5ebff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
}

.lang-option:hover {
  color: #ffffff;
  border-color: rgba(111, 255, 200, 0.45);
}

.lang-option.active {
  color: #ffffff;
  border-color: rgba(94, 232, 255, 0.62);
  background: rgba(11, 29, 52, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: #fff;
}

.btn-secondary {
  background: rgba(9, 16, 35, 0.88);
  border-color: var(--line);
  color: var(--cyan);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.25px;
}

h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(20px, 2.4vw, 28px);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  position: relative;
}

.panel + .panel {
  margin-top: 12px;
}

.panel::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 232, 255, 0.36), transparent);
}

.focus-panel {
  border-width: 1px;
}

.focus-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: var(--line-strong);
}

.focus-panel.know {
  border-color: rgba(94, 232, 255, 0.45);
}

.focus-panel.join {
  border-color: rgba(255, 87, 194, 0.45);
}

.focus-panel.join::before {
  background: rgba(255, 87, 194, 0.8);
}

.focus-panel.clubs {
  border-color: rgba(111, 255, 200, 0.45);
}

.focus-panel.clubs::before {
  background: rgba(111, 255, 200, 0.86);
}

.focus-panel.map-filter {
  border-color: rgba(94, 232, 255, 0.5);
}

.focus-panel.map-filter::before {
  background: linear-gradient(180deg, rgba(94, 232, 255, 0.9), rgba(255, 87, 194, 0.85));
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
}

.hero-copy {
  display: grid;
  gap: 10px;
}

.hero-invite {
  color: #dffeff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(94, 232, 255, 0.42);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #d8f6ff;
  text-transform: uppercase;
  background: rgba(8, 18, 40, 0.8);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  font-size: 12px;
  border: 1px solid rgba(111, 255, 200, 0.33);
  border-radius: 999px;
  padding: 7px 10px;
  color: #ddfff2;
  background: rgba(19, 42, 45, 0.38);
}

.hero-art {
  display: grid;
  align-content: stretch;
}

.hero-media-stack {
  display: grid;
  gap: 12px;
}

.hero-two-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-photo-card {
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(94, 232, 255, 0.42);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 18, 37, 0.9);
  padding: 8px;
  display: grid;
  place-items: center;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(94, 232, 255, 0.38);
  background: rgba(6, 14, 30, 0.84);
}

.hero-club-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 14px;
  border: 1px solid rgba(94, 232, 255, 0.45);
  display: block;
}

.hero-club-image-contain {
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(600px 220px at 50% 86%, rgba(111, 255, 200, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(8, 16, 34, 0.95), rgba(9, 19, 39, 0.9));
  padding: 10px;
}

/* Cleaner visual inspired by the portal references */
.portal {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: 16px;
  border: 1px solid rgba(111, 255, 200, 0.4);
  background:
    radial-gradient(600px 160px at 50% 95%, rgba(111, 255, 200, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(5, 11, 25, 0.95), rgba(5, 16, 17, 0.92));
  overflow: hidden;
}

.portal--image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background:
    radial-gradient(600px 180px at 50% 95%, rgba(111, 255, 200, 0.2), transparent 65%),
    linear-gradient(180deg, rgba(5, 11, 25, 0.95), rgba(7, 14, 33, 0.94));
}

.portal-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(111, 255, 200, 0.28);
  box-shadow: 0 0 22px rgba(122, 64, 255, 0.24);
}

.portal-frame {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(130px, 38%, 190px);
  height: clamp(180px, 56%, 270px);
  transform: translate(-50%, -50%);
  border: 3px solid rgba(155, 255, 221, 0.92);
  box-shadow: 0 0 18px rgba(111, 255, 200, 0.6), 0 0 44px rgba(111, 255, 200, 0.25);
}

.portal-fog {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(111, 255, 200, 0.35), rgba(111, 255, 200, 0.04) 70%);
  filter: blur(14px);
}

.portal-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  text-align: center;
  color: #c7f9ee;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero character visual (anime + neon smoke) */
.anime-hero {
  position: relative;
  width: 100%;
  min-height: 430px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(94, 232, 255, 0.42);
  background: linear-gradient(180deg, rgba(7, 13, 29, 0.95), rgba(10, 15, 35, 0.9));
}

.anime-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}

.anime-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 58%, rgba(94, 232, 255, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(3, 8, 20, 0.08), rgba(3, 8, 20, 0.44));
  pointer-events: none;
}

.smoke {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: 0.72;
  animation: smoke-float 7s ease-in-out infinite;
}

.smoke-1 {
  width: 90px;
  height: 54px;
  left: 55%;
  top: 50%;
  background: radial-gradient(circle, rgba(94, 232, 255, 0.5), rgba(94, 232, 255, 0.05) 70%);
}

.smoke-2 {
  width: 106px;
  height: 66px;
  left: 60%;
  top: 43%;
  background: radial-gradient(circle, rgba(255, 87, 194, 0.45), rgba(255, 87, 194, 0.05) 72%);
  animation-delay: 1.4s;
}

.smoke-3 {
  width: 112px;
  height: 70px;
  left: 50%;
  top: 38%;
  background: radial-gradient(circle, rgba(94, 232, 255, 0.42), rgba(94, 232, 255, 0.04) 75%);
  animation-delay: 2.6s;
}

.joint {
  position: absolute;
  left: 51.5%;
  top: 60%;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(250, 254, 255, 0.96) 0 78%, rgba(255, 140, 84, 0.96) 78% 100%);
  box-shadow: 0 0 10px rgba(94, 232, 255, 0.55), 0 0 8px rgba(255, 140, 84, 0.8);
  transform: rotate(-15deg);
}

@keyframes smoke-float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(8px, -18px) scale(1.08);
    opacity: 0.78;
  }
  100% {
    transform: translate(20px, -34px) scale(1.16);
    opacity: 0.05;
  }
}

.sign {
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: 16px;
  border: 1px solid rgba(94, 232, 255, 0.42);
  background: linear-gradient(180deg, rgba(9, 18, 41, 0.9), rgba(8, 15, 30, 0.85));
  text-align: center;
}

.sign strong,
.sign span {
  display: block;
  text-transform: uppercase;
  font-size: clamp(30px, 4.3vw, 46px);
}

.sign strong {
  color: #d9f7ff;
  text-shadow: 0 0 14px rgba(94, 232, 255, 0.35);
}

.sign span {
  color: var(--cyan);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.tile {
  border: 1px solid rgba(94, 232, 255, 0.36);
  border-radius: 14px;
  background: var(--panel-soft);
  padding: 15px 14px;
}

.tile h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps li {
  border: 1px solid rgba(255, 87, 194, 0.4);
  border-radius: 14px;
  background: rgba(24, 15, 41, 0.72);
  padding: 14px;
  color: #ffd7f3;
  line-height: 1.55;
  font-size: 14px;
  min-height: 122px;
}

.steps li::before {
  counter-increment: step;
  content: "STEP " counter(step);
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #ffe8f8;
  border: 1px solid rgba(255, 87, 194, 0.5);
  border-radius: 999px;
  padding: 3px 8px;
}

.steps {
  counter-reset: step;
}

.join-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 87, 194, 0.34);
  border-radius: 12px;
  background: rgba(26, 11, 36, 0.58);
  color: #ffdff5;
  line-height: 1.55;
  font-size: 14px;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.club-card {
  position: relative;
  border: 1px solid rgba(94, 232, 255, 0.38);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(10, 18, 39, 0.92);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.club-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.01);
  z-index: 4;
  background:
    radial-gradient(100px 28px at 12% 16%, rgba(94, 232, 255, 0.72), transparent 75%),
    radial-gradient(100px 28px at 88% 16%, rgba(255, 87, 194, 0.72), transparent 75%),
    radial-gradient(100px 28px at 88% 84%, rgba(111, 255, 200, 0.72), transparent 75%),
    radial-gradient(100px 28px at 12% 84%, rgba(94, 232, 255, 0.72), transparent 75%),
    radial-gradient(42px 100px at 6% 50%, rgba(94, 232, 255, 0.54), transparent 74%),
    radial-gradient(42px 100px at 94% 50%, rgba(255, 87, 194, 0.54), transparent 74%);
  animation: smoke-ring-rotate 2.9s linear infinite paused, smoke-ring-pulse 2s ease-in-out infinite paused;
  transition: opacity 0.2s ease;
  mix-blend-mode: screen;
}

.club-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  box-shadow:
    inset 0 0 0 1px rgba(94, 232, 255, 0.7),
    0 0 26px rgba(94, 232, 255, 0.34),
    0 0 34px rgba(255, 87, 194, 0.22);
  transition: opacity 0.2s ease;
  animation: smoke-glow 1.9s ease-in-out infinite paused;
}

.club-card:hover,
.club-card:focus-within {
  transform: translateY(-2px);
}

.club-card:focus-visible {
  outline: 2px solid rgba(111, 255, 200, 0.9);
  outline-offset: 3px;
}

.club-card:hover::before,
.club-card:hover::after,
.club-card:focus-within::before,
.club-card:focus-within::after {
  opacity: 1;
  animation-play-state: running;
}

.club-card img,
.club-card .copy {
  position: relative;
  z-index: 2;
}

.club-card.pink {
  border-color: rgba(255, 87, 194, 0.45);
}

.club-card.lime {
  border-color: rgba(111, 255, 200, 0.46);
}

.club-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.04);
}

.club-card .copy {
  padding: 14px;
  display: grid;
  gap: 8px;
  flex: 1;
}

@keyframes smoke-ring-rotate {
  0% {
    transform: scale(1.01) rotate(0deg);
  }
  100% {
    transform: scale(1.01) rotate(360deg);
  }
}

@keyframes smoke-ring-pulse {
  0%,
  100% {
    filter: blur(8px);
  }
  50% {
    filter: blur(12px);
  }
}

@keyframes smoke-glow {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(94, 232, 255, 0.65),
      0 0 20px rgba(94, 232, 255, 0.3),
      0 0 26px rgba(255, 87, 194, 0.18);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 87, 194, 0.72),
      0 0 28px rgba(255, 87, 194, 0.34),
      0 0 34px rgba(94, 232, 255, 0.24);
  }
}

.club-badge {
  display: inline-flex;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(94, 232, 255, 0.45);
  color: #d8f7ff;
}

.club-card h3 {
  font-size: 18px;
}

.club-title-link {
  color: inherit;
  text-decoration: none;
}

.club-title-link:hover {
  color: #eaf8ff;
}

.club-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.club-card a {
  margin-top: auto;
  color: var(--lime);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.club-story {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.club-subtitle {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  color: #e9f5ff;
}

.club-hours {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(111, 255, 200, 0.52);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(12, 33, 30, 0.62);
  color: #d8fff0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.btn-apply-large {
  width: min(100%, 380px);
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 20px;
  box-shadow: 0 10px 28px rgba(255, 87, 194, 0.35), 0 0 0 1px rgba(94, 232, 255, 0.25) inset;
}

.apply-form-panel {
  border-color: rgba(111, 255, 200, 0.46);
}

.neon-form {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.neon-field {
  display: grid;
  gap: 8px;
}

.neon-field span {
  font-size: 14px;
  color: #e1f5ff;
  font-weight: 700;
}

.neon-field input,
.neon-field select,
.neon-field textarea {
  width: 100%;
  border: 1px solid rgba(94, 232, 255, 0.35);
  border-radius: 12px;
  background: rgba(11, 20, 38, 0.95);
  color: #e9f4ff;
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.neon-field input::placeholder,
.neon-field textarea::placeholder {
  color: #8ea6c7;
}

.neon-field input:focus,
.neon-field select:focus,
.neon-field textarea:focus {
  border-color: rgba(111, 255, 200, 0.85);
  box-shadow: 0 0 0 2px rgba(111, 255, 200, 0.18);
}

.neon-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(94, 232, 255, 0.28);
  border-radius: 12px;
  background: rgba(8, 17, 34, 0.82);
}

.neon-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #62ffc2;
}

.neon-check span {
  color: #dbf5ff;
  font-weight: 700;
}

.neon-submit {
  width: min(100%, 340px);
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-success {
  margin: 2px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(111, 255, 200, 0.48);
  border-radius: 10px;
  background: rgba(14, 44, 34, 0.5);
  color: #cffff0;
}

.form-success.form-error {
  border-color: rgba(255, 116, 163, 0.68);
  background: rgba(68, 23, 44, 0.62);
  color: #ffd6e7;
}

.club-rules-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.club-slider {
  margin-top: 12px;
  position: relative;
  border: 1px solid rgba(94, 232, 255, 0.34);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(9, 18, 37, 0.86);
}

.club-slider-viewport {
  position: relative;
}

.club-slide {
  margin: 0;
}

.club-slide img {
  width: 100%;
  min-height: 380px;
  max-height: 620px;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.club-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(94, 232, 255, 0.5);
  background: rgba(5, 12, 26, 0.74);
  color: #e9f8ff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px rgba(94, 232, 255, 0.2);
}

.club-slider-nav.prev {
  left: 12px;
}

.club-slider-nav.next {
  right: 12px;
}

.club-slider-nav:hover {
  border-color: rgba(111, 255, 200, 0.86);
  color: #ffffff;
}

.club-slider-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.club-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(148, 172, 201, 0.55);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(94, 232, 255, 0.28);
}

.club-slider-dot.active {
  background: #6fffc8;
  box-shadow: 0 0 12px rgba(111, 255, 200, 0.6), 0 0 0 1px rgba(111, 255, 200, 0.42);
}

.hero-compact-slider .club-slide img {
  min-height: 220px;
  max-height: 260px;
}

.hero-compact-slider .club-slider-nav {
  width: 38px;
  height: 38px;
  font-size: 24px;
}

.club-rule-card {
  border: 1px solid rgba(94, 232, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 19, 37, 0.94), rgba(10, 16, 31, 0.9));
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 0 1px rgba(255, 87, 194, 0.08) inset;
}

.club-rule-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(94, 232, 255, 0.42);
  background: rgba(8, 16, 32, 0.88);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 0 14px rgba(94, 232, 255, 0.2);
}

.club-rule-icon svg {
  width: 20px;
  height: 20px;
  stroke: #eaf7ff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.club-rule-copy {
  display: grid;
  gap: 2px;
}

.club-rule-value {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
  color: #e8f6ff;
}

.club-rule-text {
  margin: 0;
  color: #a9c1de;
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

details {
  border: 1px solid rgba(111, 255, 200, 0.28);
  border-radius: 12px;
  background: rgba(11, 20, 44, 0.76);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: #dffef2;
}

details p {
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.55;
  font-size: 14px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(94, 232, 255, 0.36);
  border-radius: 14px;
  padding: 15px;
  background: rgba(8, 16, 34, 0.85);
}

.footer-cta p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.55;
}

.legal-footer {
  margin-top: 8px;
  border: 1px solid rgba(94, 232, 255, 0.28);
  border-radius: 14px;
  background: rgba(8, 16, 32, 0.76);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-footer p {
  margin: 0;
  color: #a9bed8;
  font-size: 13px;
}

.legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-links a {
  color: #c6f4ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.legal-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(111, 255, 200, 0.48);
}

.legal-content {
  display: grid;
  gap: 12px;
}

.legal-content h2 {
  margin: 8px 0 0;
  font-size: 18px;
  color: #e7f8ff;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.legal-meta {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(94, 232, 255, 0.34);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: #cce9ff;
  background: rgba(9, 18, 35, 0.82);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.map-shell {
  border: 1px solid rgba(94, 232, 255, 0.45);
  border-radius: 16px;
  min-height: 340px;
  background: linear-gradient(160deg, rgba(14, 24, 62, 0.7), rgba(13, 45, 44, 0.42));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.map-shell h3 {
  margin-bottom: 10px;
}

.map-embed {
  border: 1px solid rgba(94, 232, 255, 0.45);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(14, 24, 62, 0.7), rgba(13, 45, 44, 0.42));
  min-height: 360px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.district-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  margin-top: 14px;
}

.district-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(94, 232, 255, 0.25);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(9, 18, 36, 0.82);
  color: #d7ebff;
  font-size: 12px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot-gothic {
  background: #5ee8ff;
  box-shadow: 0 0 10px rgba(94, 232, 255, 0.6);
}

.dot-eixample {
  background: #ff57c2;
  box-shadow: 0 0 10px rgba(255, 87, 194, 0.6);
}

.dot-active {
  background: #6fffc8;
  box-shadow: 0 0 12px rgba(111, 255, 200, 0.75);
}

.district-map-shell {
  min-height: 400px;
  position: relative;
}

.map-open-exact {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 5;
  border: 1px solid rgba(94, 232, 255, 0.48);
  border-radius: 10px;
  background: rgba(8, 17, 34, 0.88);
  color: #d8f2ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  padding: 10px 12px;
  box-shadow: 0 0 0 1px rgba(94, 232, 255, 0.16) inset, 0 8px 20px rgba(2, 8, 24, 0.45);
}

.map-open-exact:hover {
  color: #ffffff;
  border-color: rgba(111, 255, 200, 0.85);
  box-shadow: 0 0 16px rgba(111, 255, 200, 0.32);
}

.district-map-shell iframe {
  min-height: 400px;
}

.map-center-leaf {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -100%);
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(111, 255, 200, 0.9));
}

.map-center-leaf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.map-center-leaf::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 76%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(111, 255, 200, 0.62);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(111, 255, 200, 0.35);
}

.district-panel {
  border: 1px solid rgba(255, 87, 194, 0.38);
  border-radius: 14px;
  background: rgba(22, 12, 34, 0.62);
  padding: 12px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.district-summary {
  margin: 0;
  font-size: 13px;
  color: #ffd8f4;
  letter-spacing: 0.4px;
}

.district-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.district-btn {
  border: 1px solid rgba(94, 232, 255, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #d8f4ff;
  background: rgba(11, 21, 42, 0.85);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

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

.district-btn.active {
  border-color: rgba(255, 87, 194, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 87, 194, 0.28) inset, 0 0 18px rgba(255, 87, 194, 0.16);
  color: #fff0fb;
}

.district-list {
  display: grid;
  gap: 8px;
}

.district-club {
  border: 1px solid rgba(94, 232, 255, 0.36);
  border-radius: 12px;
  background: rgba(9, 19, 37, 0.92);
  padding: 10px 11px;
  text-align: left;
  color: var(--text);
  display: grid;
  gap: 4px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.district-club:hover {
  transform: translateY(-1px);
  border-color: rgba(94, 232, 255, 0.62);
}

.district-club.active {
  border-color: rgba(111, 255, 200, 0.86);
  box-shadow: 0 0 0 1px rgba(111, 255, 200, 0.25) inset, 0 0 18px rgba(111, 255, 200, 0.15);
}

.district-club-name {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
}

.district-club-meta {
  font-size: 12px;
  color: var(--muted);
}

.district-select {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  color: #eaf8ff;
  cursor: pointer;
}

.district-select:focus-visible {
  outline: 2px solid rgba(94, 232, 255, 0.75);
  outline-offset: 4px;
  border-radius: 6px;
}

.district-address-link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(94, 232, 255, 0.35);
  text-underline-offset: 2px;
}

.district-address-link:hover {
  color: #cfe8ff;
  text-decoration-color: rgba(94, 232, 255, 0.85);
}

.district-map-link {
  width: 100%;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-map {
  border: 1px solid rgba(94, 232, 255, 0.34);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 18, 37, 0.82);
}

.mini-map h4 {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 12px;
  color: #d7f4ff;
  border-bottom: 1px solid rgba(94, 232, 255, 0.2);
}

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

.map-addresses {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.map-addresses li {
  border: 1px solid rgba(94, 232, 255, 0.26);
  border-radius: 10px;
  background: rgba(8, 17, 34, 0.8);
  padding: 9px 11px;
  color: #d8e9ff;
  font-size: 13px;
}

.map-addresses a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
}

.map-addresses a:hover {
  color: #c8f6ff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-chip {
  border: 1px solid rgba(255, 87, 194, 0.34);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  color: #ffd6f3;
  background: rgba(31, 13, 39, 0.66);
}

.filter-chip-btn {
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-chip-btn:hover {
  border-color: rgba(255, 87, 194, 0.72);
  color: #ffe7f7;
}

.filter-chip-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(120, 250, 241, 0.32);
}

.filter-chip-btn.active {
  border-color: rgba(120, 250, 241, 0.78);
  color: #d8ffff;
  background: rgba(14, 38, 53, 0.86);
  box-shadow: 0 0 16px rgba(120, 250, 241, 0.26);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.meta-card {
  border: 1px solid rgba(111, 255, 200, 0.38);
  border-radius: 12px;
  padding: 12px;
  background: rgba(10, 23, 33, 0.66);
}

.meta-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c8ffcb;
  margin-bottom: 6px;
}

.meta-value {
  font-size: 14px;
  color: #ecffef;
}

@media (max-width: 1080px) {
  .neon-bar {
    border-radius: 22px;
  }

  .hero,
  .grid-3,
  .steps,
  .club-grid,
  .meta-grid,
  .map-grid,
  .district-layout {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page {
    padding: 18px 14px 72px;
  }

  .hero,
  .grid-3,
  .steps,
  .club-grid,
  .meta-grid,
  .map-grid,
  .district-layout {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 18px;
  }

  .portal {
    min-height: 260px;
  }

  .anime-hero {
    min-height: 320px;
  }

  .club-card img {
    height: 180px;
  }

  .club-slide img {
    min-height: 240px;
  }

  .club-slider-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }
}
