.local-logo {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff8ee;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  font-size: 13px;
  font-weight: 950;
}

.site-nav .lang-pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.6);
}

.site-nav .lang-pill.is-active {
  color: #fff8ee;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
}

.english-name {
  margin: 4px 0 12px;
  color: rgba(45, 29, 23, 0.56);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.loading-title {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 950;
  line-height: 0.98;
}

.new-game-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 16px;
}

.game-notes {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
}

.game-notes h3 {
  margin: 0 0 8px;
}

.site-section h3 {
  margin: 18px 0 8px;
}

.snack-feature {
  min-height: 100%;
}

.snack-cover {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(243, 185, 79, 0.58), transparent 22%),
    linear-gradient(145deg, rgba(255, 238, 220, 0.94), rgba(255, 199, 164, 0.96) 52%, rgba(80, 42, 30, 0.92));
}

.ticket,
.belt,
.snack {
  position: absolute;
  display: block;
}

.ticket {
  top: 28px;
  width: 118px;
  height: 82px;
  border: 4px solid rgba(45, 29, 23, 0.92);
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.92);
  box-shadow: 0 12px 26px rgba(72, 31, 19, 0.13);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 10px;
  border-radius: 999px;
  background: rgba(217, 93, 57, 0.8);
}

.ticket::before {
  top: 20px;
}

.ticket::after {
  top: 44px;
  background: rgba(47, 127, 121, 0.82);
}

.ticket-a {
  left: 40px;
  transform: rotate(-4deg);
}

.ticket-b {
  left: 188px;
  transform: rotate(5deg);
}

.belt {
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: rgba(45, 29, 23, 0.92);
}

.snack {
  bottom: 36px;
  width: 58px;
  height: 58px;
  border: 5px solid rgba(45, 29, 23, 0.95);
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(72, 31, 19, 0.16);
}

.rice {
  left: 72px;
  background: #fff8ee;
}

.roll {
  left: 178px;
  border-radius: 50%;
  background: #2f7f79;
}

.tea {
  left: 288px;
  background: #d95d39;
}

@media (max-width: 840px) {
  .new-game-feature {
    grid-template-columns: 1fr;
  }
}
