@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --bg: #070a1a;
  --bg-soft: #0c1130;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-border: rgba(255, 255, 255, 0.09);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #eef1fb;
  --text-dim: #9aa3c9;
  --green: #3fe08c;
  --pink: #ff62c9;
  --blue: #55c6ff;
  --amber: #ffd166;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --maxw: 1080px;
  --font-pixel: 'Press Start 2P', 'Noto Sans JP', monospace;
  --font-body: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 900px 500px at 12% -10%, rgba(63, 224, 140, 0.16), transparent 60%),
    radial-gradient(ellipse 800px 500px at 100% 10%, rgba(255, 98, 201, 0.13), transparent 60%),
    radial-gradient(ellipse 900px 600px at 50% 100%, rgba(85, 198, 255, 0.12), transparent 60%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 65% 15%, #fff 100%, transparent),
    radial-gradient(1px 1px at 40% 70%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 85% 55%, #fff 100%, transparent),
    radial-gradient(1px 1px at 92% 85%, #fff 100%, transparent),
    radial-gradient(1px 1px at 10% 90%, #fff 100%, transparent),
    radial-gradient(1.5px 1.5px at 50% 45%, #fff 100%, transparent);
  background-repeat: repeat;
  background-size: 600px 600px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .pixel { font-family: var(--font-pixel); line-height: 1.6; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 26, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--green);
  letter-spacing: 1px;
  white-space: nowrap;
}
.logo span { color: var(--text); }

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--green); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 1px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 6px 6px;
}
.lang-switch a, .lang-switch .current {
  padding: 6px 12px;
  border-radius: 999px;
}
.lang-switch .current { background: var(--green); color: #07130c; }
.lang-switch a { color: var(--text-dim); transition: color 0.2s ease; }
.lang-switch a:hover { color: var(--text); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 14px;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--green); }

/* ---------- hero ---------- */
.hero { padding: 48px 0 24px; }
.hero-frame {
  padding: 3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--green), var(--blue) 45%, var(--pink));
  box-shadow: 0 0 60px rgba(63, 224, 140, 0.15), 0 0 100px rgba(255, 98, 201, 0.1);
}
.hero-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 3px);
}
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ---------- sections ---------- */
section { padding: 72px 0; border-top: 1px solid var(--panel-border); }
section:first-of-type { border-top: none; }

.eyebrow {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 32px;
  color: var(--text);
}

@media (max-width: 640px) {
  .section-title { font-size: 20px; }
}

/* ---------- panel / card ---------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(6px);
}
@media (max-width: 640px) {
  .panel { padding: 24px; }
}

.prose p { margin: 0 0 18px; color: var(--text); }
.prose p:last-child { margin-bottom: 0; }

.callout {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(63, 224, 140, 0.4);
  background: rgba(63, 224, 140, 0.06);
  color: var(--text);
}
.callout .label {
  display: block;
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: var(--panel-strong);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(63, 224, 140, 0.18);
}
.btn img { width: 20px; height: 20px; }
.btn.primary {
  background: linear-gradient(120deg, var(--green), var(--blue));
  color: #07130c;
  border: none;
  font-weight: 700;
}
.btn.primary:hover { box-shadow: 0 10px 28px rgba(63, 224, 140, 0.35); }

/* ---------- press list ---------- */
.press-list { display: flex; flex-direction: column; gap: 14px; }
.press-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.press-item:hover { transform: translateX(4px); border-color: var(--pink); }
.press-date {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--amber);
  white-space: nowrap;
}
.press-title { color: var(--text); font-size: 16px; flex: 1; }
.press-arrow { color: var(--pink); font-size: 20px; }

/* ---------- game card ---------- */
.game-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .game-card { grid-template-columns: 1fr; }
}
.game-shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--panel-border);
}
.game-title { font-size: 22px; margin: 0 0 18px; color: var(--text); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.badge {
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--panel-strong);
  border: 1px solid var(--panel-border);
  color: var(--text-dim);
}
.badge b { color: var(--text); font-weight: 600; }

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}
.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--green);
}

.widget-frame {
  margin-top: 22px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  max-width: 100%;
}
.widget-frame iframe { width: 100%; display: block; }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.gallery a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  aspect-ratio: 16 / 9;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery a:hover img { transform: scale(1.08); }

/* ---------- video ---------- */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--panel-border);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- info list ---------- */
.info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--panel-border);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row dt {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--green);
  padding-top: 3px;
}
.info-row dd { margin: 0; color: var(--text); }
@media (max-width: 560px) {
  .info-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- press hero ---------- */
.press-hero { padding-top: 32px; }
.press-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.press-hero h1 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.5;
  margin: 0 0 28px;
  color: var(--text);
}
@media (max-width: 640px) {
  .press-hero h1 { font-size: 22px; }
}

.tag {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 1px;
  color: #07130c;
  background: var(--pink);
  padding: 7px 12px;
  border-radius: 999px;
}

/* ---------- footer ---------- */
footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}
footer .foot-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
footer .foot-links a { color: var(--text-dim); transition: color 0.2s ease; }
footer .foot-links a:hover { color: var(--green); }
