@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@500;700&display=swap');

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0d0d0d;
  min-height: 100vh;
  color: #fff;
  padding: 2rem;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 180, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 100, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  color: #ffb800;
  text-shadow: 0 0 40px rgba(255, 184, 0, 0.3);
  white-space: nowrap;
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  body { padding: 1rem; padding-top: 2rem; }
}

/* =================================================================
   Tab navigation
   ================================================================= */

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.6rem;
  padding: 0.3rem;
}

.tab {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-radius: 0.4rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.tab:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.tab.active {
  color: #0d0d0d;
  background: #ffb800;
  font-weight: 700;
}

/* =================================================================
   Honeycomb start page
   ================================================================= */

.honeycomb {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8rem;
}

.hex-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.hex-row-offset {
  margin-top: -1.8rem;
}

.hex {
  width: clamp(150px, 38vw, 200px);
  aspect-ratio: 1 / 1.12;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: transform 0.2s ease, filter 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hex:hover {
  transform: scale(1.08);
  filter: brightness(1.12);
}

.hex:active {
  transform: scale(0.96);
}

.hex-beer {
  background: linear-gradient(180deg, #ffb800 0%, #e69500 100%);
}

.hex-crawl {
  background: linear-gradient(180deg, #ff8c00 0%, #cc6600 100%);
}

.hex-lunch {
  background: linear-gradient(180deg, #8BC34A 0%, #689F38 100%);
}

.hex-icon {
  font-size: clamp(2.4rem, 7vw, 3.2rem);
  line-height: 1;
}

.hex-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.9rem, 3vw, 1.15rem);
  font-weight: 700;
  color: #0d0d0d;
  text-align: center;
  line-height: 1.2;
  padding: 0 0.3rem;
}

/* =================================================================
   Back to home button
   ================================================================= */

.back-home {
  display: inline-block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.back-home:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* =================================================================
   Views (show/hide)
   ================================================================= */

.view {
  display: none;
}

.view.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================================================================
   Result box (picker)
   ================================================================= */

.result {
  background: linear-gradient(180deg, rgba(255,184,0,0.08) 0%, rgba(255,184,0,0.02) 100%);
  border: 2px solid rgba(255, 184, 0, 0.3);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  margin: 1.5rem 0;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.result::after {
  content: '\01F37A';
  position: absolute;
  font-size: 4rem;
  opacity: 0.06;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.result-lunch::after {
  content: '\01F35D';
}

.result-line {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

.result-line.reveal {
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.result-extra {
  font-size: 1rem;
  opacity: 0.85;
  margin-top: 0.75rem;
  font-style: italic;
}

.result-timer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 184, 0, 0.9);
  margin-top: 0.75rem;
}

.result-line .highlight {
  color: #ffb800;
  font-weight: 700;
  font-size: 1.6rem;
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
  text-decoration: none;
}

.result-line a.highlight:hover {
  text-decoration: underline;
}

.result.spin .result-line {
  animation: shake 0.1s linear 6;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* =================================================================
   Buttons
   ================================================================= */

.btn {
  display: inline-block;
  background: linear-gradient(180deg, #ffb800 0%, #e69500 100%);
  color: #0d0d0d !important;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.15s ease;
  box-shadow: 0 4px 0 #b37300, 0 6px 20px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 0 #b37300, 0 12px 30px rgba(255, 184, 0, 0.4);
  background: linear-gradient(180deg, #ffc233 0%, #e69500 100%);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 0 #b37300, 0 4px 15px rgba(0,0,0,0.3);
  transition-duration: 0.05s;
}

.btn .ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn.loading {
  pointer-events: none;
  animation: btnPulse 0.4s ease-in-out 6;
}

@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.97); }
}

.btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.5);
}

.actions {
  text-align: center;
}

.map-link {
  margin-top: 5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.map-link a {
  color: #ffb800;
  text-decoration: none;
}

.map-link a:hover {
  text-decoration: underline;
}

/* =================================================================
   Confirm button
   ================================================================= */

.confirm-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-confirm {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 0 #15803d, 0 6px 20px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-confirm:hover {
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  box-shadow: 0 8px 0 #15803d, 0 12px 30px rgba(34, 197, 94, 0.4);
}

.btn-confirm:active {
  box-shadow: 0 2px 0 #15803d, 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* =================================================================
   Lock banner
   ================================================================= */

.lock-banner {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.04) 100%);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 0.75rem;
  text-align: center;
}

.lock-banner p {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.lock-timer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #ef4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

/* =================================================================
   Confetti
   ================================================================= */

.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

.confetti span {
  position: absolute;
  background: #ffb800;
  animation: confettiFall 1.5s ease-out forwards;
}

.confetti span:nth-child(odd) { background: #ff6b00; }
.confetti span:nth-child(3n) { background: #fff; }

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* =================================================================
   Barcrawl – hero & controls
   ================================================================= */

.crawl-hero {
  margin-bottom: 1.5rem;
}

.crawl-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.5;
}

.crawl-count-picker,
.crawl-mode-picker,
.crawl-drink-picker,
.crawl-start-picker,
.crawl-challenges-picker,
.crawl-timer-picker,
.crawl-participants-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crawl-count-picker {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.crawl-count-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.pill-group {
  display: inline-flex;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.5rem;
  padding: 0.3rem;
}

.pill-group-wrap {
  flex-wrap: wrap;
}

.pill {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 0.35rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.pill:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.pill.active {
  background: #ffb800;
  color: #0d0d0d;
}

.crawl-view-toggle {
  margin-bottom: 1.5rem;
}

/* Avancerad: wrapper och sektioner */
.crawl-advanced-options {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.crawl-options-section {
  margin-bottom: 1.75rem;
}

.crawl-options-section:last-child {
  margin-bottom: 0;
}

.crawl-options-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0.75rem 0;
  display: block;
}

.crawl-advanced-options .crawl-mode-picker,
.crawl-advanced-options .crawl-drink-picker,
.crawl-advanced-options .crawl-start-picker,
.crawl-advanced-options .crawl-challenges-picker,
.crawl-advanced-options .crawl-timer-picker,
.crawl-advanced-options .crawl-participants-picker {
  margin-bottom: 1rem;
}

.crawl-advanced-options .crawl-options-section > *:last-child {
  margin-bottom: 0;
}

.crawl-mode-picker,
.crawl-drink-picker,
.crawl-start-picker,
.crawl-challenges-picker,
.crawl-timer-picker,
.crawl-participants-picker {
  margin-bottom: 1.5rem;
}

.crawl-participants-input {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 0.35rem;
  color: #fff;
  width: 100%;
  max-width: 20rem;
  box-sizing: border-box;
}

.crawl-participants-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.crawl-drink-picker {
  margin-bottom: 1.5rem;
}

.crawl-start-picker {
  margin-bottom: 1.5rem;
}

.start-picker-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: visible;
}

.start-picker-row .crawl-start-select {
  border: 1px solid rgba(255, 184, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  min-width: 9rem;
}

.crawl-start-select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 0.35rem;
  color: #fff;
  cursor: pointer;
  min-width: 10rem;
}

.crawl-start-select option {
  background: #0d0d0d;
  color: #fff;
}

.btn-crawl-start {
  font-size: 1rem;
  padding: 0.85rem 2rem;
  margin-bottom: 0.5rem;
}

/* =================================================================
   Barcrawl – timeline route
   ================================================================= */

.crawl-route {
  margin-top: 2rem;
  text-align: left;
}

/* ---- Simple list ---- */

.crawl-list {
  list-style: none;
  counter-reset: crawl;
  padding: 0;
}

.crawl-row {
  counter-increment: crawl;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 184, 0, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: 0.5rem;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s ease;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  -webkit-tap-highlight-color: transparent;
}

.crawl-row:last-child {
  margin-bottom: 0;
}

.crawl-row::before {
  content: counter(crawl);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  background: #ffb800;
  color: #0d0d0d;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.crawl-bar-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.crawl-bar {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.crawl-drink {
  font-size: 0.9rem;
  color: rgba(255, 184, 0, 0.7);
  font-weight: 500;
}

.crawl-challenge {
  font-size: 0.85rem;
  color: rgba(255, 184, 0, 0.6);
  font-style: italic;
}

.crawl-timer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.crawl-row-extra {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  align-items: baseline;
}

.crawl-extra-name {
  color: rgba(255, 255, 255, 0.6);
}

.crawl-extra-drink {
  color: rgba(255, 184, 0, 0.85);
}

.crawl-map {
  color: rgba(255, 184, 0, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.3rem 0.6rem;
  border-radius: 0.3rem;
  transition: all 0.15s ease;
}

.crawl-map:hover {
  color: #ffb800;
  background: rgba(255, 184, 0, 0.1);
}

/* ---- Done state (tap row to toggle) ---- */

.crawl-row.done {
  opacity: 0.45;
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.04);
}

.crawl-row.done::before {
  background: #22c55e;
  color: #fff;
  content: '\2713';
  font-size: 0.85rem;
}

.crawl-row.done .crawl-bar,
.crawl-row.done .crawl-drink,
.crawl-row.done .crawl-challenge,
.crawl-row.done .crawl-timer,
.crawl-row.done .crawl-extra-name,
.crawl-row.done .crawl-extra-drink {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* ---- Progress counter ---- */

.crawl-progress {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  min-height: 1.4rem;
}

.crawl-progress.all-done {
  color: #22c55e;
  text-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

/* ---- Reset / footer ---- */

.crawl-footer {
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.crawl-footer-link,
.crawl-reset {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.15s;
}

.crawl-reset:hover,
.crawl-footer-link:hover {
  color: rgba(255, 184, 0, 0.7);
  text-decoration: underline;
}

.crawl-reset:hover {
  color: rgba(239, 68, 68, 0.7);
}

.crawl-error {
  color: rgba(239, 68, 68, 0.8);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* =================================================================
   Statistics
   ================================================================= */

.stats-hero {
  margin-bottom: 1.5rem;
}

.stats-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}

.stats-board {
  text-align: left;
}

.stats-loading,
.stats-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  padding: 2rem 0;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-rank {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

.stat-rank.medal-gold {
  background: #ffb800;
  color: #0d0d0d;
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.3);
}

.stat-rank.medal-silver {
  background: rgba(192, 192, 192, 0.7);
  color: #0d0d0d;
}

.stat-rank.medal-bronze {
  background: rgba(205, 127, 50, 0.7);
  color: #0d0d0d;
}

.stat-info {
  flex: 1;
  min-width: 0;
}

.stat-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffb800, #ff8c00);
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #ffb800;
  min-width: 2rem;
  text-align: right;
  flex-shrink: 0;
}

/* Stats back link */

.stats-back {
  text-align: center;
  margin-top: 2rem;
}

.stats-back-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}

.stats-back-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* =================================================================
   Footer
   ================================================================= */

.site-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-stats-link {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.footer-stats-link:hover {
  color: rgba(255, 184, 0, 0.6);
}

/* =================================================================
   Lunch theme (grön/sage när Äta lunch är aktiv)
   ================================================================= */

body.lunch-active::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 195, 74, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(104, 159, 56, 0.08) 0%, transparent 40%);
}

body.lunch-active h1 {
  color: #8BC34A;
  text-shadow: 0 0 40px rgba(139, 195, 74, 0.3);
}

body.lunch-active .tab[data-view="lunch"].active {
  background: #8BC34A;
}

#view-lunch .result.result-lunch {
  background: linear-gradient(180deg, rgba(139, 195, 74, 0.08) 0%, rgba(139, 195, 74, 0.02) 100%);
  border-color: rgba(139, 195, 74, 0.3);
}

#view-lunch .btn {
  background: linear-gradient(180deg, #8BC34A 0%, #689F38 100%);
  box-shadow: 0 4px 0 #558B2F, 0 6px 20px rgba(0, 0, 0, 0.3);
}

#view-lunch .btn:hover {
  background: linear-gradient(180deg, #9CCC65 0%, #8BC34A 100%);
  box-shadow: 0 8px 0 #558B2F, 0 12px 30px rgba(139, 195, 74, 0.4);
}

#view-lunch .btn:active {
  box-shadow: 0 2px 0 #558B2F, 0 4px 15px rgba(0, 0, 0, 0.3);
}

#view-lunch .result-line .highlight {
  color: #8BC34A;
  text-shadow: 0 0 20px rgba(139, 195, 74, 0.4);
}

#view-lunch .map-link a {
  color: #8BC34A;
}

body.lunch-active .confetti span {
  background: #8BC34A;
}

body.lunch-active .confetti span:nth-child(odd) {
  background: #689F38;
}

body.lunch-active .confetti span:nth-child(3n) {
  background: #fff;
}
