:root {
  --bg: #0c1117;
  --panel: #151d28;
  --panel2: #19232f;
  --text: #e7edf3;
  --muted: #95a3b7;
  --accent: #3b82f6;
  --radius: 16px;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(12, 17, 23, 0.6);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(34, 197, 94, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

.brand__name {
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.btn:hover {
  background: #2563eb;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn { transition: transform .2s ease, box-shadow .3s ease; }

.btn:hover,
.btn:focus-visible {        /* keyboard-friendly */
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.btn:active {
  transform: translateY(-1px);
}

/* Modifier (make sure it has its own hover) */
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover,
.btn--primary:focus-visible {
  background: color-mix(in srgb, var(--primary) 85%, white);
}

.menuBtn {
  display: none;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.2rem;
}

.mobileNav[hidden] {
  display: none;
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(800px 400px at 60% -100px, rgba(59, 130, 246, 0.2), transparent), radial-gradient(600px 300px at 0 50%, rgba(34, 197, 94, 0.12), transparent), var(--bg);
}

.hero__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.hero__copy .kicker {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.launchCard {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  max-width: 320px;
}

.launchCard__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.pill {
  background: var(--accent);
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dot {
  font-weight: 600;
}

.timeBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.timeBox .num {
  font-size: 1.4rem;
  font-weight: 700;
}

.timeBox .lbl {
  font-size: 0.65rem;
  color: var(--muted);
}

.fine {
  font-size: 0.8rem;
  margin-top: 0.8rem;
}

.placeholder-img {
  width: 100%;
  height: 300px;
  background: var(--panel2);
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* MMO-specific styles */
.mmo-hero {
  /* Dark backdrop with subtle golden highlight */
  padding: 4rem 0 3rem;
  background: radial-gradient(800px 400px at 60% -100px, rgba(209, 181, 106, 0.15), transparent),
              radial-gradient(600px 300px at 0 40%, rgba(209, 181, 106, 0.08), transparent),
              var(--bg);
}
.mmo-hero .kicker {
  color: #d1b56a;
}
.mmo-hero .hero__title {
  color: var(--text);
}
.mmo-hero .hero__subtitle {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.gallery-item {
  /* reuse placeholder styling; height smaller for gallery */
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-size: 0.85rem;
  background: var(--panel2);
  border: 1px dashed var(--line);
  color: var(--muted);
}

/* Active nav link */
nav a.current {
  color: #d1b56a;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 4rem 0 3rem;
}

.section__title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.grid.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card__tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.card ul {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card li {
  margin-bottom: 0.3rem;
}

/* FAQ */
.faq__item {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 0.8rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item[open] summary {
  color: var(--accent);
}

.faq__item p {
  margin-top: 0.5rem;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: var(--panel2);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  max-width: 400px;
}

.cookie__box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menuBtn {
    display: inline-block;
  }
  .mobileNav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    background: rgba(12, 17, 23, 0.85);
  }
  .hero {
    padding-top: 3rem;
  }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .footer__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
