body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(to bottom, #2e7d32, #000);
  color: #fff;
}
header {
  background: rgba(34, 49, 34, 0.95);
  padding: 1rem;
  text-align: center;
}
nav a {
  color: #b2ff59;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}
main {
  padding: 2rem;
}
#visuals {
  position: relative;
  height: 400px;
  margin-bottom: 2rem;
}

#ads {
  background: rgba(0,0,0,0.7);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-align: center;
  margin: 1.5rem auto 0 auto;
  max-width: 500px;
}
.ads-placeholder {
  color: #b2ff59;
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  main {
    padding: 0.5rem;
  }
  #visuals {
    height: 220px;
    min-height: 180px;
    max-height: 60vw;
  }
  #plantCanvas, #hopsCanvas, #bubblesCanvas {
    width: 100vw !important;
    height: 60vw !important;
    max-width: 100vw;
    max-height: 60vw;
  }
  h1 {
    font-size: 1.5rem;
  }
  #ads {
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
    margin: 0.5rem auto 0 auto;
    max-width: 95vw;
  }
  .ads-placeholder {
    font-size: 0.95rem;
  }
}
#plantCanvas, #hopsCanvas, #bubblesCanvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#ads {
  background: rgba(0,0,0,0.7);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}
.ads-placeholder {
  color: #b2ff59;
  font-size: 1.2rem;
  margin-top: 1rem;
}
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(34, 49, 34, 0.95);
  position: relative;
}

#hop-disclaimer-trigger {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}
#hop-disclaimer-trigger:hover svg {
  transform: scale(1.15) rotate(-8deg);
  filter: drop-shadow(0 0 6px #b2ff59cc);
}

#hop-disclaimer-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
#hop-disclaimer-modal.hidden {
  display: none;
}
#hop-disclaimer-modal .modal-content {
  background: #222;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 4px 32px #000a;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
}
#hop-disclaimer-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  color: #b2ff59;
  cursor: pointer;
  font-weight: bold;
}
