/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0f14;
  --surface:   #161a24;
  --surface2:  #1e2433;
  --accent:    #7c3aed;
  --accent2:   #a855f7;
  --text:      #e2e8f0;
  --muted:     #8892a4;
  --border:    #2a3045;
  --radius:    10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.logo span { color: var(--accent2); }

nav a {
  margin-left: 32px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
nav a:hover, nav a.active { color: var(--text); }

#site-header.scrolled { background: rgba(13, 15, 20, 0.97); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 16px;
}
.mobile-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav.open { display: flex; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.18) 0%, transparent 70%),
              var(--bg);
}

.hero-content {
  text-align: center;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent2); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { background: var(--accent2); transform: translateY(-2px); text-decoration: none; }

.hero-dice {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.dice {
  position: absolute;
  font-size: 5rem;
  opacity: 0.04;
  animation: float 8s ease-in-out infinite;
  user-select: none;
}
.d6  { top: 15%; left: 8%;  animation-delay: 0s; }
.d20 {
  top: 60%; right: 10%;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 6rem;
  animation-delay: 3s;
}
.d8  { bottom: 20%; left: 20%; font-size: 4rem; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(8deg); }
}

/* ── Sections ── */
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text);
}

.section-intro {
  color: var(--muted);
  margin-top: -32px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ── About ── */
#about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-text strong { color: var(--text); }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.feature-card.highlight {
  border-color: var(--accent);
  background: rgba(124,58,237,0.08);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Hours ── */
#hours { background: var(--bg); }

.hours-table {
  max-width: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.15s;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: var(--surface2); }
.hours-row.weekend { background: rgba(124,58,237,0.06); }
.hours-row.weekend:hover { background: rgba(124,58,237,0.12); }

.day  { font-weight: 500; color: var(--text); }
.time { color: var(--accent2); font-weight: 600; font-size: 0.95rem; }

/* ── Timeline ── */
#timeline { background: var(--surface); }

.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -28px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-dot.future {
  background: var(--surface2);
  border-color: var(--border);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-date {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent2);
  display: block;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.timeline-content p,
.future-content p {
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.7;
}
.future-content h3 { color: var(--muted); }

/* ── Contact ── */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.6rem;
  line-height: 1;
  min-width: 32px;
  margin-top: 2px;
}

.contact-item h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text);
  line-height: 1.6;
}
.contact-item a { color: var(--accent2); }

.contact-map iframe {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── Footer ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

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

footer p { color: var(--muted); font-size: 0.85rem; }

/* ── Nav Store Button ── */
.nav-store-btn {
  margin-left: 24px;
  background: var(--accent);
  color: #fff !important;
  padding: 7px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav-store-btn:hover { background: var(--accent2) !important; text-decoration: none !important; }

/* ── Shop ── */
#shop { background: var(--surface); }

.shop-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.shop-cat {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { display: none; }
  .nav-toggle { display: block; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-cards { grid-template-columns: 1fr; }

  .contact-map iframe { height: 240px; }

  .footer-inner { flex-direction: column; text-align: center; }

  section { padding: 72px 0; }
}
