html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: auto;
  z-index: 1;
}
.slides {
  flex: 1;
  position: relative;
}
.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.slide video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Hide iOS video controls more aggressively */
  -webkit-media-controls {
    display: none !important;
  }
  -webkit-media-controls-panel {
    display: none !important;
  }
  -webkit-media-controls-play-button {
    display: none !important;
  }
  -webkit-media-controls-start-playback-button {
    display: none !important;
  }
  /* Additional iOS play button hiding */
  &::-webkit-media-controls-panel {
    display: none !important;
  }
  &::-webkit-media-controls-play-button {
    display: none !important;
  }
  &::-webkit-media-controls-start-playback-button {
    display: none !important;
  }
  /* Force hide any overlay controls */
  pointer-events: none;
}
.slide-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 3vw 5vw 15vw 7vw;
  max-width: 666px;
  margin-left: 0;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.slide-title {
  font-size: 2.5rem;
  font-weight: bold;
	line-height: 3rem;
  margin-bottom: 1rem;
}
.slide-body {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.slide-buttons {
  display: flex;
  gap: 1rem;
}
.slide-buttons a {
  background: #fff;
  color: #000;
  padding: 0.6em 1.6em;
  border-radius: 2em;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.slide-buttons a:hover {
  background: #222;
  color: #fff;
}
/* Inverted style for second button */
.slide-buttons a:nth-child(2) {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.slide-buttons a:nth-child(2):hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
@media (max-width: 1024px) {
  .slide-buttons a { font-size: 1rem; padding: 0.7em 1.8em; }
}
@media (max-width: 768px) {
  .slide-buttons a { font-size: 0.9rem; padding: 0.6em 1.5em; }
}
.slider-footer {
  position: absolute;
  bottom: 2vw; left: 0; width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  gap: 1.5vw;
}
.slider-toggle {
  position: absolute;
  left: 3.5vw;
  bottom: 1.5vw;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  z-index: 1000;
}
.slider-toggle svg {
  display: block;
  width: 40px;
  height: 40px;
}
.nav-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 1vw;
  z-index: 20;
}
.circles {
  display: flex;
  gap: 1.3vw;
  align-items: center;
  z-index: 20;
  transform: translateY(-4px);
}
.circle {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  opacity: 1;
}
.circle.active {
  background: #fff;
  opacity: 1;
}
.split-word {
  display: inline-block;
  white-space: pre;
}

/* Override any theme styles that might interfere */
.slider-container * {
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
  .slide-title { font-size: 2.5rem; }
  .slide-body { font-size: 1.3rem; }
 .slide-content { padding: 2vw 3.3vw 22vw 7vw; }
  .circle { width: 23px; height: 23px; border-width: 2px; }
  .slider-toggle svg { width: 40px; height: 40px; }
  .nav-arrow svg { width: 33px; height: 33px; }
  .slider-footer { gap: 1vw; }
}

/* Mobile */
@media (max-width: 768px) {
  .slide-title { font-size: 2.3rem; }
  .slide-body { font-size: 1.1rem; }
  .slide-content { padding: 2vw 3vw 30vw 8vw; }
  .slider-footer { bottom: 3vw; gap: 0.5vw; }
  .circle { width: 20px; height: 20px; border-width: 2px; }
  .slider-toggle svg { width: 36px; height: 36px; }
  .nav-arrow svg { width: 30px; height: 30px; }
.circles {
  gap: 1.6vw; }
.slider-toggle {
  left: 4.5vw;
  bottom: 3.3vw; }
} 