:root {
  --bg: #483dff;
  --card: #ffffff;
  --border: #1b1d22;
  --shadow: #1a2a61;
  --muted: #3b3f52;
  --accent: #ffde59;
  --cta: linear-gradient(135deg, #ff9966, #ff5f6d);
  font-family: 'Press Start 2P', monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg) url('Combined bg image.png') center/cover no-repeat fixed;
  color: var(--border);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 28px 16px 42px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.background-glow {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 2px, transparent 2px, transparent 6px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.landing {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
  margin: 0 auto;
  padding: 32px 24px 28px;
  background: var(--card);
  border: 4px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 0 var(--shadow), 0 20px 36px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.hero {
  text-align: center;
  margin-bottom: 28px;
}

.eyebrow {
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--muted);
  margin: 0 0 12px;
}

.logo {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(26px, 6vw, 34px);
  margin: 0;
  display: inline-flex;
  gap: 6px;
}

.logo span {
  display: inline-block;
  padding: 6px 8px;
  background: #f4f6ff;
  border: 2px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 0 var(--shadow);
  animation: letterBounce 0.85s ease-out forwards;
  opacity: 0;
}

.logo span:nth-child(1) { background: #ff6f91; animation-delay: 0s; }
.logo span:nth-child(2) { background: #ffde59; animation-delay: 0.05s; }
.logo span:nth-child(3) { background: #7bed9f; animation-delay: 0.1s; }
.logo span:nth-child(4) { background: #7ac7ff; animation-delay: 0.15s; }
.logo span:nth-child(5) { background: #e49bff; animation-delay: 0.2s; }
.logo span:nth-child(6) { background: #ffd480; animation-delay: 0.25s; }
.logo span:nth-child(7) { background: #ff9f68; animation-delay: 0.3s; }

@keyframes letterBounce {
  0% { transform: translateY(-18px) scale(0.9); opacity: 0; }
  40% { transform: translateY(8px) scale(1.04); opacity: 1; }
  70% { transform: translateY(-6px) scale(0.98); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.subtitle {
  font-size: 14px;
  margin: 14px 0 10px;
  letter-spacing: 0.05em;
  color: #232538;
}

.tagline {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 11px;
}

.menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 14px 14px;
  border-radius: 12px;
  background: #f9fafc;
  border: 3px solid var(--border);
  color: inherit;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
  box-shadow: 0 8px 0 var(--shadow);
  min-height: 132px;
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 var(--shadow);
  filter: brightness(1.04);
}

.card-header {
  font-size: 14px;
  margin: 0;
  color: #000;
  text-align: center;
}

.card-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 11px;
}

.cta {
  align-self: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 3px solid var(--border);
  background: var(--cta);
  color: #1a0f24;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 0 var(--shadow);
}

@media (max-width: 640px) {
  body {
    padding: 16px 12px 28px;
  }

  .landing {
    padding: 24px 18px 20px;
  }

  .logo {
    gap: 4px;
  }

  .menu {
    grid-template-columns: 1fr;
  }

  .menu-card {
    gap: 4px;
  }
}
