:root {
  color-scheme: dark;
  background: #080705;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #080705;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #080705;
}

.landing-page,
.media-section {
  width: 100%;
}

.media-section {
  position: relative;
  overflow: hidden;
  background: #080705;
  line-height: 0;
}

.section-video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  background: #080705;
}

.mobile-media {
  display: none;
}

.cta-button {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vw, 76px);
  z-index: 2;
  min-width: min(360px, calc(100% - 48px));
  min-height: 56px;
  padding: 17px 28px;
  transform: translateX(-50%);
  border: 1px solid rgba(226, 175, 92, 0.75);
  border-radius: 6px;
  background: #d99a48;
  color: #130e09;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #ebb467;
}

.cta-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

noscript {
  display: block;
  padding: 20px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767px) {
  .desktop-media {
    display: none;
  }

  .mobile-media {
    display: block;
  }

  .cta-button {
    bottom: clamp(22px, 7vw, 42px);
    min-width: calc(100% - 56px);
    min-height: 52px;
    padding: 15px 20px;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
