/** Shopify CDN: Minification failed

Line 158:0 Expected "}" to go with "{"

**/
/* ============================================
   HoneyBall Stadium Experience
   assets/honeyball-stadium.css
   All styles scoped to avoid global conflicts
   ============================================ */

/* --- Outer wrapper & scroll container --- */
.honeyball-stadium-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hbs-intro {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: #0a1a0a;
  color: #fff;
}

.hbs-main-heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #d4af37;
  letter-spacing: 0.05em;
}

.hbs-main-subheading {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin: 0 0 1rem;
  opacity: 0.85;
}

.hbs-scroll-hint {
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hbs-bounce 2s infinite;
}

@keyframes hbs-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Scroll height outer --- */
.hbs-outer {
  position: relative;
  width: 100%;
}

/* --- Progress bar --- */
.hbs-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 20;
}

.hbs-progress-bar {
  height: 100%;
  width: 0%;
  background: #d4af37;
  transition: width 0.1s linear;
}

/* --- Sticky viewport --- */
.hbs-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* --- Scenes --- */
.hbs-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hbs-scene.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hbs-scene-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hbs-scene-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transform: scale(var(--zoom-scale, 1));
  will-change: transform;
}

/* --- Overlay --- */
.hbs-scene-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--overlay-opacity, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* --- Text content --- */
.hbs-scene-content {
  position: absolute;
  z-index: 2;
  padding: 2rem;
  color: #fff;
  max-width: 700px;
  top: 50%;
  transform: translateY(-50%);
}

.hbs-text-left .hbs-scene-content,
.hbs-scene-content.hbs-text-left {
  left: 5%;
  text-align: left;
}

.hbs-text-center .hbs-scene-content,
.hbs-scene-content.hbs-text-center {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hbs-text-right .hbs-scene-content,
.hbs-scene-content.hbs-text-right {
  right: 5%;
  left:
