.eod-hero-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.eod-hero-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.eod-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.eod-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.eod-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.eod-slide.eod-active {
  opacity: 1;
  z-index: 2;
}

.eod-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Nav Arrows */
.eod-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
}

.eod-carousel:hover .eod-arrow {
  opacity: 1;
}

.eod-arrow:hover {
  background: rgba(180, 155, 80, 0.45);
  border-color: rgba(180, 155, 80, 0.6);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 24px rgba(180, 155, 80, 0.25);
}

.eod-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.eod-arrow--prev { left: 16px; }
.eod-arrow--next { right: 16px; }

.eod-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bottom Bar */
.eod-bottom {
  position: relative;
  width: 100%;
  background: #000;
  z-index: 10;
}

/* Dots */
.eod-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 16px 10px;
}

.eod-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
}

.eod-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.eod-dot.eod-active {
  background: #c9a84c;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
  transform: scale(1.15);
}

/* Progress Bar */
.eod-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.eod-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c9a84c, #e8d48b);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* Counter */
.eod-counter {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  font-family: 'Georgia', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eod-carousel:hover .eod-counter { opacity: 1; }

/* Play/Pause */
.eod-playpause {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.eod-carousel:hover .eod-playpause { opacity: 1; }

.eod-playpause:hover {
  background: rgba(180, 155, 80, 0.45);
  border-color: rgba(180, 155, 80, 0.6);
  color: #fff;
}

.eod-playpause svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Focus */
.eod-arrow:focus-visible,
.eod-dot:focus-visible,
.eod-playpause:focus-visible {
  outline: 2px solid #c9a84c;
  outline-offset: 2px;
}

/* Mobile */
@media (max-width: 768px) {
  .eod-arrow {
    width: 40px;
    height: 40px;
    opacity: 1;
  }
  .eod-arrow--prev { left: 8px; }
  .eod-arrow--next { right: 8px; }
  .eod-arrow svg { width: 18px; height: 18px; }
  .eod-dots { gap: 7px; padding: 10px 12px 8px; }
  .eod-dot { width: 8px; height: 8px; }
  .eod-counter, .eod-playpause { opacity: 1; }
}

@media (max-width: 480px) {
  .eod-dots { gap: 5px; padding: 8px 10px 6px; }
  .eod-dot { width: 7px; height: 7px; }
}

/* Loading */
.eod-carousel.eod-loading .eod-viewport::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #c9a84c;
  border-radius: 50%;
  animation: eod-spin 0.8s linear infinite;
  z-index: 20;
}

@keyframes eod-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
