@font-face {
  font-family: "Gotham Black";
  src: url("./fonts/gotham-black.woff2?v=f40a233-20260827132637") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Black";
  src: url("./fonts/gotham-black.woff2?v=f40a233-20260827132637") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url("./fonts/gotham-regular.woff2?v=f40a233-20260827132637") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url("./fonts/gotham-regular.woff2?v=f40a233-20260827132637") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --content-width: 1200px;
  --content-padding: 0 40px;
  --content-padding-mobile: 0 24px;
  --orange: #ee4d1f;
  --orange-hover: #d6431b;
  --hover-speed: 0.3s;
  --hover-line-speed: 0.15s;
}

body {
  color: #fff;
  font-family: Gotham, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625em;
  text-align: center;
  /* 29.25px / 18px */

  background: #000;
  margin: 0;
  padding: 0;

  @media (max-width: 768px) {
    font-size: 15px;
  }
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Archivo, sans-serif;
}

h1,
.h1 {
  color: #fff;
  font-family: "Gotham Black", Archivo, sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 0.92em;
  /* 88.32px / 96px */
  letter-spacing: -0.02em;
  /* -1.92px / 96px */
  text-transform: uppercase;

  @media (max-width: 1500px) {
    font-size: 70px;
  }

  @media (max-width: 1200px) {
    font-size: 50px;
  }

  @media (max-width: 400px) {
    font-size: 45px;
  }
}

h2 {
  color: #fff;
  text-align: center;
  font-family: Archivo, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.08958em;
  /* 52.3px / 48px */
  letter-spacing: -0.02833em;
  /* -1.36px / 48px */
  text-transform: uppercase;

  @media (max-width: 1500px) {
    font-size: 38px;
  }

  @media (max-width: 1200px) {
    font-size: 38px;
  }

  @media (max-width: 400px) {
    font-size: 30px;
  }
}

.btn {
  display: inline-flex;
  padding: 16px 36px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 33554400px;
  background: var(--orange);
  transition:
    background var(--hover-speed) ease,
    color var(--hover-speed) ease,
    transform var(--hover-speed) ease;

  color: #fff;
  font-family: Gotham, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25em;
  text-decoration: none;
  white-space: nowrap;

  @media (max-width: 768px) {
    font-size: 15px;
  }

  &.small {
    padding: 8px 20px;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }

  &:hover {
    /* background: var(--orange-hover); */
    color: #fff;
    transform: scale(1.05);
  }
}

sup {
  line-height: 0;
  position: relative;
  font-size: 0.6em;
  top: 0.15em;
}

.orange {
  color: var(--orange);
}

.container {
  width: var(--content-width);
  max-width: 100%;
  margin: 0 auto;
  padding: var(--content-padding);

  @media (max-width: 768px) {
    padding: var(--content-padding-mobile);
  }
}

header {
  height: 1070px;
  max-height: 100dvh;
  background-color: lightgray;
  background-image:
    linear-gradient(89deg, rgba(0, 0, 0, 0.7) 33.7%, rgba(0, 0, 0, 0) 60.5%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.76) 6.25%, rgba(0, 0, 0, 0) 50%, #000 100%),
    url(./images/hero.webp?v=f40a233-20260827132637);
  background-size: auto, auto, cover;
  background-position:
    0 0,
    0 0,
    center;
  background-repeat: no-repeat;

  @media (max-width: 768px) {
    height: 700px;

    background-color: lightgray;
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.76) 6.25%,
        rgba(0, 0, 0, 0.76) 62.98%,
        rgba(0, 0, 0, 0) 82.69%,
        #000 100%
      ),
      url(./images/hero-mobile.webp?v=f40a233-20260827132637);
    background-size: auto, cover;
    background-position:
      0 0,
      bottom center;
    background-repeat: no-repeat;
  }

  .container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  nav {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    flex-shrink: 0;

    @media (max-width: 768px) {
      justify-content: center;
    }

    a {
      color: #fff;
      font-family: Gotham, sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.25em;
      text-decoration: none;
      white-space: nowrap;
      transition:
        background var(--hover-speed) ease,
        color var(--hover-speed) ease;

      @media (max-width: 768px) {
        font-size: 14px;
      }

      &.active {
        color: var(--orange);
      }

      &:hover {
        color: var(--orange);
      }

      &:not(.btn) {
        position: relative;

        &::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          width: 0;
          height: 1.4px;
          background: var(--orange);
          transition: width var(--hover-line-speed) ease-in-out;
          pointer-events: none;
        }

        &:hover::after,
        &:focus-visible::after {
          width: 100%;
        }
      }
    }
  }

  &:not(.watch-episodes-page) {
    .content {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;

      &::before {
        content: "";
        flex: 90 1 0;
        pointer-events: none;

        @media (max-width: 768px) {
          flex: 34 1 0;
        }
      }

      .content-inner {
        flex: 0 1 auto;
      }

      &::after {
        content: "";
        flex: 280 1 0;
        pointer-events: none;

        @media (max-width: 768px) {
          flex: 180 1 0;
        }
      }

      #logos {
        width: 490px;
        margin-bottom: 28px;

        @media (max-width: 1500px) {
          width: 392px;
          margin-bottom: 22px;
        }

        @media (max-width: 1200px) {
          width: 248px;
        }

        @media (max-width: 768px) {
          width: 348px;
        }
      }

      h1 {
        margin-top: 0;
        margin-bottom: 24px;
        text-align: inherit;
        font-family: "Gotham Black", Archivo, sans-serif;

        @media (max-width: 1500px) {
          margin-bottom: 22px;
        }
      }

      h2 {
        margin-top: 0;
        margin-bottom: 40px;
        text-align: inherit;
        font-family: "Gotham Black", Archivo, sans-serif;

        .number-outer {
          display: inline-block;
          white-space: nowrap;
          text-align: left;
        }

        .number {
          font-variant-numeric: tabular-nums;
        }

        @media (max-width: 1500px) {
          margin-bottom: 32px;
        }

        @media (max-width: 1200px) {
          margin-bottom: 22px;
        }
      }
    }
  }

  &.watch-episodes-page {
    height: 620px;
    max-height: 100dvh;
    position: relative;
    background: none;

    &:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;

      background-color: lightgray;
      background-image:
        linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%),
        url(./images/watch.webp?v=f40a233-20260827132637);
      background-size: auto, auto, cover;
      background-position:
        0 0,
        0 0,
        center center;
      background-repeat: no-repeat;

      @media (max-width: 768px) {
        height: 90%;
      }
    }

    > {
      z-index: 1;
      position: relative;
    }

    .logos {
      margin-top: 56px;
      width: 277px;

      @media (max-width: 768px) {
        width: 236px;
      }
    }

    .presents {
      color: #fff;
      text-align: center;
      font-family: Gotham, sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.75em;
      text-transform: uppercase;

      @media (max-width: 768px) {
        font-size: 14px;
      }
    }

    h2 {
      margin-top: 38px;
      margin-bottom: 24px;

      @media (max-width: 768px) {
        margin-top: 16px;
      }
    }

    p {
      margin-bottom: 32px;
    }
  }
}

.info {
  h2 {
    margin-top: 20px;
    margin-bottom: 32px;

    @media (max-width: 768px) {
      margin-top: 44px;
      margin-bottom: 17px;
    }
  }
}

.form-section {
  margin-top: 116px;
  margin-bottom: 112px;

  @media (max-width: 768px) {
    margin-top: 44px;
    margin-bottom: 20px;
  }

  h2 {
    margin-top: 30px;
    margin-bottom: 55px;

    @media (max-width: 768px) {
      margin-bottom: 24px;
    }
  }

  .form {
    width: 700px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    @media (max-width: 1200px) {
      padding: 36px;
    }

    @media (max-width: 768px) {
      padding: 24px;
    }
  }
}

.made-by-moments {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 900px;
  max-height: 100dvh;
  position: relative;

  @media (max-width: 768px) {
    height: auto;
    padding-top: 80px;
    padding-bottom: 0;
  }

  &:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;

    background-color: lightgray;
    background-image:
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%),
      url(./images/watch.webp?v=f40a233-20260827132637);
    background-size: auto, auto, cover;
    background-position:
      0 0,
      0 0,
      bottom center;
    background-repeat: no-repeat;

    @media (max-width: 768px) {
      height: 90%;
    }
  }

  > {
    z-index: 1;
    position: relative;
  }

  .logos {
    width: 277px;

    @media (max-width: 768px) {
      width: 236px;
    }
  }

  .presents {
    color: #fff;
    text-align: center;
    font-family: Gotham, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75em;
    text-transform: uppercase;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }

  h2 {
    margin-top: 38px;
    margin-bottom: 24px;

    @media (max-width: 768px) {
      margin-top: 16px;
    }
  }

  p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
  }
}

.videos-section {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;

  @media (max-width: 768px) {
    padding-bottom: 0;
  }

  .video {
    width: 780px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    iframe {
      width: 100%;
      height: 100%;
      aspect-ratio: 16/9;
    }
  }
}

footer {
  padding-top: 80px;
  padding-bottom: 80px;

  @media (max-width: 850px) {
    padding-bottom: 32px;
  }

  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;

    @media (max-width: 850px) {
      flex-direction: column;
      gap: 32px;
      align-items: flex-start;
      margin-bottom: 32px;
    }

    .footer-logos {
      width: 380px;

      @media (max-width: 850px) {
        width: 210px;
      }
    }

    nav {
      display: flex;
      gap: 32px;

      @media (max-width: 850px) {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
      }

      a {
        color: rgba(255, 255, 255, 0.7);
        font-family: Gotham, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.42857em;
        text-decoration: none;
        transition:
          background var(--hover-speed) ease,
          color var(--hover-speed) ease;

        &:hover {
          color: rgba(255, 255, 255, 1);
        }
      }
    }
  }

  .socials {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;

    @media (max-width: 850px) {
      margin-bottom: 32px;
    }

    a {
      display: inline-flex;
      width: 40px;
      height: 40px;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      border-radius: 33554400px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-decoration: none;
      transition:
        color var(--hover-speed) ease,
        border-color var(--hover-speed) ease;

      &:hover {
        border-color: rgba(255, 255, 255, 1);

        svg {
          path {
            fill-opacity: 1;
          }
        }
      }

      svg {
        width: 18px;

        path {
          transition: fill-opacity var(--hover-speed) ease;
        }
      }
    }
  }

  .copyright {
    color: rgba(255, 255, 255, 0.4);
    font-family: Gotham, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.625em;
    text-align: left;
  }
}
