@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, "Helvetica Neue", sans-serif;
}

html,
body {
  min-height: 100%;
}

body {
  background: #111;
  color: #f8f8f8;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}
h1 > span {
  color: #b91425;
}

.content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 40px;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper {
  min-height: 100vh;
  background: radial-gradient(
    49.55% 25.67% at 50.04% 0%,
    rgba(162, 37, 45, 0.6) 0%,
    rgba(17, 17, 17, 0) 100%
  );
}

header {
  display: flex;
  padding: 20px;
  border-bottom: 1.68px solid rgba(255, 255, 255, 0.08);
}

.hero {
  padding-top: 100px;
  background: transparent;
}

.hero-inner {
  position: relative;
  margin: 0 auto;
}

.hero-slider {
  z-index: 1;
  margin: 0 auto;
  padding-bottom: 96px;
  overflow: hidden;
}

.hero-slider .slick-slide {
  margin-inline: 10px;
}

.hero-slide {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  width: clamp(299px, 32.2vw, 483px);
  aspect-ratio: 4 / 3;
  height: auto;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}

.hero-slider .hero-slide.slick-center {
  width: clamp(368px, 39.1vw, 598px);
}

.hero-slider .hero-slide:not(.slick-center) {
  opacity: 0.85;
  transform: scale(0.84);
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.hero-slide-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
}

.hero-username {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 120px;
  height: 120px;
  padding: 25px;
  border: none;
  border-radius: 16px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow__icon {
  width: 70px;
  height: 70px;
}

.hero-arrow--prev {
  left: 38px;
}

.hero-arrow--next {
  right: 38px;
}

.hero-arrow--next .hero-arrow__icon {
  transform: scaleX(-1);
}

.cta-enter {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 45px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #26c15b, #1f9c4b);
  border-radius: 32px;
  overflow: hidden;
  font-size: 24px;
  height: 64px;
  min-width: 310px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.cta-enter:hover {
  background-color: #22a34f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
  cursor: pointer;
}

.cta-enter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
}

.enter-cta-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.enter-cta.is-fixed {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-47.5%);
  z-index: 9999;
  box-shadow: none;
  right: auto;
}

.enter-cta.is-fixed:hover {
  transform: translateX(-47.5%) translateY(-2px);
}

/* Sections */
.section {
  overflow: hidden;
  padding: 100px;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.section--centered {
  text-align: center;
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section--split-reverse .section-content {
  order: 1;
}

.section--split-reverse .section-media {
  order: 2;
}

.section-content h2,
.section--centered > h2,
.section--faq h2 {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.section-content p,
.section-intro {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(248, 248, 248, 0.8);
}

.section-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.section-icon-wrap {
  display: flex;
  justify-content: center;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.read-more img {
  width: 16px;
  height: 16px;
}

.read-more--center {
  justify-content: center;
}

.read-more-block:not(.is-expanded) .read-more-extra {
  display: none;
}

.read-more-block.is-expanded .read-more,
.read-more-block.is-expanded .read-more-ellipsis {
  display: none;
}

.section-media img {
  width: 100%;
  border-radius: 14px;
  max-height: 520px;
  object-fit: contain;
}

/* Feature grid */
.section--features .read-more-block {
  max-width: 800px;
  margin: 0 auto;
}

.section--features .section-intro {
  max-width: none;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
  text-align: left;
}

.feature-card {
  background: rgba(16, 16, 16, 0.7);
  border: 1px solid rgba(248, 248, 248, 0.3);
  border-radius: 14px;
  padding: 20px;
}

.feature-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-card__head img {
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
}

.feature-card__head h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.35);
}

/* Core components */
.section--core .section-intro {
  max-width: 840px;
  margin: 0 auto 60px;
}

.core-layout {
  position: relative;
  text-align: left;
}

.core-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: calc(50% - 20px);
}

.core-item {
  position: relative;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
  transition: opacity 0.2s ease;
}

.core-item__copy {
  position: relative;
  z-index: 1;
}

.core-list:not(:hover) .core-item:first-child::before,
.core-item:hover::before,
.core-item:focus-within::before {
  content: "";
  background: rgba(255, 0, 0, 0.3);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
  left: -40vw;
  height: 100%;
  width: 120vw;
  z-index: 0;
}

.core-item h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 10px;
}

.core-item p {
  font-size: 20px;
  line-height: 28px;
  color: rgba(248, 248, 248, 0.8);
}

.core-item__image {
  display: none;
  position: absolute;
  left: calc(100% + 40px);
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 14px;
  top: 0;
  bottom: auto;
}

.core-item:nth-last-child(-n + 2) .core-item__image {
  top: auto;
  bottom: 0;
}

.core-list:not(:hover) .core-item:first-child .core-item__image,
.core-item:hover .core-item__image,
.core-item:focus-within .core-item__image {
  display: block;
}

/* FAQ */
.section--faq {
  background: transparent;
}

.section--faq h2 {
  margin-bottom: 40px;
}

.faq {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.faq-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  border: none;
  background: transparent;
  color: #f8f8f8;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question img {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(248, 248, 248, 0.6);
}

/* Footer */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 32px 40px 48px;
  text-align: center;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-legal {
  font-size: 12px;
  line-height: 24px;
  color: rgba(248, 248, 248, 0.4);
  max-width: 1840px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.8);
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  color: rgba(248, 248, 248, 0.4);
  letter-spacing: 0.2px;
}

/* Slick overrides */
.hero-slider .slick-list {
  overflow: hidden;
}

.hero-slider .slick-track {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 700px) {
  .hero-slider .slick-list {
    overflow: visible;
  }
}

.streamers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
  max-width: 100%;
}
.streamers-row {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
  max-width: 100%;
}

.streamers-row img {
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  width: calc((90% - 54px) / 4);
}

.stats {
  display: flex;
  margin-bottom: 64px;
  margin-top: 64px;
  gap: 12px;
}

.content :where(h1, p) {
  text-align: center;
}
h1 {
  color: #fff;
  font-size: 102px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1.251px;
}

.stat {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  gap: 8px;
}
.stat img {
  display: block;
}

@media screen and (min-width: 1025px) {
  header {
    padding: 18px clamp(48px, 6vw, 84px);
  }

  header img {
    height: 28px;
    width: auto;
  }

  .section.content {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    align-content: start;
    align-items: start;
    column-gap: clamp(48px, 6vw, 96px);
    padding: clamp(48px, 8vh, 64px) clamp(48px, 6vw, 92px)
      clamp(32px, 5vh, 52px);
  }

  .content h1 {
    grid-column: 1;
    max-width: 560px;
    margin-top: clamp(44px, 8vh, 64px);
    font-size: clamp(48px, 4.6vw, 64px);
    line-height: 1.08;
    text-align: left;
  }

  .content p {
    grid-column: 1;
    max-width: 520px;
    margin: 14px 0 0;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.55;
    text-align: left;
  }

  .enter-cta-slot {
    grid-column: 1;
    justify-content: flex-start;
    margin-top: 24px;
  }

  .content .cta-enter {
    min-width: 210px;
    height: 48px;
    padding: 10px 42px;
    font-size: 18px;
  }

  .stats {
    grid-column: 1 / -1;
    align-self: end;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: start;
    gap: 28px clamp(28px, 4vw, 56px);
    margin: clamp(52px, 8vh, 76px) 0 0;
    font-size: 12px;
  }

  .stat img {
    width: 16px;
    height: 16px;
  }

  .streamers {
    grid-column: 2;
    grid-row: 1 / 4;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: start;
    justify-self: end;
    width: min(100%, 660px);
    height: clamp(320px, 59vh, 430px);
    margin: 0;
    overflow: hidden;
  }

  .streamers-row,
  .streamers-row[dir] {
    display: contents;
  }

  .streamers-row img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 8px;
  }

  .streamers-row:first-child img:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1;
  }

  .streamers-row:first-child img:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1;
  }

  .streamers-row:first-child img:nth-child(3) {
    grid-column: 7 / 11;
    grid-row: 1;
  }

  .streamers-row:first-child img:nth-child(4) {
    grid-column: 11 / 13;
    grid-row: 1;
  }

  .streamers-row:nth-child(2) img:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 2;
  }

  .streamers-row:nth-child(2) img:nth-child(2) {
    grid-column: 5 / 8;
    grid-row: 2;
  }

  .streamers-row:nth-child(2) img:nth-child(3) {
    grid-column: 8 / 11;
    grid-row: 2;
  }

  .streamers-row:nth-child(2) img:nth-child(4) {
    grid-column: 11 / 13;
    grid-row: 2;
  }

  .section-icon-wrap {
    min-height: 120px;
    align-items: center;
  }

  .hero {
    padding-top: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    padding: 12px 20px 64px;
  }

  .hero-slider {
    max-width: min(385px, 100%);
    margin: 0 auto;
    padding-bottom: 0;
  }

  .hero-slider .slick-slide {
    margin-inline: 0;
    padding: 0;
    opacity: 1;
  }

  .hero-slider .hero-slide,
  .hero-slider .hero-slide.slick-center {
    width: 100%;
    aspect-ratio: 335 / 262;
    height: auto;
  }

  .hero-slider .hero-slide:not(.slick-center) {
    transform: scale(1);
  }

  .hero-arrow {
    width: 47px;
    height: 47px;
    padding: 10px;
  }

  .hero-arrow__icon {
    width: 27px;
    height: 27px;
  }

  .hero-arrow--prev {
    left: -5px;
  }

  .hero-arrow--next {
    right: -5px;
  }

  .hero-slide-footer {
    padding: 8px 11px;
  }

  .hero-username {
    font-size: 11px;
  }

  .cta-enter {
    width: auto;
    min-width: min(310px, 100%);
    font-size: 20px;
    padding: 12px 45px;
  }

  .enter-cta.is-fixed {
    bottom: 25px;
    max-width: calc(100vw - 40px);
  }

  .section {
    padding: 40px 20px;
  }

  .section--split,
  .section--split-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section--split-reverse .section-content,
  .section--split-reverse .section-media,
  .section--enter .section-media {
    order: unset;
  }

  .section--enter .section-content {
    order: -1;
  }

  .section-content h2,
  .section--centered > h2,
  .section--faq h2 {
    font-size: 36px;
    line-height: 48px;
    text-align: center;
  }

  .section-content p,
  .section-intro {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }

  .section-content {
    text-align: center;
  }

  .read-more {
    font-size: 20px;
    justify-content: center;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .core-layout {
    text-align: left;
  }

  .core-list {
    width: 100%;
    gap: 40px;
  }

  .core-item {
    padding: 0 0 40px;
    border-bottom: 0;
  }

  .core-list:not(:hover) .core-item:first-child::before,
  .core-item:hover::before,
  .core-item:focus-within::before {
    display: none;
  }

  .core-item h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .core-item p {
    font-size: 20px;
    line-height: 28px;
    color: rgba(248, 248, 248, 0.8);
    margin-bottom: 20px;
  }

  .core-item__image,
  .core-list:not(:hover) .core-item:first-child .core-item__image,
  .core-item:hover .core-item__image,
  .core-item:focus-within .core-item__image {
    display: block;
    position: static;
    margin: 0 auto;
    max-height: 320px;
    object-fit: contain;
    border-radius: 12px;
    width: auto;
    max-width: 100%;
  }

  .site-footer {
    padding: 32px 20px;
    gap: 32px;
  }

  .footer-links {
    gap: 16px 24px;
  }
  header {
    justify-content: center;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content p,
  .content h1 {
    text-align: center;
  }
  .stats {
    margin-top: 42px;
    margin-bottom: 0;
    display: grid;
    gap: 24px 48px;
    grid-template-columns: repeat(2, 1fr);
  }
  h1 {
    font-size: 32px;
  }
  .streamers-row img {
    width: 108px;
  }

  .streamers-row[dir] {
    right: -40px;
    left: auto;
  }
  .streamers-row {
    position: relative;
    left: -40px;
  }
  .streamers {
    margin-top: 64px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 700px) and (max-width: 1024px),
  screen and (max-width: 1024px) and (orientation: landscape) {
  .section {
    padding: 32px 20px 28px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .stats {
    margin-top: 36px;
    gap: 20px 48px;
  }

  .streamers {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .streamers-row,
  .streamers-row[dir] {
    left: auto;
    right: auto;
    justify-content: center;
  }

  .section-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-slider {
    max-width: 100%;
    padding-bottom: 64px;
  }

  .hero-slider .slick-slide {
    margin-inline: 10px;
  }

  .hero-slider .hero-slide {
    width: clamp(299px, 32.2vw, 483px);
    aspect-ratio: 4 / 3;
  }

  .hero-slider .hero-slide.slick-center {
    width: clamp(368px, 39.1vw, 598px);
  }

  .hero-slider .hero-slide:not(.slick-center) {
    opacity: 0.85;
    transform: scale(0.84);
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) and (max-height: 560px) {
  header {
    padding: 10px 20px;
  }

  header img {
    max-height: 28px;
  }

  .section {
    padding: 24px 20px;
  }

  .content p {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 24px;
  }

  .cta-enter {
    height: 56px;
    min-width: 280px;
    font-size: 18px;
  }

  .stats {
    margin-top: 28px;
    gap: 16px 48px;
  }

  .streamers {
    gap: 16px;
    margin-top: 32px;
  }

  .streamers-row {
    gap: 16px;
  }

  .streamers-row img {
    width: 96px;
  }

  .section-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }

  .enter-cta.is-fixed {
    position: static;
    max-width: none;
    transform: none;
  }

  .enter-cta.is-fixed:hover {
    transform: translateY(-2px);
  }
}

.section--years .section-inner {
  display: flex;
  flex-direction: column;
}
