body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, #1a3d0f, #0d1a07);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Banner Wrapper - ensures it's centered and on top */
.banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}

.banner {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.banner:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px #39ff14);
}

/* Container */
.container {
  text-align: center;
  padding: 20px;
  z-index: 5;
  position: relative;
}

/* Countdown Label (text above the countdown) */
/* Countdown Title */
.countdown-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ff4444;
  text-shadow: 2px 2px 0 #ffff00;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
}

/* Countdown Grid */
.countdown {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0 40px;
  flex-wrap: wrap;
}

.countdown-segment {
  background: #112f11;
  border: 2px solid #39ff14;
  color: #aaffaa;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px #000;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: default;
}

.countdown-segment:hover {
  box-shadow: 0 0 25px #39ff14, 0 0 10px #39ff14 inset;
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.countdown-segment span {
  font-size: 2rem;
  display: block;
  font-weight: bold;
}

.countdown-segment div {
  font-size: 1rem;
}


/* Tray area */
.menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
  background-image: url("rolltray.png");
  background-size: 124%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 3;
}

.joint-button {
  width: 252px;
  height: auto;
  transition: transform 0.2s ease, filter 0.3s ease;
  z-index: 4;
  position: relative;
}

.joint-button:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px #39ff14);
}

/* Floating leaf style */
.floating-leaves .leaf {
  position: absolute;
  top: -100px;
  left: var(--left);
  width: var(--size);
  opacity: 0.4;
  animation: floatAndRotateLeaf 20s linear infinite;
  animation-delay: var(--delay);
  filter: drop-shadow(0 0 10px #64ff64);
  pointer-events: auto;
  z-index: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.floating-leaves .leaf:hover {
  transform: rotate(20deg) scale(1.1);
  filter: drop-shadow(0 0 20px #64ff64) brightness(1.2);
}

@keyframes floatAndRotateLeaf {
  0% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(50vh) translateX(-40px) scale(1.2) rotate(180deg);
  }
  100% {
    transform: translateY(110vh) translateX(40px) scale(1.5) rotate(360deg);
    opacity: 0;
  }
}

/* Footer */
.footer-box {
  background: #0b1a0b;
  border: 2px solid #39ff14;
  box-shadow: 0 0 20px #39ff14, 0 0 40px #2affaa inset;
  padding: 20px 30px;
  margin: 40px auto 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 90%;
  max-width: 600px;
  flex-wrap: wrap;
  transition: box-shadow 0.3s ease;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.footer-box:hover {
  box-shadow: 0 0 30px #39ff14, 0 0 60px #2affaa inset;
}

.footer-icon {
  width: 48px;
  height: auto;
  transition: transform 0.2s ease, filter 0.3s ease;
}

.footer-icon:hover {
  filter: drop-shadow(0 0 12px #39ff14);
  transform: scale(1.1);
}

.footer-clock {
  font-size: 2rem;
  color: #aaffaa;
  text-shadow: 1px 1px 3px #000;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .menu {
    grid-template-columns: 1fr;
    background-size: 130%;
  }

  .joint-button {
    width: 200px;
  }

  .banner {
    max-width: 90vw;
  }

  .footer-box {
    padding: 15px 20px;
    gap: 20px;
  }

  .footer-icon {
    width: 40px;
  }

  .footer-clock {
    font-size: 1.6rem;
  }
}