body {
  background-color: #0f0f1a;
  color: #f0f8ff;
  font-family: 'Cinzel', serif;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to right, #2e3a4e, #1a2e3e);
  color: #00ccff;
  text-shadow: 0 0 10px #00ccff;
  font-size: 2rem;
  letter-spacing: 2px;
}

.merch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.image-container {
  position: relative;
  display: inline-block;
  max-width: 350px;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-text {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #00ccff;
  padding: 8px 12px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  border-radius: 4px;
}

.overlay-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #00ccff;
  color: #fff;
  padding: 8px 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.overlay-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ccff;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a2e3e;
  color: #ccc;
  font-style: italic;
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  color: #00ccff;
  padding: 1.5rem;
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 8px #00ccff;
  animation: fadeIn 2s ease-in-out;
}

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

.grotto-banner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: #1a2e3e;
  border-top: 2px solid #00ccff;
  border-bottom: 2px solid #00ccff;
  padding: 0.5rem 0;
}

.grotto-banner span {
  display: inline-block;
  animation: scrollBanner 20s linear infinite;
  font-size: 1.5rem;
  padding: 0 2rem;
  color: #00ccff;
  text-shadow: 0 0 5px #00ccff;
}

@keyframes scrollBanner {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.countdown-container {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Cinzel', serif;
  color: #00ccff;
  text-shadow: 0 0 8px #00ccff;
  background-color: rgba(0, 0, 0, 0.4);
  border: 2px solid #00ccff;
  border-radius: 8px;
  max-width: 400px;
  animation: fadeIn 2s ease-in-out;
}

#countdown-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

#countdown {
  font-size: 1.2rem;
}
