@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap");

:root {
  --navy-950: #020812;
  --navy-900: #04111f;
  --navy-850: #071827;
  --navy-800: #0b2235;
  --blue: #0097d7;
  --cyan: #34d6ff;
  --cyan-soft: #a9edff;
  --ice: #edfaff;
  --white: #f5fbff;
  --muted: #89a7b8;
  --text-dark: #092033;
  --line: rgba(91, 213, 255, 0.18);
  --line-light: rgba(6, 69, 102, 0.16);
  --radius: 18px;
  --page: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy-950);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

::selection {
  color: var(--navy-950);
  background: var(--cyan);
}

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

.skip-link:focus {
  z-index: 999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  color: #00121e;
  background: var(--cyan);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 76px;
  padding: 0 max(28px, calc(50vw - 590px));
  border-bottom: 1px solid rgba(103, 217, 255, 0.1);
  background: rgba(2, 11, 20, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: var(--cyan);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.35;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: #698b9d;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: #a7becb;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 17px;
  color: #001622;
  background: var(--cyan);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.menu-button {
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: white;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.25s;
}

.menu-button.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 780px;
  padding: 136px max(28px, calc(50vw - 590px)) 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 47%, rgba(0, 174, 231, 0.18), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(27, 95, 142, 0.2), transparent 27%),
    linear-gradient(135deg, #020914 0%, #061828 54%, #020812 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -7vw;
  bottom: -18vw;
  width: 57vw;
  height: 57vw;
  content: "";
  border: 1px solid rgba(52, 214, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(52, 214, 255, 0.018), 0 0 0 14vw rgba(52, 214, 255, 0.012);
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.6;
  background-image: linear-gradient(rgba(66, 191, 236, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(66, 191, 236, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 92%);
}

.sonar {
  position: absolute;
  z-index: -2;
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.sonar::before,
.sonar::after {
  position: absolute;
  inset: 50%;
  width: 50px;
  height: 50px;
  content: "";
  border: 1px solid rgba(52, 214, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sonar::after {
  width: 90px;
  height: 90px;
}

.sonar-one {
  top: 22%;
  left: 8%;
}

.sonar-two {
  right: 6%;
  bottom: 24%;
}

.hero-content {
  z-index: 2;
  padding-right: 30px;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--cyan);
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  color: #effaff;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: clamp(60px, 7vw, 94px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  margin-top: 9px;
  color: transparent;
  background: linear-gradient(105deg, #12acd7 0%, #b8f4ff 48%, #21bfe6 100%);
  background-clip: text;
}

.hero-lead {
  margin: 28px 0 0;
  color: #91abba;
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 37px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 23px;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
}

.button-primary {
  color: #00131e;
  background: linear-gradient(110deg, #0fb8e7, #7be8ff);
  box-shadow: 0 10px 36px rgba(0, 185, 235, 0.2);
}

.button-primary:hover {
  box-shadow: 0 14px 42px rgba(0, 185, 235, 0.36);
}

.button-ghost {
  color: #d6eaf2;
  border: 1px solid rgba(173, 233, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
}

.radar-card {
  position: relative;
  width: min(410px, 34vw);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(99, 220, 255, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(rgba(46, 197, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 197, 240, 0.07) 1px, transparent 1px),
    radial-gradient(circle, rgba(15, 159, 203, 0.12), rgba(0, 0, 0, 0.1) 65%);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: inset 0 0 60px rgba(23, 184, 225, 0.08), 0 0 70px rgba(12, 141, 184, 0.1);
}

.radar-card::before,
.radar-card::after {
  position: absolute;
  z-index: 2;
  content: "";
  background: rgba(96, 219, 255, 0.23);
}

.radar-card::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.radar-card::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.radar-ring {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(60, 216, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 28%; height: 28%; }
.ring-two { width: 55%; height: 55%; }
.ring-three { width: 80%; height: 80%; }

.radar-sweep {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 310deg, rgba(35, 212, 255, 0.32) 350deg, rgba(79, 220, 255, 0.02) 360deg);
  animation: radar 5s linear infinite;
}

.radar-dot {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px 4px rgba(52, 214, 255, 0.38);
  animation: blink 2.4s ease-in-out infinite;
}

.dot-one { top: 23%; left: 61%; }
.dot-two { top: 64%; left: 25%; animation-delay: 0.7s; }
.dot-three { top: 71%; left: 70%; animation-delay: 1.2s; }

.radar-center {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(52, 214, 255, 0.45);
  border-radius: 50%;
  background: rgba(3, 24, 39, 0.78);
  transform: translate(-50%, -50%);
}

.radar-center strong {
  align-self: end;
  color: var(--cyan-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.radar-center small {
  align-self: start;
  margin-top: 5px;
  color: #5c92a7;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.radar-card > p {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 13%;
  left: 0;
  margin: 0;
  color: rgba(171, 235, 255, 0.48);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-align: center;
}

.coordinate {
  position: absolute;
  color: rgba(139, 210, 232, 0.4);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.coordinate-top { top: 8%; right: 5%; }
.coordinate-bottom { bottom: 7%; left: 4%; }

.hero-stats {
  position: absolute;
  bottom: 54px;
  left: max(28px, calc(50vw - 590px));
  display: flex;
  gap: 44px;
}

.hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.hero-stats strong {
  color: #e6f8ff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
}

.hero-stats span {
  color: #627e8e;
  font-size: 11px;
}

.scroll-cue {
  position: absolute;
  right: max(28px, calc(50vw - 590px));
  bottom: 63px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4e7387;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  position: relative;
  width: 45px;
  height: 1px;
  overflow: hidden;
  background: #284555;
}

.scroll-cue i::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--cyan);
  animation: cue 2.2s ease-in-out infinite;
}

.notice-bar {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 87px;
  padding: 18px max(28px, calc(50vw - 590px));
  border-top: 1px solid rgba(52, 214, 255, 0.13);
  border-bottom: 1px solid rgba(52, 214, 255, 0.13);
  background: #071622;
}

.notice-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--cyan);
  font-family: serif;
  font-weight: 700;
  border: 1px solid rgba(52, 214, 255, 0.35);
  border-radius: 50%;
}

.notice-bar strong {
  font-size: 13px;
}

.notice-bar p {
  margin: 5px 0 0;
  color: #698899;
  font-size: 11px;
}

.notice-bar > a {
  margin-left: auto;
  color: var(--cyan);
  font-size: 12px;
  border-bottom: 1px solid rgba(52, 214, 255, 0.4);
}

.section {
  padding: 108px max(28px, calc(50vw - 590px));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading .section-kicker {
  margin: 0 0 13px;
}

.section-heading h2,
.declaration h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.section-heading > p:not(.section-kicker) {
  margin: 17px 0 0;
  color: #647e8d;
  font-size: 14px;
  line-height: 1.8;
}

.join-section {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 90% 20%, rgba(44, 185, 228, 0.14), transparent 24%),
    var(--ice);
}

.join-section .section-kicker {
  color: #007fae;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.step-card {
  position: relative;
  min-height: 285px;
  padding: 30px 27px;
  overflow: hidden;
  border-left: 1px solid var(--line-light);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.step-card:first-child { border-left: 0; }

.step-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: #071b2a;
  transform: translateY(101%);
  transition: transform 0.38s var(--ease);
}

.step-card:hover {
  color: #fff;
  transform: translateY(-6px);
}

.step-card:hover::before { transform: translateY(0); }
.step-card > * { position: relative; z-index: 1; }

.step-card > span {
  color: #87a9b8;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 34px 0 21px;
  color: #007da8;
  font-size: 24px;
  border: 1px solid rgba(0, 111, 151, 0.22);
  border-radius: 50%;
  transition: color 0.3s, border-color 0.3s;
}

.step-card:hover .step-icon {
  color: var(--cyan);
  border-color: rgba(52, 214, 255, 0.4);
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: #6d8491;
  font-size: 12px;
  line-height: 1.8;
  transition: color 0.3s;
}

.step-card:hover p { color: #89a7b7; }

.games-section {
  background:
    radial-gradient(circle at 94% 18%, rgba(27, 181, 224, 0.09), transparent 25%),
    #030c16;
}

.games-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 40px;
}

.games-heading > p {
  max-width: 340px;
  margin-bottom: 4px !important;
  text-align: right;
}

.games-heading code {
  color: var(--cyan-soft);
  font-family: monospace;
}

.game-tools {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(109, 197, 228, 0.16);
  background: #091724;
}

.search-box svg {
  width: 17px;
  color: #5a8598;
}

.search-box input {
  width: 100%;
  color: white;
  outline: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
}

.search-box input::placeholder { color: #516b79; }

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

.filters button {
  padding: 8px 13px;
  color: #7894a3;
  border: 1px solid transparent;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
  transition: 0.2s;
}

.filters button:hover,
.filters button.is-active {
  color: var(--cyan-soft);
  border-color: rgba(52, 214, 255, 0.25);
  background: rgba(52, 214, 255, 0.07);
}

.result-count {
  margin: 0;
  color: #5b7c8c;
  font-size: 11px;
  white-space: nowrap;
}

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

.game-card {
  position: relative;
  min-height: 405px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(105, 205, 236, 0.13);
  background: linear-gradient(150deg, rgba(14, 38, 55, 0.88), rgba(5, 18, 29, 0.96));
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.game-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transition: width 0.45s var(--ease);
}

.game-card:hover {
  border-color: rgba(52, 214, 255, 0.32);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px);
}

.game-card:hover::before { width: 100%; }

.game-index {
  position: absolute;
  top: 17px;
  right: 19px;
  color: rgba(128, 194, 216, 0.13);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 47px;
  font-weight: 800;
}

.game-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: 1px solid rgba(52, 214, 255, 0.3);
  background: rgba(52, 214, 255, 0.05);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.game-badge {
  margin-right: 34px;
  padding: 5px 8px;
  color: #7895a4;
  font-size: 9px;
  border: 1px solid rgba(126, 177, 195, 0.15);
}

.game-badge.is-hot {
  color: #7ce8ff;
  border-color: rgba(52, 214, 255, 0.25);
  background: rgba(52, 214, 255, 0.06);
}

.game-card h3 {
  margin: 27px 0 10px;
  font-size: 23px;
}

.game-description {
  min-height: 48px;
  margin: 0;
  color: #7793a2;
  font-size: 12px;
  line-height: 1.75;
}

.group-number {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 24px;
  padding: 13px 14px;
  border: 1px solid rgba(94, 180, 211, 0.12);
  background: rgba(0, 0, 0, 0.16);
}

.group-number span {
  grid-column: 1;
  color: #526f7e;
  font-size: 9px;
}

.group-number strong {
  grid-column: 1;
  margin-top: 3px;
  color: #d9f5ff;
  font-family: "Barlow Condensed", monospace;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.copy-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 7px 10px;
  color: var(--cyan);
  border: 0;
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

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

.join-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 15px;
  color: #001520;
  background: linear-gradient(100deg, #18bde8, #83eaff);
  font-size: 12px;
  font-weight: 800;
  transition: filter 0.2s;
}

.join-button:hover { filter: brightness(1.12); }

.join-button.is-disabled {
  width: 100%;
  color: #5e7684;
  border: 1px solid rgba(111, 173, 194, 0.12);
  background: #10202b;
  cursor: not-allowed;
}

.game-note {
  display: flex;
  gap: 8px;
  margin: 14px 0 0;
  color: #536f7e;
  font-size: 9px;
  line-height: 1.6;
}

.game-note span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 14px;
  height: 14px;
  color: #6fbfd6;
  border: 1px solid #426e7e;
  border-radius: 50%;
  font-family: serif;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 70px 30px;
  color: #8ca7b5;
  border: 1px dashed rgba(105, 205, 236, 0.2);
  text-align: center;
}

.empty-state strong {
  color: #dff7ff;
  font-size: 19px;
}

.empty-state p {
  margin: 10px 0 0;
  font-size: 12px;
}

.new-squad {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 17px;
  padding: 28px 31px;
  border: 1px solid rgba(88, 198, 230, 0.15);
  background: linear-gradient(90deg, rgba(18, 71, 96, 0.2), rgba(5, 18, 29, 0.7));
}

.new-squad-plus {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--cyan);
  border: 1px solid rgba(52, 214, 255, 0.32);
  border-radius: 50%;
  font-size: 24px;
}

.new-squad .section-kicker {
  margin: 0 0 6px;
  font-size: 10px;
}

.new-squad h3 {
  margin: 0;
  font-size: 19px;
}

.new-squad p:not(.section-kicker) {
  margin: 6px 0 0;
  color: #63808f;
  font-size: 11px;
}

.button-light {
  color: #052031;
  background: #dff9ff;
}

.teams-section {
  color: var(--text-dark);
  background: #e9f6fa;
}

.teams-section .section-kicker { color: #007ea9; }

.team-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--line-light);
  background: #f7fdff;
  box-shadow: 0 25px 70px rgba(18, 78, 105, 0.08);
}

.team-intro {
  padding: 42px;
  color: white;
  background:
    linear-gradient(rgba(14, 81, 110, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 81, 110, 0.1) 1px, transparent 1px),
    #071c2b;
  background-size: 38px 38px;
}

.team-intro > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.team-intro > div p {
  margin: 0;
  color: #66cfe9;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.team-intro h3 {
  margin: 23px 0 14px;
  font-size: 27px;
}

.team-intro > p {
  margin: 0;
  color: #7796a7;
  font-size: 12px;
  line-height: 1.9;
}

.text-button {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 29px;
  padding: 0 0 7px;
  color: var(--cyan);
  border: 0;
  border-bottom: 1px solid rgba(52, 214, 255, 0.35);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.team-list {
  padding: 18px 37px;
}

.team-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  min-height: 77px;
  border-bottom: 1px solid var(--line-light);
}

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

.team-row > span {
  color: #93afbb;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
}

.team-row strong,
.team-row small {
  display: block;
}

.team-row strong { font-size: 14px; }

.team-row small {
  margin-top: 5px;
  color: #8da2ac;
  font-size: 10px;
}

.team-row em {
  padding: 5px 8px;
  color: #8096a0;
  border: 1px solid #ccdde4;
  font-size: 9px;
  font-style: normal;
}

.team-row em.is-recruiting {
  color: #007da8;
  border-color: #8ed5e8;
  background: #e4f9ff;
}

.team-apply {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 21px;
  margin-top: 15px;
  padding: 26px 31px;
  border: 1px dashed rgba(14, 98, 133, 0.28);
}

.team-apply > span {
  color: #0093c5;
  font-size: 28px;
}

.team-apply strong {
  color: #0081ad;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.team-apply p {
  margin: 6px 0 0;
  color: #718894;
  font-size: 11px;
}

.button-outline {
  color: #07526e;
  border: 1px solid rgba(7, 100, 136, 0.3);
  background: transparent;
}

.safety-section {
  background:
    linear-gradient(120deg, rgba(8, 84, 117, 0.08), transparent 35%),
    #06131e;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(77, 183, 219, 0.13);
}

.safety-card {
  min-height: 225px;
  padding: 29px;
  background: #071725;
  transition: background 0.25s;
}

.safety-card:hover { background: #0a1e2e; }

.safety-card span {
  color: #3f758b;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
}

.safety-card h3 {
  margin: 45px 0 14px;
  font-size: 17px;
}

.safety-card p {
  margin: 0;
  color: #64808f;
  font-size: 11px;
  line-height: 1.8;
}

.declaration {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 105px max(28px, calc(50vw - 590px));
  overflow: hidden;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% 30%, rgba(27, 166, 207, 0.11), transparent 27%),
    #f2fbfe;
}

.declaration-mark {
  position: absolute;
  right: -0.08em;
  bottom: -0.25em;
  color: rgba(4, 94, 128, 0.035);
  font-family: "Barlow Condensed", sans-serif;
  font-size: min(41vw, 590px);
  font-weight: 900;
  line-height: 1;
}

.declaration-content {
  position: relative;
  z-index: 1;
  max-width: 730px;
}

.declaration .section-kicker { color: #0085b3; }

.declaration-content > p:not(.section-kicker) {
  margin: 19px 0 0;
  color: #607b88;
  font-size: 13px;
  line-height: 1.95;
}

.declaration ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.declaration li {
  padding: 9px 12px;
  color: #386779;
  border: 1px solid rgba(15, 112, 148, 0.18);
  background: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  min-height: 150px;
  padding: 35px max(28px, calc(50vw - 590px));
  border-top: 1px solid rgba(70, 191, 229, 0.13);
  background: #020914;
}

.footer-brand strong,
.footer-brand span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
}

.footer-brand strong {
  font-size: 22px;
  letter-spacing: 0.06em;
}

.footer-brand span {
  margin-top: 5px;
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.site-footer > p {
  margin: 0;
  color: #5f7987;
  font-size: 11px;
}

.site-footer .footer-note {
  text-align: right;
}

.site-footer > a {
  color: #7ba0b1;
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 13px 18px;
  color: #00141f;
  background: var(--cyan-soft);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s, transform 0.25s;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

@keyframes radar {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 100% { opacity: 0.35; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes cue {
  0% { left: -100%; }
  55%, 100% { left: 100%; }
}

@media (max-width: 1020px) {
  :root { --page: min(100% - 40px, 880px); }

  .site-header { padding: 0 24px; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(380px, 85vw);
    height: 100vh;
    padding: 90px 48px;
    background: rgba(3, 16, 27, 0.98);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
  }

  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: 18px; }
  .menu-button { display: block; }

  .hero {
    grid-template-columns: 1fr 0.75fr;
    min-height: 730px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .radar-card { width: min(340px, 37vw); }
  .hero-stats { left: 24px; }
  .scroll-cue { right: 24px; }

  .notice-bar,
  .section,
  .declaration,
  .site-footer {
    padding-right: max(20px, calc(50vw - 440px));
    padding-left: max(20px, calc(50vw - 440px));
  }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .step-card:nth-child(4) { border-top: 1px solid var(--line-light); }

  .game-tools { grid-template-columns: 240px 1fr; }
  .result-count { grid-column: 1 / -1; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 18px; }
  html { scroll-padding-top: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 8px; }

  .hero {
    display: block;
    min-height: 780px;
    padding: 122px 20px 150px;
  }

  .hero-content { padding-right: 0; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 64px); }
  .hero h1 span { white-space: nowrap; }
  .hero-lead br { display: none; }
  .hero-visual { position: absolute; right: -128px; bottom: 57px; min-height: 300px; opacity: 0.38; }
  .radar-card { width: 330px; }
  .coordinate { display: none; }

  .hero-stats {
    right: 20px;
    bottom: 73px;
    left: 20px;
    gap: 0;
    justify-content: space-between;
  }

  .hero-stats div {
    display: block;
    text-align: left;
  }

  .hero-stats strong,
  .hero-stats span { display: block; }
  .hero-stats span { margin-top: 3px; }
  .scroll-cue { display: none; }

  .notice-bar {
    align-items: flex-start;
    padding: 20px;
  }

  .notice-bar > a { display: none; }

  .section,
  .declaration {
    padding: 78px 20px;
  }

  .section-heading { margin-bottom: 34px; }

  .steps { grid-template-columns: 1fr; }
  .step-card {
    min-height: 210px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .step-card:first-child { border-top: 0; }
  .step-card:nth-child(4) { border-left: 0; }
  .step-icon { margin: 23px 0 17px; }

  .games-heading { display: block; }
  .games-heading > p { max-width: none; text-align: left; }

  .game-tools { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: 1fr; }
  .game-card { min-height: auto; }

  .new-squad,
  .team-apply {
    grid-template-columns: auto 1fr;
    padding: 24px 20px;
  }

  .new-squad .button,
  .team-apply .button {
    grid-column: 1 / -1;
  }

  .team-panel { grid-template-columns: 1fr; }
  .team-intro { padding: 32px 25px; }
  .team-list { padding: 12px 21px; }

  .safety-grid { grid-template-columns: 1fr; }
  .safety-card { min-height: 190px; }
  .safety-card h3 { margin-top: 30px; }

  .declaration { min-height: 620px; }
  .declaration ul { display: grid; }

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

  .site-footer .footer-note { text-align: left; }
}

@media (max-width: 430px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .filters { display: grid; grid-template-columns: repeat(2, 1fr); }
  .filters button { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
