:root {
  --bronze: #b08d57;
  --charcoal: #1a1a1a;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--charcoal);
  color: #e5e5e5;
  scroll-behavior: smooth;
  line-height: 1.75;
}
.stencil {
  font-family: "Stardos Stencil", cursive;
}
.text-bronze {
  color: var(--bronze);
}
.bg-bronze {
  background-color: var(--bronze);
}
.req-star {
  color: var(--bronze);
  font-weight: bold;
  margin-left: 2px;
}
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-bg {
  background:
    linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.95)),
    url("/images/hero-900x.jpg");
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .hero-bg {
    background-image:
      linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.95)),
      url("/images/hero-1920x.jpg");
  }
}
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 986;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000;
}
.comparison-after {
  position: absolute;
  inset: 0;
  z-index: 10;
}
.comparison-before {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 50%;
  border-right: 3px solid var(--bronze);
  background-image: url("/images/osts-old.jpg");
  background-repeat: no-repeat;
  background-position: left top;
}
.slider-img-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 30;
  pointer-events: none;
  border: 1px solid rgba(176, 141, 87, 0.5);
}
.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.is-fullscreen .comparison-slider {
  width: 95vw;
  max-width: 1400px;
  height: auto;
}
.is-fullscreen + p, .grecaptcha-badge {
  display: none !important;
}
#close-slider {
  display: none;
}
.is-fullscreen #close-slider {
  display: block !important;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2147483647;
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) and (orientation: portrait) {
  .is-fullscreen #rotate-prompt {
    display: flex;
    z-index: 100000;
  }
  .is-fullscreen .comparison-slider {
    display: none;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .is-fullscreen {
    padding: 5px;
    touch-action: none;
  }
  .is-fullscreen .comparison-slider {
    width: auto;
    height: 90vh;
    max-height: 100%;
    aspect-ratio: 1920 / 986;
    max-width: 98vw;
  }
  .is-fullscreen #rotate-prompt {
    display: none;
  }
}
.card-hover {
  transition: border-color 0.25s ease;
}
.card-hover:hover {
  border-color: rgba(176, 141, 87, 0.35);
}
input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 40;
  cursor: col-resize;
  -webkit-appearance: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100px;
  width: 100px;
}