/* Homepage sections, footer, dice overlay placement, and page-local component styles. */

.dt-our-mission-block {
  background: #b2d2e5;
  margin:0px;
}

.dt-our-mission {
  padding: 60px 0;
  color: #161d2a;
}

.dt-our-mission.container-xl {
  max-width: none;
  padding-left: 120px;
  padding-right: 120px;
}



.dt-our-mission-block::after{
  content: '';
  background: url(/wp-content/themes/dicethrone/assets/images/blue-border.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 30px;
  display: block;
  z-index: 99;


}

.dt-our-mission-block::before{
  content: '';
  background: url(/wp-content/themes/dicethrone/assets/images/blue-border.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
 top:0;
  left: 0;
  width: 100%;
  height: 30px;
  display: block;
  z-index: 0;
  transform: rotate(180deg);
}

.dt-our-mission__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 20px 0;
}

.dt-our-mission__content--image-top,
.dt-our-mission__content--image-bottom {
  grid-template-columns: 1fr;
  gap: 40px;
}

.dt-our-mission__media {
  position: relative;
  height: auto;
  min-height: 0;
}

.dt-our-mission__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dt-our-mission__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dt-our-mission__title {
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 64px;
  text-transform: uppercase;
}

.dt-our-mission__body {
  margin-top: 0;
  font-size: 22px;
  line-height: 28px;
}

.dt-our-mission__body p {
  margin: 0 0 10px;
  text-align:left;
}

.dt-our-mission__eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.dt-our-mission__principles,
.dt-our-mission__copy {
  text-align: left;
}

.dt-our-mission__title,
.dt-our-mission__body,
.dt-our-mission__body p,
.dt-our-mission__eyebrow,
.dt-our-mission__card-title,
.dt-our-mission__card-body,
.dt-our-mission__card-body p {
  color: #161d2a;
}

.dt-our-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
  justify-content: start;
}

.dt-our-mission__card {
  background: #fff;
  padding: 2em;
  display: grid;
  gap: 20px;
  min-height:580px;
  border-radius:20px;
}

.dt-our-mission__card-media {
  display: grid;
  place-items: center;
}

.dt-our-mission__card-media img {
  display: block;
  height:300px;
}

.dt-our-mission__card-title {
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  text-align: center;
}

.dt-our-mission__card-body {
  font-size: 22px;
  line-height: 28px;
}

.dt-our-mission__card-body p {
  margin: 0 auto;
}

.dt-meet-the-team-block {
  background: #161d2a;
  color: #f0f3f8;
  margin:0px;
}

.dt-meet-the-team {
  padding: 60px 0;
}

.dt-meet-the-team.container-xl {
  max-width: none;
  padding-left: 120px;
  padding-right: 120px;
}

.dt-meet-the-team__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  color: #f0f3f8;
}

.dt-meet-the-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
}

.dt-meet-the-team__card {
  background: #fff;
  color: #161d2a;
  padding: 20px;
  display: grid;
  align-content: start;
  align-items: start;
  grid-auto-rows: max-content;
  gap: 10px;
  border-radius:20px;
  overflow: hidden;
}

.dt-meet-the-team__photo {
  aspect-ratio: 1 / 1;
  border: 2px solid #161d2a;
  overflow: hidden;
  border-radius:20px;
}

.dt-meet-the-team__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dt-meet-the-team__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.dt-meet-the-team__role {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  color:#000;
}

.dt-meet-the-team__bio {
  margin: 0;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 2px;
  color:#000;
  text-align:left;
}

@media (max-width: 960px) {
  .dt-meet-the-team.container-xl {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dt-meet-the-team__grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .dt-meet-the-team__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .dt-our-mission.container-xl {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dt-our-mission__content {
    grid-template-columns: 1fr;
  }

  .dt-our-mission__grid {
    grid-template-columns: 1fr;
  }

  .dt-our-mission__card {
    height: auto;
  }
}

.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero .hero__video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero__dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / var(--hero-overlay-opacity, 0.35));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(242, 107, 43, 0.18), transparent 20%), linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 26%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.hero .hero__content-shell {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero__content {
  text-align: center;
  padding: 0 1.5rem;
}

.hero .hero__content .button {
  margin: 1em auto;
}

.hero .hero__content h1,
.battle .battle-center-content h2,
.section-text-media .section-text-media-content h2,
.section-video-media .section-video-media-content h2,
.heros-carousel h2,
.coop-promo__content h2,
.discover-more h2,
.discover-card__body h3 {
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.45vw, 4rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.hero .hero__content h1 {
  font-size: clamp(3rem, 4.45vw, 4rem);
}

.hero .hero__content p {
  max-width: 600px;
  margin: 1rem auto 1.5rem;
}

.battle {
  /* Keep side art width-aware, but cap it by viewport height on wide screens. */
  --battle-character-size: min(48vw, 84dvh);
  --battle-character-bleed: clamp(-28rem, -12vw, -6rem);
  --battle-mat-size: min(78vw, 135dvh, 96rem);
  --battle-mat-bleed: clamp(-60rem, -36vw, -16rem);
  position: relative;
  height: 100dvh;
  width: 100%;
  margin-top: calc(var(--nav-height) * -1);
  background-repeat: no-repeat !important;
  background-position: center 78px !important;
  background-size: cover !important;
  overflow: hidden;
}

.battle .battle-left,
.battle .battle-right {
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.battle .battle-left {
  left: 0;
}

.battle .battle-right {
  right: 0;
}

.battle .battle-left .ref,
.battle .battle-right .ref {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.battle .battle-left .ref {
  transform-origin: left bottom;
}

.battle .battle-right .ref {
  transform-origin: right bottom;
}

.battle .battle-left .base,
.battle .battle-right .base {
  position: absolute;
  bottom: 7%;
  width: var(--battle-mat-size);
  max-width: none;
}

.battle .battle-left .base {
  left: var(--battle-mat-bleed);
}

.battle .battle-right .base {
  right: var(--battle-mat-bleed);
}

.battle .battle-left .base img,
.battle .battle-right .base img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.battle .battle-left .charactor,
.battle .battle-right .charactor {
  position: absolute;
  bottom: 9%;
  width: var(--battle-character-size);
  max-width: none;
  z-index: 1;
}

.battle .battle-left .charactor {
  left: var(--battle-character-bleed);
}

.battle .battle-right .charactor {
  right: var(--battle-character-bleed);
}

.battle .battle-left .charactor img,
.battle .battle-right .charactor img {
  width: 100%;
  height: auto;
  display: block;
}

.battle .battle-center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 100%;
  padding: 0 10%;
  z-index: 2;
}

.battle .battle-center .battle-center-content h2 {
  margin-bottom: var(--space-2);
}

.battle .battle-center .battle-center-content {
  position: relative;
  height: 70%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.battle .battle-center .battle-center-content p {
  margin-bottom: 1em;
}

.battle .battle-center .floating-dice {
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translateX(-50%) scale(1.2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* Decorative dice overlay must not intercept clicks on the CTA beneath it. */
  pointer-events: none;
}

@supports (translate: 0) and (scale: 1) {
  .battle .battle-center .floating-dice {
    transform: none;
    translate: -50% 0;
    scale: 1.2;
  }
}

.battle .battle-center .floating-dice img {
  width: 42%;
}

.section-text-media {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12em 0;
  margin-top: -2em;
}

.section-text-media .container-l {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-text-media .section-text-media-content,
.section-text-media .section-text-media-image {
  width: 50%;
}

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

.section-text-media .section-text-media-content h2,
.section-video-media .section-video-media-content h2 {
  font-size: clamp(2rem, 3.35vw, 3rem);
  margin-bottom: 0.5em;
}

.section-text-media .section-text-media-content .button {
  margin: 1.5em auto;
}

.section-text-media .section-text-media-image {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.2);
}

.section-video-media .container-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6em 0;
}

.section-video-media .section-video-media-content {
  width: 100%;
  text-align: center;
}

.section-video-media .section-video-media-content h2 {
  margin-bottom: 1rem;
}

.section-video-media .section-video-media-content video {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1.75rem 4rem rgba(0, 0, 0, 0.4);
}

.heros-carousel {
  --hero-card-size: clamp(13.5rem, 16.125vw, 19.5rem);
  --hero-gap: clamp(0.75rem, 1.2vw, 0.95rem);
  --hero-left-offset: clamp(1.5rem, 10vw, 12rem);
  --hero-frame-strip: 1.25rem;
  position: relative;
  width: 100%;
  background: #000;
  padding: clamp(2.75rem, 4vw, 3.5rem) 0 4rem;
  overflow: visible;
}

.heros-carousel::before,
.heros-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--hero-frame-strip);
  background: url("../images/black-border.png") no-repeat center top;
  background-size: cover;
  z-index: 3;
  pointer-events: none;
}

.heros-carousel::before {
  top: calc(var(--hero-frame-strip) * -0.5);
}

.heros-carousel::after {
  bottom: calc(var(--hero-frame-strip) * -0.5);
  transform: rotate(180deg);
}

.heros-carousel h2 {
  margin-bottom: 1.625rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.heros-carousel .heros-carousel-viewport {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 90%;
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  margin-left: 10%;
}

.heros-carousel .heros-carousel-viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.heros-carousel .heros-carousel-viewport:focus-visible {
  outline: 2px solid var(--color-brand-orange);
  outline-offset: 4px;
}

.heros-carousel .heros-carousel-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--hero-gap);
  width: max-content;
  min-width: min-content;
  padding: 0.25rem 0 0.5rem var(--hero-left-offset);
  box-sizing: content-box;
}

.heros-carousel .hero-carousel-item {
  flex: 0 0 auto;
  width: var(--hero-card-size);
  min-width: var(--hero-card-size);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  scroll-snap-align: start;
}

.heros-carousel .hero-carousel-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.heros-carousel .hero-carousel-item img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  scale: 1.5;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.heros-carousel .hero-carousel-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0.65rem 0.5rem 0.95rem;
  text-align: center;
  background: linear-gradient(to top,
      rgba(9, 11, 18, 0.94) 0%,
      rgba(255, 168, 92, 0.52) 36%,
      rgba(255, 210, 140, 0.22) 58%,
      transparent 80%);
  box-shadow:
    inset 0 -0.5rem 3rem rgba(255, 160, 82, 0.55),
    inset 0 0 4rem rgba(255, 198, 120, 0.28);
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.heros-carousel .hero-carousel-item__title {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.05vw, 0.9rem);
  line-height: 1.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0f3f8;
  text-shadow:
    0 0.1rem 0.45rem rgba(0, 0, 0, 0.9),
    0 0 0.85rem rgba(255, 200, 130, 0.95),
    0 0 1.6rem rgba(255, 150, 70, 0.75);
}

.heros-carousel .hero-carousel-item:hover,
.heros-carousel .hero-carousel-item:has(a:focus-visible) {
  box-shadow:
    inset 0 0 0 2px rgba(255, 190, 120, 0.95),
    inset 0 0 3.25rem rgba(255, 165, 88, 0.62),
    inset 0 0 5.5rem rgba(255, 210, 145, 0.38),
    inset 0 -4rem 4.5rem rgba(255, 140, 65, 0.35);
  transition: box-shadow 0.38s ease;
}

.heros-carousel .hero-carousel-item:hover img,
.heros-carousel .hero-carousel-item:has(a:focus-visible) img {
  transform: scale(1.06);
}

.heros-carousel .hero-carousel-item:hover .hero-carousel-item__overlay,
.heros-carousel .hero-carousel-item:has(a:focus-visible) .hero-carousel-item__overlay {
  opacity: 1;
}

.heros-carousel .heros-carousel-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 1.15rem 0 0;
}

.heros-carousel .heros-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 2.5rem;
  padding: 0;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background: #7f8088;
  color: #6b3ea0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: none;
  box-shadow: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.heros-carousel .heros-carousel-btn:hover {
  background: #8e8e98;
  transform: translateY(-1px);
}

.heros-carousel .heros-carousel-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
}

.heros-carousel .heros-carousel-btn.is-next {
  border-radius: 0 50% 50% 0;
}

.coop-promo-shell {
  position: relative;
  z-index: 20;
  overflow: visible;
  padding: 6em 0 4em;
}

.coop-promo {
  position: relative;
  z-index: 1;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.coop-promo__inner {
  position: relative;
  z-index: 1;
  min-height: 34rem;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 3.25rem);
  padding: 0 clamp(2rem, 3vw, 3rem);
}

.coop-promo__content {
  text-align: center;
  padding-left: clamp(0rem, 2vw, 1rem);
}

.coop-promo__content h2 {
  font-size: clamp(1.85rem, 2.2vw, 2.15rem);
  line-height: 0.96;
  white-space: nowrap;
  margin: 0 auto 0.95rem;
  max-width: none;
}

.coop-promo__content p {
  max-width: 100%;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 1.2em;
}



.coop-promo__logo {
  width: clamp(11.75rem, 13vw, 12.75rem);
  margin: 0 auto 1rem;
}

.coop-promo--logo-above .coop-promo__logo {
  margin: 0 auto 0.75rem;
}

.coop-promo--logo-below .coop-promo__logo {
  margin: 0.85rem auto 1rem;
}

/* Allow swapping which side the art image appears on. */
.coop-promo--image-left .coop-promo__content {
  grid-column: 2;
}

.coop-promo--image-left .coop-promo__art {
  grid-column: 1;
}

/* Digital-style left-art variant: avoid stretched backgrounds and align copy like a side panel. */
.coop-promo--image-left {
  background-size: cover;
  background-position: center;
}

.coop-promo.coop-promo--image-left .coop-promo__inner {
  /* Figma â€œDice Throne Digitalâ€ band is taller than the default coop promo. */
  min-height: clamp(38rem, 46vw, 44rem) !important;
}

.coop-promo--image-left .coop-promo__content {
  text-align: left;
  padding-left: 0;
  padding-right: clamp(0rem, 2vw, 1rem);
}

.coop-promo--image-left .coop-promo__content h2 {
  white-space: normal;
  margin-left: 0;
  margin-right: 0;
}

.coop-promo--image-left .coop-promo__logo {
  margin-left: 0;
  margin-right: 0;
}

.coop-promo--image-left .coop-promo__content p {
  margin-left: 0;
  margin-right: 0;
}

.coop-promo--image-left .coop-promo__content .button {
  justify-content: flex-start;
}

.coop-promo--image-left .coop-promo__art {
  justify-content: flex-start;
}

.coop-promo--image-left .coop-promo__character {
  left: -2rem;
  right: auto;
  top: auto;
  bottom: -3rem;
  transform: scale(1.18);
  transform-origin: left bottom;
  height: calc(100% + 10rem);
}

/* Dice Throne Digital: Fallen Barbarian art treatment (page-scoped). */
body.page-dice-throne-digital .wp-block-dt-adventures-promo .coop-promo__character {
  position: absolute !important;
  bottom: 0% !important;
  left: -135% !important;
  right: auto !important;
  top: auto !important;
  transform: scale(3.5) !important;
  transform-origin: left bottom !important;
}

.coop-promo__art {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100%;
}

/* Center of the right column (second 50% of the promo row). Scaled so the
   figure bleeds past the background band top and bottom. */
.coop-promo__character {
  position: absolute;
  z-index: 24;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.14);
  width: auto;
  height: calc(100% + 6rem);
  max-height: none;
  filter: drop-shadow(0 1.15rem 1.65rem rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.discover-more {
  padding: 3.75rem 0 4.5rem;
}

.discover-more h2 {
  margin-bottom: 1.875rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.discover-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 23.4375rem);
  justify-content: center;
  gap: 1.25rem;
}

.discover-card {
  background: #000;
  overflow: hidden;
  min-height: 40.625rem;
}

.discover-card__media {
  position: relative;
  height: 20.3125rem;
  overflow: hidden;
  background: #3f1820;
}

.discover-card__media>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-card__media--cards {
  background: #181d2a;
}

.discover-card__media--logo {
  display: grid;
  place-items: center;
  background: #8e2432;
}

.discover-card__media--logo>img {
  width: 72%;
  height: auto;
  object-fit: contain;
}

.discover-card__media--latest>img {
  filter: saturate(1.05);
}

.discover-card__body {
  height: 20.3125rem;
  padding: 1.875rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.discover-card__body h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.discover-card__body p {
  margin: 0 auto 1.5rem;
  max-width: none;
  font-size: 1.375rem;
  line-height: 1.2727;
}

.discover-card__body .button {
  margin: 0 auto;
}

.site-footer {
  background: #2b3142;
  padding: 1.875rem 1.5rem;
  text-align: center;
}

.site-footer__newsletter p {
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.625rem;
}

.site-footer__form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.site-footer__form input {
  width: min(100%, 18.75rem);
  height: 3rem;
  border: 1px solid #49556d;
  border-radius: 0.25rem;
  background: #f4f6fb;
  color: #111722;
  padding: 0 1.5rem;
}

.site-footer__form input:focus {
  outline: none;
}

.site-footer__form input:focus-visible {
  outline: none;
  border-color: #f26b2b;
  box-shadow: 0 0 0 2px rgba(242, 107, 43, 0.35);
}

.site-footer__form .button {
  min-width: 5.75rem;
  justify-content: center;
}

.site-footer__form-status {
  flex-basis: 100%;
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
}

.site-footer__form-status.is-success {
  color: #7ee0a0;
}

.site-footer__form-status.is-error {
  color: #ff9d7a;
}

.site-footer__social {
  justify-content: center;
  gap: 1.25rem;
  margin: 0.4375rem 0 1.1875rem;
}

.site-footer__social .wp-social-link,
.site-footer__social .wp-block-social-link.wp-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
}

.site-footer__social .wp-block-social-link-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__social .wp-block-social-link-anchor svg {
  display: block;
  margin: 0;
  width: 1.125rem;
  height: 1.125rem;
}

.site-footer__links .wp-block-navigation__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.8125rem;
}

.site-footer__links .wp-block-navigation-item {
  position: relative;
}

.site-footer__links .wp-block-navigation-item:not(:last-child)::after {
  content: "|";
  margin-left: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

.site-footer__links .wp-block-navigation-item__content {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__copyright,
.site-footer__address {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.875rem;
  line-height: 1.4;
}

.site-footer__copyright {
  margin-bottom: 1rem;
}

.site-footer__payments {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 0.75rem;
}

.site-footer__payments img {
  width: 3.625rem;
  height: 2.1875rem;
  display: block;
  border-radius: 0.25rem;
}

.parallax-dice-right,
.parallax-dice-left {
  position: absolute;
  z-index: 2;
  right: -88px;
  margin-top: -2em;
  transform: scale(1.4);
}

.parallax-dice-left {
  left: -73px;
  right: auto;
  margin-top: -50em;
}

.motion-ready .scroll-scene {
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.motion-ready .hero__content,
.motion-ready .battle-center-content,
.motion-ready .section-text-media-content,
.motion-ready .section-video-media-content,
.motion-ready .coop-promo__content,
.motion-ready .discover-card,
.motion-ready .hero-carousel-item {
  transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease, box-shadow 0.38s ease;
}

.header-slider {
  --header-slider-control-bottom: clamp(4.75rem, 8vh, 6.5rem);
  --header-slider-copy-width: clamp(28rem, 44vw, 46rem);
  --header-slider-copy-inset: clamp(2rem, 8vw, 8.75rem);
  position: relative;
  z-index: 3;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  background: #070910;
}

.header-slider__viewport,
.header-slider__slide {
  position: absolute;
  inset: 0;
}

.header-slider__slide {
  display: grid;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 1.1s ease;
}

.header-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.header-slider__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.header-slider__background--empty {
  background: radial-gradient(circle at center, rgba(242, 107, 43, 0.25), transparent 34%), #070910;
}

.header-slider__mobile-background {
  display: none;
}

.header-slider__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 72% 52%, rgba(242, 107, 43, 0.24), transparent 28%), radial-gradient(circle at 20% 30%, rgba(83, 148, 218, 0.18), transparent 24%), linear-gradient(90deg, rgba(2, 4, 9, 0.9) 0%, rgba(5, 7, 12, 0.54) 48%, rgba(3, 5, 10, 0.82) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, transparent 30%, rgba(0, 0, 0, 0.76) 100%);
  pointer-events: none;
}

.header-slider__slide[data-show-overlay="false"] .header-slider__shade {
  display: none;
}

.header-slider__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, var(--header-slider-text-column-width, 50fr)) minmax(0, var(--header-slider-image-column-width, 50fr));
  align-items: stretch;
  gap: 0;
  box-sizing: border-box;
  max-width: none;
  width: var(--header-slider-container-width, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.header-slider__slide[data-text-position="right"] .header-slider__inner {
  padding-right: 0;
  padding-left: 0;
}

.header-slider__slide[data-media-position="left"] .header-slider__inner {
  grid-template-columns: minmax(0, var(--header-slider-image-column-width, 50fr)) minmax(0, var(--header-slider-text-column-width, 50fr));
}

.header-slider__slide[data-text-position="right"] .header-slider__copy {
  justify-self: center;
  text-align: center;
  align-items: center;
}

.header-slider__slide[data-media-position="left"] .header-slider__feature {
  order: -1;
}

.header-slider__slide[data-media-position="left"] .header-slider__feature::before {
  left: 6%;
  right: auto;
}

.header-slider__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: center;
  box-sizing: border-box;
  padding-top: calc(var(--nav-height) + clamp(1rem, 4vh, 3rem));
  padding-bottom: clamp(6rem, 11vh, 8rem);
  text-align: center;
  filter: drop-shadow(0 1rem 1.4rem rgba(0, 0, 0, 0.42));
}

.header-slider__copy h1,
.header-slider__copy h2 {
  width: 100%;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-slider__copy p {
  width: 100%;
  max-width: none;
  margin: clamp(1.15rem, 2.2vh, 1.55rem) 0 clamp(1.25rem, 3vh, 2.1rem);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.25vw, 1.375rem);
  font-weight: 400;
  line-height: 1.28;
}

.header-slider__copy .button {
  align-self: center;
}

.header-slider__logo {
  width: min(var(--header-slider-logo-width, clamp(8.75rem, 15vw, 13.75rem)), 100%);
  margin-bottom: clamp(0.9rem, 2vh, 1.4rem);
}

.header-slider__feature {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  margin: 0;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  transform: translate3d(2.5rem, 0, 0) scale(0.96);
  transition: opacity 0.7s ease 0.12s, transform 0.9s ease 0.12s;
}

.header-slider__slide.is-active .header-slider__feature {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.header-slider__slide.is-active .header-slider__feature--empty {
  opacity: 0;
}

.header-slider__feature::before {
  content: "";
  position: absolute;
  width: min(34rem, 72%);
  aspect-ratio: 1;
  right: 6%;
  bottom: 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 107, 43, 0.34), transparent 64%);
  filter: blur(22px);
  pointer-events: none;
}

.header-slider__feature--empty::before {
  content: none;
}

.header-slider__feature img {
  position: relative;
  z-index: 1;
  width: var(--header-slider-image-width, 82%);
  height: auto;
  max-width: 100%;
  max-height: min(76vh, 48rem);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1.4rem 2rem rgba(0, 0, 0, 0.44));
}

.header-slider__feature picture {
  display: contents;
}

.header-slider__controls {
  position: absolute;
  z-index: 100;
  left: 50%;
  bottom: var(--header-slider-control-bottom);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  transform: translateX(-50%);
  pointer-events: auto;
}

.header-slider__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.header-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  pointer-events: auto;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  background: rgba(22, 29, 42, 0.6);
  opacity: 0.6;
}

.header-slider__dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.header-slider__dot::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.header-slider__dot.is-active {
  transform: none;
}

.header-slider__dot.is-active::before {
  border-color: var(--color-brand-orange);
  background: var(--color-brand-orange);
  transform: scale(1.24);
}
