@charset "UTF-8";
/* ============================================================
 * 先方から提供されたカスタムLP用スタイル
 * SHOUT! NEON LIVE
 * PC base width: 1000px / SP min: 320px / SP target: 360px
   ============================================================ */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #05020e;
  color: #f5f0ff;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img,
video {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
}

:root {
  --accent: #00e5ff;
  --accent-2: #ff2e93;
  --accent-3: #9b5bff;
  --bg: #05020e;
  --bg-2: #0b0622;
  --ink: #f5f0ff;
  --ink-dim: rgba(245, 240, 255, 0.6);
  --display: "Orbitron", "Chakra Petch", sans-serif;
  --body: "Noto Sans JP", sans-serif;
}

.neon-root {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
}

/* ============================================================
   Common: keyframes / utilities
   ============================================================ */
@-webkit-keyframes neon-scan {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes neon-scan {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes neon-float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(var(--r, 0deg));
            transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(var(--r, 0deg));
            transform: translateY(-10px) rotate(var(--r, 0deg));
  }
}
@keyframes neon-float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(var(--r, 0deg));
            transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(var(--r, 0deg));
            transform: translateY(-10px) rotate(var(--r, 0deg));
  }
}
@-webkit-keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(0, 229, 255, 0), 0 0 48px rgba(0, 229, 255, 0.7);
  }
}
@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(0, 229, 255, 0), 0 0 48px rgba(0, 229, 255, 0.7);
  }
}
@-webkit-keyframes neon-sparkle {
  0%, 100% {
    opacity: 0;
    -webkit-transform: scale(0.3) rotate(0);
            transform: scale(0.3) rotate(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
}
@keyframes neon-sparkle {
  0%, 100% {
    opacity: 0;
    -webkit-transform: scale(0.3) rotate(0);
            transform: scale(0.3) rotate(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
}
@-webkit-keyframes neon-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes neon-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes neon-glow-sweep {
  0% {
    -webkit-transform: translateX(-100%) skewX(-20deg);
            transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    -webkit-transform: translateX(300%) skewX(-20deg);
            transform: translateX(300%) skewX(-20deg);
  }
}
@keyframes neon-glow-sweep {
  0% {
    -webkit-transform: translateX(-100%) skewX(-20deg);
            transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    -webkit-transform: translateX(300%) skewX(-20deg);
            transform: translateX(300%) skewX(-20deg);
  }
}
[data-reveal] {
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.neon-reveal-ready [data-reveal]:not(.neon-in) {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

.neon-reveal-ready [data-reveal].neon-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

.neon-grid-bg {
  background-image: linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.neon-section-head-en {
  letter-spacing: -0.02em;
  font-weight: 900;
  font-family: var(--display);
  line-height: 0.9;
}

/* Primary button --------------------------------------------- */
.neon-btn-primary {
  display: inline-block;
  overflow: hidden;
  position: relative;
  border: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.6), 0 0 48px rgba(255, 46, 147, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  color: #000;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  cursor: pointer;
  transition: box-shadow 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s;
}

a.neon-btn-primary,
a.neon-btn-primary:link,
a.neon-btn-primary:visited,
a.neon-btn-primary:hover,
a.neon-btn-primary:active,
a.neon-btn-primary:focus {
  color: #000 !important;
  text-decoration: none !important;
}

.neon-nav-cta,
.neon-hero-cta,
.neon-campaign-cta,
.neon-bottom-cta-btn {
  text-align: center;
}

.neon-btn-primary::before {
  position: absolute;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  content: "";
  -webkit-transform: translateX(-100%) skewX(-20deg);
          transform: translateX(-100%) skewX(-20deg);
  -webkit-animation: neon-glow-sweep 3s ease-in-out infinite;
          animation: neon-glow-sweep 3s ease-in-out infinite;
  pointer-events: none;
  inset: 0;
}

.neon-btn-primary:hover {
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.9), 0 0 72px rgba(255, 46, 147, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  -webkit-transform: translateY(-2px) scale(1.02);
          transform: translateY(-2px) scale(1.02);
}

/* ============================================================
   Nav
   ============================================================ */
.neon-nav {
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  background: linear-gradient(180deg, rgba(5, 2, 14, 0.95), rgba(5, 2, 14, 0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.neon-nav-logo {
  height: 40px;
  -webkit-filter: drop-shadow(0 0 8px var(--accent));
          filter: drop-shadow(0 0 8px var(--accent));
}

.neon-nav-cta {
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
}

/* ============================================================
   Hero
   ============================================================ */
.neon-hero {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: radial-gradient(ellipse at 50% 30%, #1a0845 0%, #0b0622 40%, #05020e 100%);
}

.neon-hero-kv {
  position: absolute;
  background-image: url("/gesolite/pc/img/games/9187/key_visual.jpg");
  background-position: center 30%;
  background-size: cover;
  -webkit-filter: saturate(1.3);
          filter: saturate(1.3);
  inset: 0;
  will-change: transform;
}

.neon-hero-overlay {
  position: absolute;
  background: linear-gradient(180deg, rgba(5, 2, 14, 0.3) 0%, rgba(5, 2, 14, 0.5) 60%, #05020e 100%);
  inset: 0;
}

.neon-hero-grid {
  position: absolute;
  opacity: 0.35;
  inset: 0;
}

.neon-hero-scan-wrap {
  overflow: hidden;
  position: absolute;
  pointer-events: none;
  inset: 0;
}

.neon-hero-scan {
  position: absolute;
  right: 0;
  left: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.1), transparent);
  -webkit-animation: neon-scan 8s linear infinite;
          animation: neon-scan 8s linear infinite;
}

.neon-hero-sparkles {
  position: absolute;
  pointer-events: none;
  inset: 0;
}

.neon-sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
  -webkit-animation-name: neon-sparkle;
          animation-name: neon-sparkle;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.neon-hero-eyebrow {
  z-index: 5;
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 28px;
  right: 20px;
  padding: 11px 24px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.12);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.5);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--display);
  gap: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.neon-hero-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  -webkit-animation: neon-pulse 2s ease-in-out infinite;
          animation: neon-pulse 2s ease-in-out infinite;
}

.neon-hero-content {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 24px 120px;
  text-align: center;
}

.neon-hero-logo-wrap {
  margin-bottom: 16px;
  text-align: center;
}

.neon-hero-logo {
  height: clamp(58px, 10vw, 110px);
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 0 24px var(--accent)) drop-shadow(0 0 48px rgba(255, 46, 147, 0.5));
          filter: drop-shadow(0 0 24px var(--accent)) drop-shadow(0 0 48px rgba(255, 46, 147, 0.5));
}

.neon-hero-subtitle {
  margin-bottom: 32px;
  color: var(--accent);
  text-align: center;
  text-shadow: 0 0 12px var(--accent);
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 30px);
  font-family: var(--display);
}

.neon-hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.neon-hero-cta {
  min-width: 320px;
  padding: 18px 56px;
  border-radius: 4px;
  font-size: 17px;
}

.neon-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  color: rgba(245, 240, 255, 0.75);
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--display);
  gap: 16px;
}

.neon-meta-sep {
  opacity: 0.4;
}

.neon-hero-scroll {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 28px;
  left: 50%;
  color: var(--ink-dim);
  letter-spacing: 0.3em;
  font-size: 9px;
  font-family: var(--display);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  gap: 8px;
}

.neon-hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--accent), transparent);
  box-shadow: 0 0 4px var(--accent);
}

/* ============================================================
   Catch
   ============================================================ */
.neon-catch {
  overflow: hidden;
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, #05020e 0%, #0b0622 50%, #05020e 100%);
}

.neon-catch-grid {
  position: absolute;
  opacity: 0.3;
  inset: 0;
}

.neon-catch-star {
  display: inline-block;
  position: absolute;
  -webkit-filter: drop-shadow(0 0 10px currentColor);
          filter: drop-shadow(0 0 10px currentColor);
  -webkit-transform: rotate(var(--r));
          transform: rotate(var(--r));
  -webkit-animation: neon-float 4s ease-in-out infinite;
          animation: neon-float 4s ease-in-out infinite;
  pointer-events: none;
}

.neon-catch-star svg {
  display: block;
  width: 100%;
  height: 100%;
}

.neon-catch-inner {
  z-index: 2;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.neon-catch-title {
  margin: 0 0 16px;
  text-wrap: balance;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
  letter-spacing: -0.03em;
  font-weight: 900;
  font-size: clamp(32px, 5.5vw, 72px);
  font-family: var(--display);
  line-height: 1.15;
}

.neon-catch-title-grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-filter: drop-shadow(0 0 30px rgba(255, 46, 147, 0.5));
          filter: drop-shadow(0 0 30px rgba(255, 46, 147, 0.5));
  -webkit-text-fill-color: transparent;
}

.neon-catch-en {
  margin-top: 14px;
  color: transparent;
  letter-spacing: 0.05em;
  font-size: clamp(24px, 3.5vw, 42px);
  -webkit-filter: drop-shadow(0 0 16px var(--accent));
          filter: drop-shadow(0 0 16px var(--accent));
  -webkit-text-stroke: 1.5px var(--accent);
}

/* ============================================================
   Campaign
   ============================================================ */
.neon-campaign {
  overflow: hidden;
  position: relative;
  padding: 70px 24px 90px;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  background: #05020e;
}

.neon-campaign-glow {
  position: absolute;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 229, 255, 0.12) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(255, 46, 147, 0.12) 0%, transparent 55%);
  pointer-events: none;
  inset: 0;
}

.neon-campaign-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.neon-campaign-badge-wrap {
  margin-bottom: 22px;
  text-align: center;
}

.neon-campaign-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 28px rgba(255, 46, 147, 0.55);
  color: #000;
  letter-spacing: 0.28em;
  font-weight: 900;
  font-size: 15px;
  font-family: var(--display);
  gap: 12px;
}

.neon-campaign-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  -webkit-animation: neon-pulse 1.6s ease-in-out infinite;
          animation: neon-pulse 1.6s ease-in-out infinite;
}

.neon-campaign-card {
  overflow: hidden;
  position: relative;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  background: #000;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.4), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.neon-campaign-card img {
  display: block;
  width: 100%;
}

.neon-campaign-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 8px var(--accent);
  pointer-events: none;
}

.neon-campaign-corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.neon-campaign-corner-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.neon-campaign-corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.neon-campaign-corner-br {
  right: 10px;
  bottom: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.neon-campaign-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  gap: 20px;
}

.neon-campaign-cta {
  min-width: 320px;
  padding: 18px 56px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 17px;
}

/* ============================================================
   Trailer
   ============================================================ */
.neon-trailer {
  overflow: hidden;
  position: relative;
  padding: 90px 24px;
  background: #05020e;
  color: var(--ink);
}

.neon-trailer-bg {
  position: absolute;
  background-image: url("/gesolite/pc/img/games/9187/bg_neon_stage.png");
  background-position: center;
  background-size: cover;
  opacity: 0.45;
  -webkit-filter: blur(6px) saturate(1.2);
          filter: blur(6px) saturate(1.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  pointer-events: none;
  inset: 0;
}

.neon-trailer-overlay {
  position: absolute;
  background: linear-gradient(180deg, rgba(5, 2, 14, 0.85) 0%, rgba(5, 2, 14, 0.6) 50%, rgba(5, 2, 14, 0.95) 100%);
  pointer-events: none;
  inset: 0;
}

.neon-trailer-grid {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  inset: 0;
}

.neon-trailer-marquee {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.neon-trailer-marquee-track {
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  color: #000;
  white-space: nowrap;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 14px;
  font-family: var(--display);
  -webkit-animation: neon-marquee 60s linear infinite;
          animation: neon-marquee 60s linear infinite;
  gap: 32px;
}

.neon-trailer-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 36px;
}

.neon-trailer-head {
  margin-bottom: 40px;
  text-align: center;
}

.neon-trailer-title {
  margin-bottom: 4px;
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent), 0 0 48px rgba(0, 229, 255, 0.5);
  font-size: clamp(54px, 8vw, 100px);
}

.neon-trailer-frame {
  overflow: hidden;
  position: relative;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: #000;
  background-image: url("/gesolite/pc/img/games/9187/key_visual.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3), 0 0 80px rgba(255, 46, 147, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  aspect-ratio: 16/9;
}

.neon-trailer-frame-overlay {
  position: absolute;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
  inset: 0;
}

.neon-trailer-video {
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  inset: 0;
}

.neon-trailer-play {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.7), 0 0 80px rgba(255, 46, 147, 0.4);
  cursor: pointer;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.neon-trailer-play:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.08);
          transform: translate(-50%, -50%) scale(1.08);
}

.neon-trailer-time {
  z-index: 2;
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 11px;
  font-family: var(--display);
}

/* ============================================================
   Features
   ============================================================ */
.neon-features {
  overflow: hidden;
  position: relative;
  padding: 110px 24px;
  background: linear-gradient(180deg, #05020e 0%, #0b0622 100%);
}

.neon-features-grid-bg {
  position: absolute;
  opacity: 0.2;
  inset: 0;
}

.neon-features-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.neon-features-head {
  margin-bottom: 64px;
  text-align: center;
}

.neon-features-title {
  margin-bottom: 8px;
  color: var(--accent-2);
  text-shadow: 0 0 28px var(--accent-2), 0 0 60px rgba(255, 46, 147, 0.5);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.9;
}

.neon-features-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
  color: var(--ink);
  letter-spacing: 0.3em;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--display);
}

.neon-features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.neon-feature-row {
  display: grid;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11, 6, 34, 0.8) 0%, rgba(5, 2, 14, 0.9) 100%);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.neon-feature-row--1 {
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.neon-feature-row--2 {
  border: 1px solid rgba(255, 46, 147, 0.4);
  box-shadow: 0 0 40px rgba(255, 46, 147, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.neon-feature-row--3 {
  border: 1px solid rgba(155, 91, 255, 0.4);
  box-shadow: 0 0 40px rgba(155, 91, 255, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.neon-feature-row--reverse .neon-feature-text {
  order: 2;
}

.neon-feature-row--reverse .neon-feature-img {
  order: 1;
}

.neon-feature-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
}

.neon-feature-row--1 .neon-feature-corner {
  background: linear-gradient(225deg, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
}

.neon-feature-row--2 .neon-feature-corner {
  background: linear-gradient(225deg, rgba(255, 46, 147, 0.2) 0%, transparent 70%);
}

.neon-feature-row--3 .neon-feature-corner {
  background: linear-gradient(225deg, rgba(155, 91, 255, 0.2) 0%, transparent 70%);
}

.neon-feature-text {
  z-index: 1;
  order: 1;
  position: relative;
  padding: 40px 32px;
}

.neon-feature-num {
  margin-bottom: 8px;
  color: transparent;
  letter-spacing: -0.02em;
  font-weight: 900;
  font-size: 120px;
  font-family: var(--display);
  line-height: 0.85;
}

.neon-feature-row--1 .neon-feature-num {
  -webkit-filter: drop-shadow(0 0 16px var(--accent));
          filter: drop-shadow(0 0 16px var(--accent));
  -webkit-text-stroke: 1.5px var(--accent);
}

.neon-feature-row--2 .neon-feature-num {
  -webkit-filter: drop-shadow(0 0 16px var(--accent-2));
          filter: drop-shadow(0 0 16px var(--accent-2));
  -webkit-text-stroke: 1.5px var(--accent-2);
}

.neon-feature-row--3 .neon-feature-num {
  -webkit-filter: drop-shadow(0 0 16px var(--accent-3));
          filter: drop-shadow(0 0 16px var(--accent-3));
  -webkit-text-stroke: 1.5px var(--accent-3);
}

.neon-feature-eyebrow {
  margin-bottom: 14px;
  letter-spacing: 0.25em;
  font-weight: 900;
  font-size: 11px;
  font-family: var(--display);
}

.neon-feature-row--1 .neon-feature-eyebrow {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.neon-feature-row--2 .neon-feature-eyebrow {
  color: var(--accent-2);
  text-shadow: 0 0 8px var(--accent-2);
}

.neon-feature-row--3 .neon-feature-eyebrow {
  color: var(--accent-3);
  text-shadow: 0 0 8px var(--accent-3);
}

.neon-feature-title {
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 28px);
  font-family: var(--display);
  line-height: 1.25;
}

.neon-feature-body {
  max-width: 420px;
  margin: 0;
  color: var(--ink-dim);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.85;
}

.neon-feature-img {
  order: 2;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.neon-feature-row--1 .neon-feature-img {
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
}

.neon-feature-row--2 .neon-feature-img {
  background: radial-gradient(ellipse at center, rgba(255, 46, 147, 0.15) 0%, transparent 70%);
}

.neon-feature-row--3 .neon-feature-img {
  background: radial-gradient(ellipse at center, rgba(155, 91, 255, 0.15) 0%, transparent 70%);
}

.neon-feature-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.neon-feature-img-tint {
  position: absolute;
  pointer-events: none;
  inset: 0;
}

.neon-feature-row--1 .neon-feature-img-tint {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
}

.neon-feature-row--2 .neon-feature-img-tint {
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.08) 0%, transparent 60%);
}

.neon-feature-row--3 .neon-feature-img-tint {
  background: linear-gradient(135deg, rgba(155, 91, 255, 0.08) 0%, transparent 60%);
}

/* ============================================================
   Gallery
   ============================================================ */
.neon-gallery {
  overflow: hidden;
  position: relative;
  padding: 110px 24px;
  background: #05020e;
}

.neon-gallery-bg {
  position: absolute;
  opacity: 0.25;
  inset: 0;
}

.neon-gallery-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.neon-gallery-head {
  margin-bottom: 72px;
  text-align: center;
}

.neon-gallery-title {
  margin-bottom: 8px;
  color: var(--accent-3);
  text-shadow: 0 0 28px var(--accent-3), 0 0 60px rgba(155, 91, 255, 0.5);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.9;
}

.neon-gallery-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--accent-3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--ink);
  letter-spacing: 0.3em;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--display);
}

.neon-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.neon-shot-card {
  position: relative;
  padding-top: 44px;
}

.neon-shot-card:hover .neon-shot-frame {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.neon-gallery-num {
  z-index: 4;
  position: absolute;
  top: -36px;
  left: 8px;
  color: transparent;
  letter-spacing: -0.02em;
  font-size: 56px;
  line-height: 1;
  opacity: 0.95;
  pointer-events: none;
}

.neon-shot-card--1 .neon-gallery-num {
  text-shadow: 0 0 24px var(--accent);
  -webkit-text-stroke: 1.5px var(--accent);
}

.neon-shot-card--2 .neon-gallery-num {
  text-shadow: 0 0 24px var(--accent-2);
  -webkit-text-stroke: 1.5px var(--accent-2);
}

.neon-shot-card--3 .neon-gallery-num {
  text-shadow: 0 0 24px var(--accent-3);
  -webkit-text-stroke: 1.5px var(--accent-3);
}

.neon-shot-frame {
  position: relative;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0b0622 0%, #05020e 100%);
  transition: box-shadow 0.25s, -webkit-transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s, -webkit-transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.neon-shot-card--1 .neon-shot-frame {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.33), inset 0 0 24px rgba(0, 0, 0, 0.6);
}

.neon-shot-card--2 .neon-shot-frame {
  border: 1.5px solid var(--accent-2);
  box-shadow: 0 0 32px rgba(255, 46, 147, 0.33), inset 0 0 24px rgba(0, 0, 0, 0.6);
}

.neon-shot-card--3 .neon-shot-frame {
  border: 1.5px solid var(--accent-3);
  box-shadow: 0 0 32px rgba(155, 91, 255, 0.33), inset 0 0 24px rgba(0, 0, 0, 0.6);
}

.neon-shot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  letter-spacing: 0.25em;
  font-weight: 800;
  font-size: 9px;
  font-family: var(--display);
}

.neon-shot-card--1 .neon-shot-meta {
  border-bottom: 1px dashed rgba(0, 229, 255, 0.33);
}

.neon-shot-card--2 .neon-shot-meta {
  border-bottom: 1px dashed rgba(255, 46, 147, 0.33);
}

.neon-shot-card--3 .neon-shot-meta {
  border-bottom: 1px dashed rgba(155, 91, 255, 0.33);
}

.neon-shot-meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.neon-shot-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-animation: neon-pulse 1.6s ease-in-out infinite;
          animation: neon-pulse 1.6s ease-in-out infinite;
}

.neon-shot-card--1 .neon-shot-meta-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.neon-shot-card--2 .neon-shot-meta-dot {
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}

.neon-shot-card--3 .neon-shot-meta-dot {
  background: var(--accent-3);
  box-shadow: 0 0 8px var(--accent-3);
}

.neon-shot-card--1 .neon-shot-meta-tag {
  color: var(--accent);
  text-shadow: 0 0 6px var(--accent);
}

.neon-shot-card--2 .neon-shot-meta-tag {
  color: var(--accent-2);
  text-shadow: 0 0 6px var(--accent-2);
}

.neon-shot-card--3 .neon-shot-meta-tag {
  color: var(--accent-3);
  text-shadow: 0 0 6px var(--accent-3);
}

.neon-shot-meta-right {
  color: var(--ink-dim);
}

.neon-shot-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  background: #000;
  aspect-ratio: 9/19.5;
}

.neon-shot-card--1 .neon-shot-img {
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.neon-shot-card--2 .neon-shot-img {
  border: 1px solid rgba(255, 46, 147, 0.25);
}

.neon-shot-card--3 .neon-shot-img {
  border: 1px solid rgba(155, 91, 255, 0.25);
}

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

.neon-shot-img-tint {
  position: absolute;
  pointer-events: none;
  inset: 0;
}

.neon-shot-card--1 .neon-shot-img-tint {
  background: radial-gradient(ellipse at top, rgba(0, 229, 255, 0.13) 0%, transparent 55%);
}

.neon-shot-card--2 .neon-shot-img-tint {
  background: radial-gradient(ellipse at top, rgba(255, 46, 147, 0.13) 0%, transparent 55%);
}

.neon-shot-card--3 .neon-shot-img-tint {
  background: radial-gradient(ellipse at top, rgba(155, 91, 255, 0.13) 0%, transparent 55%);
}

.neon-shot-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.neon-shot-card--1 .neon-shot-corner {
  box-shadow: 0 0 8px var(--accent);
}

.neon-shot-card--2 .neon-shot-corner {
  box-shadow: 0 0 8px var(--accent-2);
}

.neon-shot-card--3 .neon-shot-corner {
  box-shadow: 0 0 8px var(--accent-3);
}

.neon-shot-corner-tl {
  top: 6px;
  left: 6px;
}

.neon-shot-corner-tr {
  top: 6px;
  right: 6px;
}

.neon-shot-corner-bl {
  bottom: 6px;
  left: 6px;
}

.neon-shot-corner-br {
  right: 6px;
  bottom: 6px;
}

.neon-shot-card--1 .neon-shot-corner-tl {
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.neon-shot-card--1 .neon-shot-corner-tr {
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.neon-shot-card--1 .neon-shot-corner-bl {
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.neon-shot-card--1 .neon-shot-corner-br {
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.neon-shot-card--2 .neon-shot-corner-tl {
  border-top: 2px solid var(--accent-2);
  border-left: 2px solid var(--accent-2);
}

.neon-shot-card--2 .neon-shot-corner-tr {
  border-top: 2px solid var(--accent-2);
  border-right: 2px solid var(--accent-2);
}

.neon-shot-card--2 .neon-shot-corner-bl {
  border-bottom: 2px solid var(--accent-2);
  border-left: 2px solid var(--accent-2);
}

.neon-shot-card--2 .neon-shot-corner-br {
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
}

.neon-shot-card--3 .neon-shot-corner-tl {
  border-top: 2px solid var(--accent-3);
  border-left: 2px solid var(--accent-3);
}

.neon-shot-card--3 .neon-shot-corner-tr {
  border-top: 2px solid var(--accent-3);
  border-right: 2px solid var(--accent-3);
}

.neon-shot-card--3 .neon-shot-corner-bl {
  border-bottom: 2px solid var(--accent-3);
  border-left: 2px solid var(--accent-3);
}

.neon-shot-card--3 .neon-shot-corner-br {
  border-right: 2px solid var(--accent-3);
  border-bottom: 2px solid var(--accent-3);
}

.neon-shot-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 14px;
  gap: 10px;
}

.neon-shot-en {
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  font-size: 28px;
  line-height: 1;
}

.neon-shot-card--1 .neon-shot-en {
  color: var(--accent);
  text-shadow: 0 0 14px var(--accent);
}

.neon-shot-card--2 .neon-shot-en {
  color: var(--accent-2);
  text-shadow: 0 0 14px var(--accent-2);
}

.neon-shot-card--3 .neon-shot-en {
  color: var(--accent-3);
  text-shadow: 0 0 14px var(--accent-3);
}

.neon-shot-label {
  color: var(--ink-dim);
  font-weight: 500;
  font-size: 12px;
  font-family: var(--body);
  line-height: 1.4;
}

.neon-shot-pager {
  padding: 4px 8px;
  border-radius: 2px;
  white-space: nowrap;
  letter-spacing: 0.2em;
  font-weight: 800;
  font-size: 10px;
  font-family: var(--display);
}

.neon-shot-card--1 .neon-shot-pager {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.neon-shot-card--2 .neon-shot-pager {
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}

.neon-shot-card--3 .neon-shot-pager {
  border: 1px solid var(--accent-3);
  color: var(--accent-3);
}

/* ============================================================
   PC Play
   ============================================================ */
.neon-pc {
  overflow: hidden;
  position: relative;
  padding: 80px 24px;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  background: linear-gradient(180deg, #05020e 0%, #0b0622 50%, #05020e 100%);
}

.neon-pc-bg {
  position: absolute;
  opacity: 0.2;
  inset: 0;
}

.neon-pc-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.neon-pc-head {
  margin-bottom: 40px;
  text-align: center;
}

.neon-pc-title {
  margin-bottom: 12px;
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent), 0 0 48px rgba(0, 229, 255, 0.5);
  font-size: clamp(54px, 8vw, 100px);
  line-height: 0.9;
}

.neon-pc-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
  color: var(--ink);
  letter-spacing: 0.3em;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--display);
}

.neon-pc-card {
  overflow: hidden;
  position: relative;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  background: #000;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.4), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.neon-pc-card img {
  display: block;
  width: 100%;
}

.neon-pc-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 8px var(--accent);
  pointer-events: none;
}

.neon-pc-corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.neon-pc-corner-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.neon-pc-corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.neon-pc-corner-br {
  right: 10px;
  bottom: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* ============================================================
   System Requirements
   ============================================================ */
.neon-specs {
  overflow: hidden;
  position: relative;
  padding: 80px 24px;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  background: #05020e;
}

.neon-specs-bg {
  position: absolute;
  opacity: 0.18;
  inset: 0;
}

.neon-specs-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.neon-specs-head {
  margin-bottom: 40px;
  text-align: center;
}

.neon-specs-title {
  margin-bottom: 12px;
  color: var(--accent-3);
  text-shadow: 0 0 24px var(--accent-3), 0 0 48px rgba(155, 91, 255, 0.5);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.9;
}

.neon-specs-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--accent-3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 16px rgba(155, 91, 255, 0.3);
  color: var(--ink);
  letter-spacing: 0.3em;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--display);
}

.neon-specs-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.neon-specs-card {
  position: relative;
  padding: 30px 26px;
  border: 1.5px solid var(--accent-3);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(11, 6, 34, 0.9) 0%, rgba(5, 2, 14, 0.95) 100%);
  box-shadow: 0 0 40px rgba(155, 91, 255, 0.25), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.neon-specs-os {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(155, 91, 255, 0.35);
  gap: 12px;
}

.neon-specs-os-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--accent-3);
  -webkit-filter: drop-shadow(0 0 8px rgba(155, 91, 255, 0.7));
          filter: drop-shadow(0 0 8px rgba(155, 91, 255, 0.7));
}

.neon-specs-os-icon svg {
  width: 100%;
  height: 100%;
}

.neon-specs-os-name {
  color: var(--accent-3);
  text-shadow: 0 0 14px rgba(155, 91, 255, 0.7);
  letter-spacing: 0.04em;
  font-size: 26px;
  line-height: 1;
}

.neon-specs-block + .neon-specs-block {
  margin-top: 22px;
}

.neon-specs-block-title {
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-3);
  color: var(--ink);
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 12px;
  font-family: var(--display);
  line-height: 1.4;
}

.neon-specs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.neon-specs-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: rgba(245, 240, 255, 0.85);
  font-size: 14px;
  line-height: 1.65;
}

.neon-specs-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 8px rgba(155, 91, 255, 0.8);
  content: "";
}

.neon-specs-block--min .neon-specs-block-title {
  border-left-color: var(--accent-2);
}

.neon-specs-block--min .neon-specs-list li::before {
  background: var(--accent-2);
  box-shadow: 0 0 8px rgba(255, 46, 147, 0.8);
}

.neon-specs-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 8px var(--accent-3);
  pointer-events: none;
}

.neon-specs-corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--accent-3);
  border-left: 2px solid var(--accent-3);
}

.neon-specs-corner-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid var(--accent-3);
  border-right: 2px solid var(--accent-3);
}

.neon-specs-corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid var(--accent-3);
  border-left: 2px solid var(--accent-3);
}

.neon-specs-corner-br {
  right: 10px;
  bottom: 10px;
  border-right: 2px solid var(--accent-3);
  border-bottom: 2px solid var(--accent-3);
}

/* ============================================================
   Bottom CTA
   ============================================================ */
.neon-bottom-cta {
  overflow: hidden;
  position: relative;
  padding: 130px 24px 150px;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  background: #05020e;
}

.neon-bottom-cta-bg {
  position: absolute;
  background-image: url("/gesolite/pc/img/games/9187/bg_neon_concert.png");
  background-position: center 35%;
  background-size: cover;
  opacity: 0.75;
  inset: 0;
}

.neon-bottom-cta-overlay-1 {
  position: absolute;
  background: linear-gradient(180deg, rgba(5, 2, 14, 0.75) 0%, rgba(5, 2, 14, 0.2) 35%, rgba(5, 2, 14, 0.2) 60%, rgba(5, 2, 14, 0.95) 100%);
  inset: 0;
}

.neon-bottom-cta-overlay-2 {
  position: absolute;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5, 2, 14, 0.55) 85%);
  inset: 0;
}

.neon-bottom-cta-overlay-3 {
  position: absolute;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.22) 0%, transparent 55%);
  inset: 0;
  mix-blend-mode: screen;
}

.neon-bottom-cta-inner {
  z-index: 2;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.neon-bottom-cta-title {
  margin-bottom: 16px;
  color: var(--accent);
  text-shadow: 0 0 28px var(--accent), 0 0 60px rgba(0, 229, 255, 0.5);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
}

.neon-bottom-cta-h {
  margin: 0 0 28px;
  color: var(--ink);
  text-wrap: balance;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
  white-space: pre-line;
  letter-spacing: -0.02em;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  font-family: var(--display);
}

.neon-bottom-cta-btn {
  min-width: 320px;
  padding: 18px 56px;
  border-radius: 4px;
  font-size: 17px;
}

/* ============================================================
   Footer
   ============================================================ */
.neon-footer {
  padding: 36px 24px;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  background: #05020e;
  color: var(--ink-dim);
}

.neon-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  gap: 20px;
}

.neon-footer-logo {
  height: 44px;
  opacity: 0.9;
}

.neon-footer-copy {
  letter-spacing: 0.05em;
  font-size: 14px;
  opacity: 0.7;
}

/* ============================================================
   Modal
   ============================================================ */
.neon-modal {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
  inset: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

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

.neon-modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: linear-gradient(180deg, #0b0622 0%, #05020e 100%);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.3);
}

.neon-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  color: var(--ink-dim);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.neon-modal-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 800;
  font-size: 10px;
  font-family: var(--display);
}

.neon-modal-title {
  margin: 0 0 20px;
  font-weight: 900;
  font-size: 24px;
  font-family: var(--display);
}

.neon-modal-label {
  display: block;
  margin-top: 0;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
}

.neon-modal-input {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 18px;
  padding: 12px 14px;
  outline: none;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.5);
  color: var(--ink);
  font-size: 14px;
  font-family: var(--body);
}

.neon-modal-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.neon-modal-radios {
  display: flex;
  margin-top: 6px;
  margin-bottom: 22px;
  gap: 8px;
}

.neon-modal-radio {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  gap: 6px;
}

.neon-modal-radio input {
  margin: 0;
}

.neon-modal-submit {
  width: 100%;
  padding: 14px;
  border-radius: 0;
  font-size: 13px;
}

.neon-modal-done {
  padding: 12px 0;
  text-align: center;
}

.neon-modal-done-check {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 40px;
  -webkit-filter: drop-shadow(0 0 16px var(--accent));
          filter: drop-shadow(0 0 16px var(--accent));
}

.neon-modal-done-title {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 22px;
  font-family: var(--display);
}

.neon-modal-done-sub {
  margin: 0;
  color: var(--ink-dim);
  font-size: 13px;
}

/* ============================================================
   Tablet (~720px)
   ============================================================ */
/* ============================================================
   Small phones (~480px)
   ============================================================ */
/* ============================================================
   Smallest (<= 360px)
   ============================================================ */
@media (max-width: 720px) {
  .neon-nav {
    padding: 12px 14px;
  }
  .neon-nav-cta {
    padding: 10px 18px;
    font-size: 13px;
  }
  .neon-nav-logo {
    height: 32px;
  }
  .neon-hero {
    padding: 24px 16px;
  }
  .neon-hero-eyebrow {
    top: 16px;
    right: 12px;
    padding: 8px 14px;
    font-size: 11px;
  }
  .neon-hero-content {
    padding: 40px 16px 80px;
  }
  .neon-hero-cta {
    min-width: 240px;
    padding: 16px 32px;
    font-size: 15px;
  }
  .neon-meta-row {
    font-size: 12px;
    gap: 10px;
  }
  .neon-catch {
    padding: 72px 16px;
  }
  .neon-catch-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .neon-catch-en {
    font-size: 24px;
  }
  .neon-campaign {
    padding: 56px 16px 72px;
  }
  .neon-campaign-cta {
    min-width: 240px;
    padding: 16px 32px;
    font-size: 15px;
  }
  .neon-trailer {
    padding: 72px 16px;
  }
  .neon-features {
    padding: 72px 16px;
  }
  .neon-features-list {
    gap: 16px;
  }
  .neon-feature-row {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .neon-feature-text {
    order: 1;
    padding: 24px 20px;
  }
  .neon-feature-img {
    order: 2;
    min-height: 220px;
  }
  .neon-feature-row--reverse .neon-feature-text {
    order: 1;
  }
  .neon-feature-row--reverse .neon-feature-img {
    order: 2;
  }
  .neon-feature-num {
    font-size: 54px;
  }
  .neon-feature-title {
    font-size: 20px;
  }
  .neon-gallery {
    padding: 72px 16px;
  }
  .neon-gallery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .neon-gallery-num {
    top: -28px;
    font-size: 56px;
  }
  .neon-bottom-cta {
    padding: 80px 16px 96px;
  }
  .neon-bottom-cta-h {
    font-size: 20px;
  }
  .neon-bottom-cta-btn {
    min-width: 240px;
    padding: 16px 32px;
    font-size: 15px;
  }
  .neon-section-head-en,
  .neon-features-title,
  .neon-gallery-title {
    font-size: 44px;
    line-height: 0.9;
  }
  .neon-trailer-title {
    font-size: 48px;
  }
  .neon-bottom-cta-title {
    font-size: 44px;
  }
  .neon-footer {
    padding: 28px 16px;
  }
  .neon-pc {
    padding: 56px 16px;
  }
  .neon-specs {
    padding: 56px 16px;
  }
  .neon-specs-title {
    font-size: 38px;
  }
  .neon-specs-card {
    padding: 24px 20px;
  }
  .neon-specs-platforms {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .neon-pc-title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .neon-section-head-en,
  .neon-features-title,
  .neon-gallery-title,
  .neon-pc-title {
    font-size: 36px;
  }
  .neon-catch-title {
    font-size: 24px;
  }
  .neon-feature-title {
    font-size: 18px;
  }
  .neon-trailer-title {
    font-size: 40px;
  }
  .neon-bottom-cta-title {
    font-size: 38px;
  }
  .neon-modal-card {
    padding: 24px;
  }
  .neon-pc-tag {
    padding: 5px 14px;
    letter-spacing: 0.2em;
    font-size: 12px;
  }
  .neon-specs-title {
    font-size: 32px;
  }
  .neon-specs-tag {
    padding: 5px 14px;
    letter-spacing: 0.2em;
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .neon-hero-cta,
  .neon-campaign-cta,
  .neon-bottom-cta-btn {
    min-width: 200px;
    padding: 14px 20px;
    letter-spacing: 0.08em;
    font-size: 14px;
  }
  .neon-hero-eyebrow {
    padding: 6px 10px;
    font-size: 10px;
    gap: 8px;
  }
  .neon-modal-radios {
    gap: 6px;
  }
  .neon-modal-radio {
    padding: 8px 4px;
    font-size: 12px;
  }
}