@font-face {
  font-family: "Stentiga";
  src: url("../Assets/Logo/stentiga/stentiga.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #000;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #000;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 2.5rem 2rem 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  font-weight: 400;
}

.site-main {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 2rem 4rem;
}

.hero {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(1rem, 8vw, 10rem);
  padding-right: clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.hero__brand {
  flex: 0 1 auto;
}

.hero__player {
  flex: 1 1 300px;
  max-width: 420px;
  min-width: min(100%, 280px);
}

.hero__player iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.hero__title {
  margin: 0;
  font-family: "Stentiga", sans-serif;
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-weight: normal;
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__tagline {
  margin: 1.25rem 0 0;
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.content-section {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.content-section h1 {
  margin: 0 0 1.5rem;
  font-family: "Stentiga", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: normal;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.content-section p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.92;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.placeholder-note {
  font-style: italic;
  opacity: 0.65;
}

.social-bar {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 20;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: 1.5rem 0.85rem;
  background: #bf1419;
  border-radius: 999px 0 0 999px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.35);
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-bar a:hover {
  opacity: 1;
  transform: scale(1.08);
}

.social-bar svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

@media (max-width: 768px) {
  .site-header {
    padding-top: 1.5rem;
  }

  .site-nav {
    gap: 1.25rem 1.75rem;
  }

  .site-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__player {
    max-width: 100%;
  }

  .social-bar {
    padding: 1rem 0.65rem;
    gap: 1rem;
  }

  .social-bar a {
    width: 1.65rem;
    height: 1.65rem;
  }

  .social-bar svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}

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

  .social-bar a {
    transition: none;
  }
}
