/* style.css */

/* ---------- Theme ---------- */
:root {
  --bg: #0b0c10;
  --bg2: #0f1118;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --faint: rgba(255, 255, 255, 0.55);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1100px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Helvetica, Arial, sans-serif;
  background: radial-gradient(1400px 900px at 25% 0%, #1a2140 0%, transparent 55%),
              radial-gradient(1000px 700px at 90% 10%, #2b1d3a 0%, transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; }
p { margin: 0; color: var(--muted); line-height: 1.65; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(10, 11, 16, 0.60);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.95;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-block;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.pill:hover { transform: translateY(-1px); }

.pill-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.pill-solid {
  background: rgba(255, 255, 255, 0.90);
  color: #0b0c10;
  border-color: transparent;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 4px 0;
  border-radius: 999px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -80px -120px -140px -120px;
  background:
    radial-gradient(800px 500px at 20% 20%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(700px 500px at 80% 15%, rgba(255,255,255,0.08), transparent 62%),
    radial-gradient(700px 700px at 50% 90%, rgba(255,255,255,0.05), transparent 60%);
  filter: blur(10px);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 600;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.10);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 900;
  color: var(--text);
}

.hero-sub {
  max-width: 720px;
  margin: 14px auto 26px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.98rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0px) scale(0.99); }

.btn-primary {
  background: rgba(255, 255, 255, 0.92);
  color: #0b0c10;
  border-color: transparent;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.link-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.link-chip:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

/* ---------- Sections ---------- */
.section {
  padding: 76px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.section-head p {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Game Card ---------- */
.game-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.game-info .kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.game-info h3 {
  font-size: 2.15rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.tagline {
  color: var(--muted);
  margin-bottom: 14px;
}

.feature-list {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-list li {
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px;
  border-radius: 14px;
}

.game-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.game-art {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
}

.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* ---------- Cards / Grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text);
}

/* ---------- Social ---------- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-card {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.14);
}

.social-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-weight: 900;
}

.social-title {
  font-weight: 950;
  color: var(--text);
}

.social-desc {
  color: var(--muted);
  margin-bottom: 14px;
}

.social-cta {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

/* ---------- Contact ---------- */
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
  text-align: center;
}

.email-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 950;
  color: rgba(255,255,255,0.95);
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.contact-row {
  margin-top: 12px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.mini-link {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.sep { opacity: 0.5; }

/* ---------- Footer ---------- */
.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10, 11, 16, 0.55);
  backdrop-filter: blur(18px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-right {
  display: flex;
  gap: 14px;
}

.footer-right a {
  color: var(--muted);
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.footer-right a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  transform: translateY(-1px);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  color: #0b0c10;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  font-weight: 900;
  border: 1px solid rgba(0,0,0,0.08);
}
.toast[hidden] { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .game-card { grid-template-columns: 1fr; }
  .game-art { min-height: 240px; }
  .social-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }

  .nav-right {
    position: absolute;
    top: 62px;
    right: 12px;
    left: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 11, 16, 0.88);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-right.open { display: flex; }

  .nav-links {
    flex-direction: column;
    gap: 8px;
  }

  .nav-cta { justify-content: stretch; }
  .nav-cta .pill { text-align: center; }
}
