@font-face {
  font-family: Burbank;
  font-style: normal;
  font-display: swap;
  src: url(https://db.onlinewebfonts.com/t/cdc8c3de1e6bd5a9a67c6a001f9fedd0.woff2) format("woff2");
}
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: #080508;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #fff;
  overflow-x: hidden;
  user-select: none;
}
.bg-gradient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 70%  0%,   rgba(160, 50, 255, 0.20),  transparent 50%),
    radial-gradient(ellipse at 0%   60%,  rgba(100, 20, 200, 0.16),  transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(191, 95, 255, 0.12),  transparent 50%),
    radial-gradient(ellipse at 50%  50%,  rgba(20,   5,  40, 0.6),   transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.LandingSection {
  position: relative;
  width: 100vw;
  height: 82vh;
  min-height: 520px;
  background-image: url('Assets/Season17.png');
  background-size: cover;
  background-position: 100% center;
  display: flex;
  align-items: center;
}
.LandingSection::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(5, 2, 14, .75) 0%, rgba(5, 2, 14, .35) 50%, transparent 78%),
    linear-gradient(to top,   rgba(191, 95, 255, .05) 0%, transparent 40%);
  pointer-events: none;
}
.LandingBody {
  position: relative;
  z-index: 1;
  margin-left: clamp(2.5rem, 6vw, 7rem);
  margin-bottom: clamp(5rem, 10vw, 12rem);
}
.LandingEyebrow {
  font-family: Burbank, Impact, sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  color: #ffffff;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 rgba(0,0,0,.5),
    4px 4px 8px rgba(0,0,0,.35),
    8px 8px 18px rgba(0,0,0,.2);
  letter-spacing: .2em;
  text-align: center;
  margin-bottom: .1rem;
}
.LandingHeading {
  font-family: Burbank, Impact, sans-serif;
  font-size: clamp(5rem, 11vw, 12rem);
  color: #fff;
  line-height: .9;
  text-transform: uppercase;
  text-shadow:
    3px 3px 0 rgba(0, 0, 0, .5),
    6px 6px 0 rgba(0, 0, 0, .3),
    0 0 40px rgba(180, 80, 255, .2),
    10px 10px 24px rgba(0,0,0,.25);
  white-space: nowrap;
}
.LandingHeading span {
  display: inline-block;
  animation: LetterPop .5s cubic-bezier(.3, 1.53, .69, .99) both;
}
@keyframes LetterPop {
  from { opacity: 0; transform: scale(2.5); }
  to   { opacity: 1; transform: scale(1); }
}
.GetStartedButton {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 1.3rem 4.5rem;
  font-family: Burbank, Impact, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .07em;
  background: #bf5fff;
  color: #000;
  border: none;
  cursor: pointer;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  transition: transform .2s, filter .15s, box-shadow .2s;
  box-shadow:
    0 0 18px rgba(191, 95, 255, .55),
    0 4px 30px rgba(191, 95, 255, .3);
}
.GetStartedButton:hover {
  transform: scale(1.04);
  filter: brightness(1.12);
  box-shadow:
    0 0 32px rgba(191, 95, 255, .8),
    0 6px 40px rgba(191, 95, 255, .45);
}
.ScrollArrow {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 2.6vw, 40px);
  height: clamp(30px, 2.6vw, 40px);
  border-radius: 50%;
  border: 2px solid rgba(191, 95, 255, .55);
  background: rgba(15, 5, 30, .5);
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
  animation: ArrowBob 1.8s ease-in-out infinite;
  transition: background .2s, border-color .2s, box-shadow .2s;
  box-shadow: 0 0 10px rgba(191, 95, 255, .25);
}
.ScrollArrow:hover {
  background: rgba(191, 95, 255, .12);
  border-color: #bf5fff;
  box-shadow: 0 0 20px rgba(191, 95, 255, .55);
  animation-play-state: paused;
}
.ScrollArrow svg {
  width: 40%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 6px rgba(191, 95, 255, .6));
}
@keyframes ArrowBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
.SectionDivider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    #bf5fff     20%,
    #e0b8ff     50%,
    #bf5fff     80%,
    transparent 100%);
  box-shadow: 0 0 14px rgba(191, 95, 255, .7);
  position: relative;
  z-index: 5;
}
.PageBody {
  position: relative;
  z-index: 1;
  background: transparent;
  margin-top: 0;
}
.ContentBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.ContentBlock.TopSpacing {
  padding-top: 30px;
}
.BlockHeading {
  font-family: Burbank, Impact, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  letter-spacing: .06em;
  margin-bottom: 56px;
  text-shadow:
    0 0 20px rgba(191, 95, 255, .35),
    0 0 60px rgba(140, 40, 220, .18);
}
.FeaturesLayout {
  width: 100%;
  max-width: 82%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.FeaturePanel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 44px 36px;
  background: rgba(20, 5, 45, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 95, 255, 0.25);
  border-radius: 16px;
  box-shadow:
    0 4px 30px rgba(100, 20, 200, 0.2),
    inset 0 1px 0 rgba(191, 95, 255, 0.08);
  transition: background .25s, border-color .25s, box-shadow .25s;
  cursor: default;
}
.FeaturePanel:hover {
  background: rgba(30, 8, 60, 0.65);
  border-color: rgba(191, 95, 255, 0.55);
  box-shadow:
    0 0 24px rgba(191, 95, 255, 0.28),
    0 8px 40px rgba(130, 30, 220, 0.3),
    inset 0 1px 0 rgba(191, 95, 255, 0.12);
}
.FeatureName {
  font-family: Burbank, Impact, sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 255, 255, .15);
}
.FeatureBody {
  font-size: .88rem;
  color: rgba(180, 180, 190, 0.72);
  line-height: 1.7;
  font-weight: 600;
}
.ClipsLayout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 22rem 20rem 22rem;
  gap: 10px;
  width: 100%;
  max-width: 82%;
}
.ClipTile {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 5, 45, 0.4);
  contain: paint;
  box-shadow:
    0 4px 20px rgba(0,0,0,.5),
    0 0 0 1px rgba(191, 95, 255, .08);
  transition: transform .2s, box-shadow .2s;
}
.ClipTile:hover {
  transform: scale(1.01);
  box-shadow:
    0 6px 28px rgba(0,0,0,.6),
    0 0 0 1px rgba(191, 95, 255, .3);
}
.ClipTile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(1.1);
  display: block;
}
.ClipTile:nth-child(1) { grid-column: 1/6;  grid-row: 1; }
.ClipTile:nth-child(2) { grid-column: 6/13; grid-row: 1; }
.ClipTile:nth-child(3) { grid-column: 1/9;  grid-row: 2; }
.ClipTile:nth-child(4) { grid-column: 9/13; grid-row: 2; }
.ClipTile:nth-child(5) { grid-column: 1/5;  grid-row: 3; }
.ClipTile:nth-child(6) { grid-column: 5/13; grid-row: 3; }
.VideoPlayer {
  width: 100%;
  max-width: 64rem;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 8px 50px rgba(0,0,0,.6),
    0 0 0 1px rgba(191, 95, 255, .15);
  position: relative;
  cursor: pointer;
  background: #000;
}
.VideoPreviewImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .3s, transform .3s;
  z-index: 1;
}
.VideoPlayer:hover .VideoPreviewImage {
  filter: brightness(.55) saturate(.9);
  transform: scale(1.02);
}
.PlayOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.PlayOverlay svg {
  width: clamp(72px, 10vw, 110px);
  height: auto;
  filter:
    drop-shadow(0 0 16px rgba(191, 95, 255, .75))
    drop-shadow(0 4px 24px rgba(0,0,0,.7));
  transition: transform .2s;
}
.VideoPlayer:hover .PlayOverlay svg {
  transform: scale(1.1);
}
.VideoPlayer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
  display: none;
}
.VideoPlayer.IsActive .VideoPreviewImage,
.VideoPlayer.IsActive .PlayOverlay {
  display: none;
}
.VideoPlayer.IsActive {
  cursor: default;
}
.VideoPlayer.IsActive iframe {
  display: block;
}
.SocialsFooter {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px 36px;
}
.SocialsInner {
  max-width: 82%;
  margin: 0 auto;
}
.SocialsDivider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(191, 95, 255, 0.4) 20%,
    rgba(224, 184, 255, 0.6) 50%,
    rgba(191, 95, 255, 0.4) 80%,
    transparent 100%);
  margin-bottom: 28px;
}
.SocialsRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.SocialsLabel {
  font-family: Burbank, Impact, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, 0.35);
}
.SocialsLinks {
  display: flex;
  align-items: center;
  gap: 12px;
}
.SocialLink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: Burbank, Impact, sans-serif;
  font-size: clamp(.85rem, 1.1vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  background: rgba(20, 5, 45, 0.55);
  border: 1px solid rgba(191, 95, 255, 0.22);
  border-radius: 10px;
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s, transform .15s;
}
.SocialLink:hover {
  color: #fff;
  background: rgba(191, 95, 255, 0.15);
  border-color: rgba(191, 95, 255, 0.6);
  box-shadow: 0 0 18px rgba(191, 95, 255, 0.3);
  transform: translateY(-2px);
}
.SocialIcon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.SocialsCopy {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: .05em;
  text-align: center;
}