@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Inter:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #38006b, #05000b 70%);
  color: #f4f0ff;
}

.bg-glow {
  position: fixed;
  inset: -200px;
  background: radial-gradient(circle at top, rgba(255, 0, 200, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(5, 0, 18, 0.95), rgba(5, 0, 18, 0.8));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  color: #f8f3ff;
  text-shadow: 0 0 14px #ff6bff;
}

.main-nav a {
  margin-left: 22px;
  font-size: 14px;
  text-decoration: none;
  color: #d9a9ff;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.main-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px #ff6bff;
}

.page {
  padding: 40px 6vw 60px;
}

.section {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 32px 26px 38px;
  background: linear-gradient(145deg, rgba(10, 0, 25, 0.96), rgba(35, 0, 70, 0.9));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
}

.hero {
  text-align: center;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  margin: 10px 0 8px;
  color: #7bf0ff;
  text-shadow: 0 0 18px #40e0ff;
}

.tagline {
  margin: 0;
  font-size: 15px;
  color: #e3c5ff;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ff3bff, #7b2cff);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(255, 0, 200, 0.6);
}

.btn.secondary {
  background: transparent;
  color: #ffb7ff;
  border-color: #ff6bff;
}

.btn.small {
  padding: 9px 20px;
  font-size: 12px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.hero-date {
  margin-top: 22px;
  font-size: 13px;
  color: #d7c2ff;
}

.hero-date span {
  color: #7bf0ff;
}

.disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: #b89cd6;
}

h2 {
  font-family: 'Orbitron', sans-serif;
}

.section-grid h2,
.section-grid .feature-card h3 {
  margin-top: 0;
}

.section-grid h2 {
  font-size: 24px;
  color: #f0d4ff;
  margin-bottom: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 18px 18px 22px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 0, 180, 0.16), rgba(10, 0, 30, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff5ff;
}

.feature-card p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #e3d7ff;
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 30px;
  margin: 0 0 8px;
  color: #f7ddff;
  text-shadow: 0 0 14px #ff6bff;
}

.intro {
  margin: 4px 0 20px;
  font-size: 14px;
  color: #d6c2ff;
}

.highlight {
  color: #7bf0ff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  padding: 18px 18px 22px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(140, 0, 255, 0.18), rgba(12, 0, 28, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h2 {
  font-size: 20px;
  margin: 4px 0 8px;
  color: #fff7ff;
}

.card p {
  font-size: 13px;
  line-height: 1.7;
  color: #e3d7ff;
}

.card .meta {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.timer-wrap {
  text-align: center;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.time-block {
  min-width: 82px;
  padding: 14px 16px;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(123, 44, 255, 0.28), rgba(5, 0, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.time-block span {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #7bf0ff;
  text-shadow: 0 0 10px #42ffff;
}

.time-block label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #e4d0ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.note {
  margin-top: 20px;
  font-size: 12px;
  color: #c5b0f5;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.article-link {
  text-decoration: none;
}

.article-card {
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 0, 160, 0.18), rgba(12, 0, 32, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f7ebff;
}

.article-card h2 {
  font-size: 18px;
  margin: 6px 0 10px;
}

.article-card p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: #e9dcff;
}

.article-page .intro {
  margin-bottom: 18px;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pill-trailer {
  background: rgba(123, 44, 255, 0.25);
  color: #f8e8ff;
}

.pill-info {
  background: rgba(200, 200, 255, 0.2);
  color: #f1f1ff;
}

.pill-delay {
  background: rgba(255, 160, 80, 0.28);
  color: #ffe4c0;
}

.pill-gameplay {
  background: rgba(0, 200, 255, 0.28);
  color: #c9f5ff;
}

.pill-world {
  background: rgba(120, 255, 160, 0.26);
  color: #e5ffe9;
}

.site-footer {
  padding: 22px 6vw 28px;
  text-align: center;
  font-size: 11px;
  color: #aa93d8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at bottom, rgba(255, 0, 200, 0.12), rgba(5, 0, 12, 0.98));
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .main-nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .page {
    padding: 28px 4vw 40px;
  }

  .section {
    padding: 24px 18px 30px;
  }
}
