:root {
  --bg: #0b0b0b;
  --bg-2: #151515;
  --text: #ffffff;
  --muted: #d9d9d9;
  --brand: #f6a000;
  --brand-2: #ffb627;
  --card: #1b1b1b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #1c1c1c 0%, var(--bg) 38%);
  color: var(--text);
}
.hero {
  padding: 28px 18px 22px;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(246,160,0,.24), rgba(246,160,0,.06) 46%, rgba(0,0,0,.2) 46%),
    linear-gradient(180deg, #0b0b0b, #111111);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--brand);
  color: #111;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 8px 30px rgba(246,160,0,.35);
}
.hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: 0.5px;
}
.hero p {
  margin: 10px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #111; }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.14); }
.container {
  width: min(1080px, calc(100% - 24px));
  margin: 22px auto 42px;
}
.notice {
  background: rgba(246,160,0,.10);
  border: 1px solid rgba(246,160,0,.25);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  text-align: center;
  margin-bottom: 18px;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}
.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 4px 4px 14px;
}
.card-title h2 {
  margin: 0;
  font-size: 22px;
}
.tag {
  background: rgba(246,160,0,.18);
  color: #ffd56b;
  border: 1px solid rgba(246,160,0,.28);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}
.menu-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #fff;
}
footer {
  text-align: center;
  color: #cfcfcf;
  padding: 12px 12px 28px;
  font-size: 14px;
}
footer strong { color: var(--brand-2); }
.sticky {
  position: sticky;
  bottom: 0;
  z-index: 20;
  background: rgba(11,11,11,.90);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.sticky-inner {
  width: min(1080px, calc(100% - 24px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.sticky-text {
  font-size: 14px;
  color: #e7e7e7;
}
@media (min-width: 900px) {
  .menu-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
