@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

:root {
  --sf-bg: #111111;
  --sf-point: #f2b824;
  --sf-btn: #4a4036;
  --sf-white: #ffffff;
  --sf-gray: #696969;
  --sf-light-gray: #969696;
  --sf-border: #535353;
  --sf-card-bg: #1d1d1d;
  --sf-event-blue: #475182;
  --sf-event-blue-text: #9aa6e2;
  --sf-event-red: #6b373c;
  --sf-event-red-text: #9a5d63;
  --sf-coming-bg: #322c27;
  --font-primary: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Impact', 'Arial Black', sans-serif;
  --overlap-hero-countdown: 200px;
  --overlap-countdown-trailer: 120px;
  --overlap-trailer-gameintro: 110px;
  --overlap-gameintro-characters: 140px;
  --overlap-characters-events: 150px;
}

body {
  font-family: var(--font-primary);
  background: var(--sf-bg);
  color: var(--sf-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1850px, calc(100% - 70px));
  height: 100px;
  background: rgba(17, 17, 17, 0.1);
  border: 1px solid var(--sf-point);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 95px 0 93px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.nav.is-hidden {
  transform: translate(-50%, -130%);
  opacity: 0;
  pointer-events: none;
}

.nav__logo {
  width: 219px;
  height: 92px;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 70px;
}

.nav__toggle {
  display: none;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 3px 2px;
  flex-direction: column;
  justify-content: space-between;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sf-white);
}

.nav__link {
  font-size: 27px;
  font-weight: 500;
  color: var(--sf-white);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--sf-point);
}

/* ========== SECTION COMMON ========== */
.section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

.section__title {
  font-size: 75px;
  font-weight: 800;
  text-align: center;
  color: var(--sf-white);
}

.section-line {
  width: 120px;
  height: 2px;
  object-fit: contain;
}

.mobile-break {
  display: none;
}

/* ========== SECTION 1: HERO ========== */
.hero {
  height: 1097px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 240px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, transparent, var(--sf-bg));
  z-index: 0;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero__content {
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__title {
  font-size: 95px;
  font-weight: 500;
  text-shadow: 0 0 15px black;
  letter-spacing: -0.95px;
  line-height: 1;
}

.hero__line {
  display: inline;
}

.hero__title strong {
  font-weight: 900;
}

.hero__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 730px;
}

.hero__divider-line {
  width: 700px;
  height: 1px;
}

.hero__divider-gradient {
  width: 100%;
  height: 60px;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0),
    rgba(17, 17, 17, 0.8) 50%,
    rgba(17, 17, 17, 0)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__subtitle {
  font-size: 35px;
  font-weight: 500;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.35px;
}

.hero__arrow {
  width: 60px;
  height: 51px;
  margin-top: 40px;
  animation: bounce 2s ease-in-out infinite;
}

/* ========== SECTION 2: COUNTDOWN ========== */
.countdown {
  min-height: 844px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 130px 0 200px;
  background: var(--sf-bg);
  overflow: visible;
  z-index: 2;
  clip-path: inset(-200px -150px 0 -150px);
}

.countdown::before {
  content: '';
  position: absolute;
  top: calc(var(--overlap-hero-countdown) * -1);
  left: 0;
  width: 100%;
  height: calc(var(--overlap-hero-countdown) + 80px);
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 0%,
    rgba(17, 17, 17, 0.65) 48%,
    rgba(17, 17, 17, 0.95) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* bg_mask 컨테이너 — Bg 7을 CSS mask로 사용 */
.countdown__bg-mask {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 2200px;
    height: 2564px;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: url('/Content/Landing/assets/images/bg_mask.png');
    mask-image: url('/Content/Landing/assets/images/bg_mask.png');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--sf-bg);
}

/* 병사 실루엣 배경 */
.countdown__bg-char {
  position: absolute;
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
  width: 1842px;
  height: 945px;
  object-fit: cover;
  opacity: 0.2;
}

/* 더스트 텍스처 */
.countdown__bg-dust {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 1939px;
  height: 1294px;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: difference;
}

.countdown__logo {
  width: 500px;
  height: 210px;
  object-fit: contain;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.countdown__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-display);
  font-size: 200px;
  color: var(--sf-white);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.countdown__colon {
  display: flex;
  align-items: flex-end;
  height: 113px;
  width: 41px;
  justify-content: center;
  line-height: 1;
}

.countdown__date {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.countdown__date-line {
  width: 284px;
  height: 1px;
}

.countdown__date-text {
  font-size: 35px;
  font-weight: 500;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.35px;
}

.countdown__buttons {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.btn-cta {
  width: 500px;
  height: 120px;
  background: var(--sf-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--sf-point);
}

.btn-cta:hover .btn-cta__text {
  color: var(--sf-bg);
}

.btn-cta__icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.btn-cta__icon--epic {
  width: 68px;
  height: 73px;
}

.btn-cta__text {
  font-size: 37px;
  font-weight: 800;
  color: var(--sf-white);
  transition: color 0.3s;
}

/* ========== SECTION 3: TRAILER ========== */
.trailer {
  min-height: 1188px;
  background: #322d27;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 73px 0 120px;
  position: relative;
  z-index: 3;
  overflow: visible;
}

.trailer__bg-mask {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.trailer__bg-mask-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: soft-light;
  opacity: 0.4;
}

.trailer__bg-char {
  position: absolute;
  top: -135px;
  right: -70px;
  width: 851px;
  height: 914px;
  object-fit: contain;
  transform: rotate(12.8deg);
  opacity: 0.8;
  z-index: 1;
  filter: drop-shadow(-10px 10px 10px rgba(0, 0, 0, 0.2));
}

.trailer__title {
  font-size: 75px;
  font-weight: 800;
  margin-bottom: 50px;
  z-index: 2;
}

.trailer__video-wrap {
  width: 1100px;
  height: 600px;
  border: 1px solid #4a4a4a;
  background: #4a4a4a;
  z-index: 2;
  position: relative;
}

.trailer__video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.trailer__desc {
  font-size: 35px;
  font-weight: 500;
  margin-top: 30px;
  z-index: 2;
}

.trailer__desc-break {
  display: none;
}

/* ========== SECTION 4 & 5: GAME INTRO ========== */
.game-intro {
  padding: calc(120px + var(--overlap-trailer-gameintro)) 0 10px;
  margin-top: calc(var(--overlap-trailer-gameintro) * -1);
  background: var(--sf-bg);
  position: relative;
  z-index: 4;
  overflow: visible;
}

.game-intro::before,
.game-intro::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.game-intro::before {
  top: calc(var(--overlap-trailer-gameintro) * -1);
  height: calc(var(--overlap-trailer-gameintro) + 170px);
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 0%,
    rgba(17, 17, 17, 0.45) 38%,
    rgba(17, 17, 17, 0.88) 100%
  );
  z-index: 0;
}

.game-intro::after {
  bottom: -140px;
  height: 340px;
  background:
    linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.9) 0%,
      rgba(17, 17, 17, 0.58) 54%,
      rgba(17, 17, 17, 0.16) 100%
    ),
    url('/Content/Landing/assets/images/bg_mask.png') center bottom / cover no-repeat;
  opacity: 0.98;
  transform: scaleY(-1);
  transform-origin: center;
  z-index: 1;
}

.game-intro__bg-mask {
  position: absolute;
  inset: 0;
  top: -155px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background: url('/Content/Landing/assets/images/nervgas4.png') center top / cover no-repeat;
  -webkit-mask-image: url('/Content/Landing/assets/images/bg_mask.png');
  mask-image: url('/Content/Landing/assets/images/bg_mask.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: #222223;
}

.game-intro__bg-dust {
  display: none;
}

.game-intro__model-left {
  position: absolute;
  left: -222px;
  top: -160px;
  width: 910px;
  height: auto;
  clip-path: inset(0 0 0 222px);
  z-index: 1;
  filter: drop-shadow(15px 1px 10px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.game-intro__model-right {
  position: absolute;
  right: -100px;
  bottom: -939px;
  width: 590px;
  height: auto;
  clip-path: inset(0 102px 0 0);
  z-index: 1;
  pointer-events: none;
}

.game-intro__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.game-intro__cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 287px;
}

/* Original cards (section 4) */
.card-original {
  width: 510px;
  border: 0.5px solid var(--sf-border);
  position: relative;
}

.card-original__inner {
  background: var(--sf-card-bg);
  margin: 5px;
  padding: 0;
  height: 582px;
}

.card-original__media {
  width: 100%;
  height: 298px;
  object-fit: cover;
  display: block;
}

.card-original__body {
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-original__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--sf-point);
  letter-spacing: -0.96px;
  line-height: 30px;
}

.card-original__quote {
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: -0.75px;
}

.card-original__desc {
  font-size: 23px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: -0.69px;
}

.card-new {
  width: 500px;
  position: relative;
}

.card-new__inner {
  background: linear-gradient(
    145deg,
    rgb(29, 29, 29) 15.6%,
    rgba(29, 29, 29, 0.3) 86.2%
  );
  backdrop-filter: blur(30px);
  border: 2px solid #585858;
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.15);
  height: 535px;
  position: relative;
  overflow: hidden;
}

.card-new__media {
  width: 100%;
  height: 298px;
  object-fit: cover;
  display: block;
  padding: 10px 12px 0;
}

.card-new__body {
  padding: 38px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.card-new__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--sf-point);
  letter-spacing: -0.96px;
  line-height: 30px;
}

.card-new__quote {
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: -0.75px;
}

.card-new__desc {
  font-size: 23px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: -0.69px;
}

.card-new__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--sf-point);
}

/* ========== SECTION 6: CHARACTERS ========== */
.characters {
  min-height: 1200px;
  height: auto;
  position: relative;
  padding: 30px 0 calc(200px + var(--overlap-characters-events));
  margin-top: calc(var(--overlap-gameintro-characters) * -1);
  z-index: 5;
  overflow: visible;
  margin-bottom: calc(var(--overlap-characters-events) * -1);
}

.characters__title {
  font-size: 75px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.characters__title strong {
  font-weight: 800;
}

.characters__title-particle,
.characters__title-break {
  font-weight: 300;
}

.characters__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  filter: blur(0.6px);
  pointer-events: none;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.characters__bg-mask {
  position: absolute;
  inset: 0;
  top: 0;
  bottom: 0;
  height: auto;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
  background-color: #222223;
}

.characters__bg-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 1;
}

.characters__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 100px;
  padding: 0 340px;
}

.characters__grid {
  display: grid;
  grid-template-columns: repeat(2, 174px);
  row-gap: 64px;
  column-gap: 25px;
  margin-bottom: 64px;
}

.characters__thumb {
  width: 174px;
  height: 174px;
  border: 1px solid var(--sf-btn);
  background: var(--sf-bg);
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.characters__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.characters__thumb-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 81.78%,
    var(--sf-point) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.characters__thumb:hover .characters__thumb-gradient,
.characters__thumb.active .characters__thumb-gradient {
  opacity: 1;
}

.characters__thumb-emblem {
  position: absolute;
  bottom: -50%;
  pointer-events: none;
}

.characters__info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.characters__info-marc {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.characters__info-text {
  display: flex;
  flex-direction: column;
}

.characters__info-country {
  font-size: 40px;
  font-weight: 900;
  color: var(--sf-point);
}

.characters__info-name {
  font-size: 40px;
  font-weight: 500;
}

.characters__main {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.characters__main-image {
  width: 657px;
  height: 1058px;
  position: absolute;
  left: 56%;
  top: 52%;
  object-fit: contain;
  object-position: center top;
  opacity: 0.94;
  filter: drop-shadow(-8px 12px 30px rgba(0, 0, 0, 0.35));
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.characters__main-image.is-entering {
  animation: character-slide-in 560ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.characters__main-image.is-swapping {
  opacity: 0;
  animation: none !important;
  transition: none;
}

@keyframes character-slide-in {
  from {
    opacity: 0;
    transform: translate(calc(-50% + 90px), -50%);
  }
  to {
    opacity: 0.94;
    transform: translate(-50%, -50%);
  }
}

.characters__main-image--baekho,
.characters__main-image--sayeret,
.characters__main-image--spetsnaz,
.characters__main-image--devgru {
  left: 61%;
  top: 78%;
}

/* ========== SECTION 7 & 8: EVENTS ========== */
.event-section {
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.event-section--ice {
  z-index: 6;
  overflow: visible;
}

.event-section--ice::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #111;
  -webkit-mask-image: url('/Content/Landing/assets/images/bg_mask.png');
  mask-image: url('/Content/Landing/assets/images/bg_mask.png');
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-size: auto;
  mask-size: auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.event-section--ice > * {
  position: relative;
  z-index: 1;
}

.event-section__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-section__block--ice {
  position: relative;
}

.event-section__block--fire {
  position: relative;
  margin-top: 202px;
  padding-bottom: 94px;
  overflow: visible;
  z-index: 2;
}

.event-section__block--fire::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1920px;
  height: 1421px;
  transform: translateX(-50%);
  background: url('/Content/Landing/assets/images/fire_effect.png') center bottom / contain no-repeat;
  mix-blend-mode: lighten;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

.event-section__block--fire > * {
  position: relative;
  z-index: 2;
}

.event-section__title-light {
  font-size: 75px;
  font-weight: 300;
  text-align: center;
  line-height: 1;
}

.event-section__title-bold {
  font-size: 75px;
  font-weight: 800;
  text-align: center;
  color: var(--sf-point);
}

.event-section__desc {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

.event-section__gun-wrap {
  position: relative;
  width: 813px;
  height: 586px;
}

.event-section__gun-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-section__gun-img {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 682px;
  height: auto;
  object-fit: contain;
}

.event-section__gun-wrap--fire {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 910px;
  height: 600px;
  overflow: visible;
  z-index: 2;
}

.event-section__gun-wrap--fire .event-section__gun-img {
  position: relative;
  top: -75px;
  left: auto;
  transform: none;
  width: 910px;
  z-index: 3;
}

.event-section__snow {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: color-dodge;
}

.event-section__snow--large {
  top: 184px;
  left: 0;
}

.event-section__snow--small {
  width: 293px;
  height: 282px;
  top: 24px;
  right: 140px;
  transform: rotate(-15deg);
  opacity: 0.3;
}

.btn-event {
  width: 485px;
  height: 129px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: -129px;
}

.btn-event__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid;
  padding: 5px;
}

.btn-event__border-inner {
  width: 100%;
  height: 100%;
  border: 3.5px solid;
}

.btn-event--blue .btn-event__border,
.btn-event--blue .btn-event__border-inner {
  border-color: var(--sf-event-blue);
}

.btn-event--blue .btn-event__text {
  color: var(--sf-event-blue-text);
}

.btn-event--red .btn-event__border,
.btn-event--red .btn-event__border-inner {
  border-color: var(--sf-event-red);
}

.btn-event--red .btn-event__text {
  color: var(--sf-event-red-text);
}

.btn-event__text {
  font-size: 37px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.btn-event__arrow {
  width: 12px;
  height: 21px;
  transform: rotate(180deg);
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}

.btn-event:hover .btn-event__arrow {
  animation: arrowNudge 0.6s ease infinite;
}

/* Event gradient backgrounds */
.event-section--ice {
  background:
    url('/Content/Landing/assets/images/cafe_event_bg.png') center top / cover no-repeat,
    #030a34;
}

/* ========== SECTION 9: COMING SOON ========== */
.coming-soon {
  min-height: 1050px;
  background: var(--sf-coming-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.coming-soon__bg-guns {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.coming-soon__gun {
  width: 550px;
  height: auto;
  object-fit: contain;
}

.coming-soon__gun--1 {
  transform: rotate(23.78deg);
}

.coming-soon__gun--2 {
  transform: rotate(13.39deg);
  margin-top: -30px;
}

.coming-soon__btn-disabled {
  width: 485px;
  height: 129px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.coming-soon__btn-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #353535;
  padding: 5px;
}

.coming-soon__btn-fill {
  width: 100%;
  height: 100%;
  background: #4f4f4f;
}

.coming-soon__btn-text {
  font-size: 37px;
  font-weight: 800;
  color: #bfbfbf;
  position: relative;
  z-index: 1;
}

.coming-soon__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.coming-soon__lock {
  width: 150px;
  height: 211px;
  object-fit: contain;
  margin-bottom: 20px;
}

.coming-soon__overlay-title {
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  color: var(--sf-point);
}

.coming-soon__overlay-desc {
  font-size: 35px;
  font-weight: 400;
}

.coming-soon__title-light {
  font-size: 75px;
  font-weight: 300;
  color: var(--sf-light-gray);
  text-align: center;
  line-height: 1;
}

.coming-soon__title-bold {
  font-size: 75px;
  font-weight: 800;
  color: var(--sf-gray);
  text-align: center;
}

/* ========== SECTION 10: POSITION TEST ========== */
.position-test {
  height: 1100px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 100px;
}

.position-test__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.position-test__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

.position-test__chars {
  width: 1310px;
  height: 722px;
  object-fit: contain;
  z-index: 1;
}

.btn-test {
  width: 485px;
  height: 129px;
  padding: 42px 125px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-top: -170px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-test:hover {
  opacity: 0.85;
}

.btn-test__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sf-point);
  padding: 5px;
}

.btn-test__fill {
  width: 100%;
  height: 100%;
  background: var(--sf-point);
}

.btn-test__text {
  font-size: 37px;
  font-weight: 800;
  color: var(--sf-bg);
  position: relative;
  z-index: 1;
}

/* ========== SECTION 11: EARLY ACCESS ========== */
.early-access {
  min-height: 1200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 100px;
  overflow: visible;
}

.early-access::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 1280px;
  background:
    url('/Content/Landing/assets/images/early_access_bg.png') center top / cover no-repeat,
    #111111;
  -webkit-mask-image: url('/Content/Landing/assets/images/bg_mask.png');
  mask-image: url('/Content/Landing/assets/images/bg_mask.png');
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-size: auto;
  mask-size: auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.early-access > * {
  position: relative;
  z-index: 1;
}

.early-access__top-bar {
  width: 730px;
  height: 68px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.early-access__top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.early-access__top-text {
  font-size: 35px;
  font-weight: 500;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.35px;
  position: relative;
  z-index: 1;
}

.early-access__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.early-access__date {
  font-size: 80px;
  font-weight: 800;
  color: var(--sf-point);
}

.early-access__label {
  font-size: 65px;
  font-weight: 500;
}

.early-access__global {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}

.early-access__slider {
  position: relative;
  width: 1020px;
  height: 410px;
  margin: 0 auto 40px;
}

.early-access__slider-track {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.early-access__slider-inner {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.early-access__slide {
  width: 1020px;
  height: 100%;
  flex-shrink: 0;
  display: block;
}

.early-access__slider-img {
  width: 1020px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  -webkit-user-drag: none;
  user-select: none;
}

.early-access__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s;
  background: none;
  border: none;
}

.early-access__slider-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.early-access__slider-arrow--prev {
  left: -100px;
}

.early-access__slider-arrow--next {
  right: -100px;
}

.early-access__slider-arrow img {
  width: 100%;
  height: 100%;
}

.early-access__slider-dots {
  display: none;
}

.early-access__buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.early-access__icons {
  display: flex;
  gap: 15px;
}

.early-access__icon {
  width: 65px;
  height: 65px;
  cursor: pointer;
  transition: transform 0.3s;
}

.early-access__icon:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  right: 55px;
  bottom: 60px;
  width: 88px;
  height: 88px;
  border: 3px solid var(--sf-point);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.72);
  color: var(--sf-point);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
  z-index: 1100;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.back-to-top__arrow {
  width: 18px;
  height: 18px;
  border-top: 5px solid currentColor;
  border-right: 5px solid currentColor;
  transform: rotate(-45deg);
  margin-top: 6px;
}

.back-to-top__label {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.25px;
}

/* ========== SECTION 12: FOOTER ========== */
.footer {
  height: 360px;
  background: var(--sf-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 26px;
}

.footer__logo-company {
  width: 150px;
  height: 96px;
  object-fit: contain;
}

.footer__logo-rating {
  width: 90px;
  height: 104px;
  object-fit: contain;
}

.footer__info {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 15px;
  color: #acacac;
  margin-top: 6px;
}

.footer__info-mobile {
  display: none;
}

.footer__copyright {
  font-size: 15px;
  font-weight: 600;
  color: var(--sf-gray);
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .mobile-break {
    display: block;
  }

  html,
  body {
    width: 100dvw;
    max-width: 100dvw;
    overflow-x: hidden;
  }

  #main-content,
  main {
    width: 100dvw;
    max-width: 100dvw;
    margin: 0;
  }

  :root {
    --overlap-hero-countdown: 36px;
    --overlap-countdown-trailer: 0px;
    --overlap-trailer-gameintro: 0px;
    --overlap-gameintro-characters: 0px;
    --overlap-characters-events: 0px;
  }

  body {
    max-width: none;
  }

  .section,
  .footer {
    width: 100dvw;
    max-width: 100dvw;
    margin: 0;
    left: 0;
    transform: none;
  }

  .section__title {
    font-size: 32px;
  }

  .nav,
  .nav.is-open {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100vw;
    max-width: 100vw;
    height: 40px;
    border: none;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: none;
    padding: 0 12px;
    margin: 0;
  }

  .nav.is-hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
  }

  .nav__logo {
    width: 71px;
    height: 30px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(17, 17, 17, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
  }

  .back-to-top {
    display: none;
  }

  .nav.is-open .nav__menu {
    display: flex;
  }

  .nav__menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__link {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
  }

  .hero {
    height: 460px;
    justify-content: flex-start;
    padding-top: 250px;
    padding-bottom: 0;
  }

  .hero::after {
    height: 110px;
  }

  .hero__title {
    font-size: 43px;
    line-height: 46px;
    letter-spacing: -0.43px;
  }

  .hero__line {
    display: block;
  }

  .hero__divider {
    width: calc(100% - 130px);
    max-width: 230px;
  }

  .hero__divider-line {
    width: 100%;
  }

  .hero__divider-gradient {
    height: 25px;
    padding: 0 10px;
  }

  .hero__subtitle {
    font-size: 10px;
    letter-spacing: -0.1px;
    white-space: nowrap;
  }

  .hero__arrow {
    display: none;
  }

  .countdown {
    height: 364px;
    min-height: auto;
    padding: 18px 16px 34px;
    clip-path: none;
    overflow: visible;
    z-index: 2;
  }

  .countdown::before {
    content: '';
    position: absolute;
    top: -44px;
    left: 50%;
    width: 100vw;
    height: 96px;
    transform: translateX(-50%);
    background-color: #111;
    -webkit-mask-image: url('/Content/Landing/assets/images/mo/bg_mask.png');
    mask-image: url('/Content/Landing/assets/images/mo/bg_mask.png');
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.95;
    z-index: 0;
    pointer-events: none;
  }

  .countdown__bg-mask {
    z-index: 0;
  }

  .countdown__logo,
  .countdown__timer,
  .countdown__date,
  .countdown__buttons {
    position: relative;
    z-index: 2;
  }

  .countdown__bg-mask {
    top: -12px;
    width: 430px;
    height: 501px;
  }

  .countdown__bg-char {
    top: 20px;
    width: 734px;
    height: 364px;
  }

  .countdown__bg-dust {
    top: 24px;
    width: 546px;
    height: auto;
  }

  .countdown__logo {
    width: 150px;
    height: auto;
    margin-bottom: 12px;
  }

  .countdown__timer {
    gap: 0;
    font-size: 65px;
    margin-bottom: 10px;
  }

  .countdown__colon {
    width: 41px;
    height: 35px;
    align-items: flex-end;
  }

  .countdown__date {
    gap: 0;
    margin-bottom: 14px;
  }

  .countdown__date-line {
    display: none;
  }

  .countdown__date-text {
    font-size: 17px;
    letter-spacing: -0.17px;
  }

  .countdown__buttons {
    width: 100%;
    max-width: 328px;
    gap: 16px;
    justify-content: space-between;
  }

  .btn-cta {
    width: 156px;
    height: 40px;
    gap: 5px;
  }

  .btn-cta__icon {
    width: 26px;
    height: 26px;
  }

  .btn-cta__icon--epic {
    width: 21px;
    height: 23px;
  }

  .btn-cta__text {
    font-size: 12px;
  }

  .trailer {
    min-height: auto;
    padding: 66px 16px 48px;
  }

  .trailer::before {
    height: 120px;
  }

  .trailer__bg-char {
    top: -22px;
    right: -56px;
    width: 180px;
    height: auto;
  }

  .trailer__title {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .trailer__video-wrap {
    width: 100%;
    max-width: 328px;
    height: auto;
    aspect-ratio: 311 / 170;
  }

  .trailer__desc {
    font-size: 15px;
    margin-top: 10px;
    text-align: center;
    line-height: 1.33;
  }

  .trailer__desc-break {
    display: inline;
  }

  .game-intro {
    padding: 42px 0 48px;
    margin-top: 0;
    overflow: visible;
  }

  .game-intro::after {
    display: none;
  }

  .game-intro::before {
    display: none;
  }

  .game-intro__model-left {
    width: 252px;
    left: -65px;
    top: -50px;
    clip-path: inset(0 0 0 65px);
  }

  .game-intro__model-right {
    width: 252px;
    right: -101px;
    bottom: 357px;
  }

  .game-intro__header {
    margin-bottom: 18px;
    gap: 0;
  }

  .game-intro__header .section-line {
    display: none;
  }

  .game-intro__cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
  }

  .card-original {
    width: 280px;
  }

  .card-original__inner {
    height: 330px;
    margin: 4px;
  }

  .card-original__media {
    width: 260px;
    height: 150px;
    margin: 2px auto 0;
  }

  .card-original__body {
    padding: 24px 20px 16px;
    gap: 2px;
  }

  .card-original__title,
  .card-new__title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.6px;
  }

  .card-original__quote,
  .card-new__quote {
    font-size: 17px;
    line-height: 30px;
    letter-spacing: -0.51px;
  }

  .card-original__desc,
  .card-new__desc {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.45px;
  }

  .card-new {
    width: 280px;
  }

  .card-new__inner {
    height: 330px;
  }

  .card-new__media {
    width: 260px;
    height: 150px;
    padding: 0;
    margin: 2px auto 0;
  }

  .card-new__body {
    padding: 24px 20px 16px;
    gap: 2px;
  }

  .card-new__accent {
    height: 4px;
  }

  .characters {
    min-height: auto;
    padding-bottom: 48px;
    margin-top: -40px;
  }

  .characters::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 210px;
    background: url('/Content/Landing/assets/images/mo/bg_mask.png') center top / 100% 100%
      no-repeat;
    opacity: 0.95;
    z-index: 0;
    pointer-events: none;
  }

  .characters__title {
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 8px;
  }

  .characters__title-particle {
    display: inline;
  }

  .characters__title-break {
    display: block;
  }

  .characters__content {
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: center;
  }

  .characters__content > div:first-child {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -44px;
    z-index: 3;
  }

  .characters__main {
    order: 1;
    position: relative;
    inset: auto;
    width: 100%;
    min-height: clamp(320px, 96vw, 360px);
    z-index: 2;
  }

  .characters__main-image,
  .characters__main-image--baekho,
  .characters__main-image--sayeret,
  .characters__main-image--spetsnaz,
  .characters__main-image--devgru {
    width: clamp(200px, 63.9vw, 230px);
    height: clamp(352px, 112.5vw, 405px);
    left: 50%;
    top: 66%;
    transform: translate(-50%, -50%);
    opacity: 0.96;
    object-fit: contain;
  }

  .characters__info {
    order: 1;
    width: 160px;
    height: 33px;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 10px;
    background: linear-gradient(
      90deg,
      rgba(17, 17, 17, 0) 0%,
      rgba(17, 17, 17, 1) 35%,
      rgba(17, 17, 17, 1) 65%,
      rgba(17, 17, 17, 0) 100%
    );
  }

  .characters__info-marc {
    width: 23px;
    height: 23px;
  }

  .characters__info-country {
    font-size: 13px;
    line-height: 1;
  }

  .characters__info-name {
    font-size: 13px;
    line-height: 1;
  }

  .characters__info-text {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .characters__grid {
    order: 2;
    width: calc(100% - 32px);
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 0;
  }

  .characters__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-color: #4a4036;
    overflow: visible;
  }

  .characters__thumb img {
    bottom: -50%;
  }

  .characters__thumb-emblem {
    width: 75%;
    max-width: 56px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
  }

  .event-section {
    min-height: auto;
    padding: 53px 0 60px;
    overflow: hidden;
  }

  .event-section--ice {
    margin-top: 0;
    padding-top: 53px;
    overflow: visible;
    background:
      linear-gradient(
        180deg,
        #111111 0%,
        #03092c 43.75%,
        #240303 100%
      ),
      url('/Content/Landing/assets/images/cafe_event_bg.png') center top / cover no-repeat;
  }

  .event-section--ice::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 100vw;
    height: 96px;
    transform: translateX(-50%);
    background-color: #111;
    -webkit-mask-image: url('/Content/Landing/assets/images/mo/bg_mask.png');
    mask-image: url('/Content/Landing/assets/images/mo/bg_mask.png');
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.95;
    z-index: 0;
    pointer-events: none;
  }

  .event-section__block {
    width: 100%;
    max-width: 360px;
    padding: 0 16px;
  }

  .event-section__block--ice {
    position: relative;
    z-index: 2;
    margin-bottom: 58px;
  }

  .event-section__block--fire {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-bottom: 0;
  }

  .event-section__title-light,
  .event-section__title-bold {
    font-size: 32px;
    line-height: 1.1;
  }

  .event-section__desc {
    font-size: 15px;
    line-height: 20px;
    margin-top: 7px;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .event-section__gun-wrap {
    width: 300px;
    height: 216px;
    margin: 12px auto 14px;
  }

  .event-section__gun-img {
    width: 252px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .event-section__gun-wrap--fire {
    width: 354px;
    height: 265px;
    margin: 10px auto 12px;
    position: relative;
    overflow: visible;
  }

  .event-section__gun-wrap--fire .event-section__gun-img {
    width: 354px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    z-index: 2;
  }

  .event-section__block--fire::before {
    display: none;
  }

  .event-section__gun-wrap--fire::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('/Content/Landing/assets/images/fire_effect.png') center center / contain
      no-repeat;
    mix-blend-mode: lighten;
    pointer-events: none;
    z-index: 1;
  }

  .btn-event {
    width: 188px;
    height: 35px;
    margin-top: -35px;
  }

  .btn-event__border {
    padding: 0;
    border-width: 2px;
  }

  .btn-event__border-inner {
    display: none;
  }

  .btn-event__text {
    font-size: 13px;
  }

  .btn-event__arrow {
    width: 5px;
    height: 9px;
  }

  .event-section__snow--large {
    width: 300px;
    height: 289px;
    top: 195px;
    left: -75px;
  }

  .event-section__snow--small {
    width: 80px;
    height: 77px;
    right: 3px;
    top: 121px;
  }

  .coming-soon {
    min-height: 443px;
    padding: 65px 0 45px;
  }

  .coming-soon__title-light,
  .coming-soon__title-bold {
    font-size: 35px;
  }

  .coming-soon .event-section__desc {
    color: var(--sf-light-gray);
  }

  .coming-soon__gun {
    width: 131px;
  }

  .coming-soon__btn-disabled {
    width: 158px;
    height: 40px;
    margin-top: 8px;
  }

  .coming-soon__btn-border {
    padding: 3px;
  }

  .coming-soon__btn-text {
    font-size: 15px;
  }

  .coming-soon__overlay {
    min-height: 100%;
  }

  .coming-soon__lock {
    width: 70px;
    height: 98px;
    margin-bottom: 22px;
  }

  .coming-soon__overlay-title {
    font-size: 35px;
  }

  .coming-soon__overlay-desc {
    font-size: 17px;
    text-align: center;
    line-height: 21px;
    margin-top: 3px;
  }

  .position-test {
    height: 100%;
    padding: 65px 0 65px;
    overflow: hidden;
    background:
      url('/Content/Landing/assets/images/mo/position_test_bg.png') center top / cover
        no-repeat,
      #322c27;
  }

  .position-test::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(70, 56, 42, 0.58) 0%,
      rgba(62, 46, 35, 0.44) 34%,
      rgba(50, 38, 30, 0.26) 58%,
      rgba(17, 17, 17, 0.08) 100%
    );
    z-index: 0;
    pointer-events: none;
  }

  .position-test::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 210px;
    background: linear-gradient(
      180deg,
      rgba(17, 17, 17, 0) 0%,
      rgba(17, 17, 17, 0.55) 48%,
      #111111 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .position-test__bg {
    display: none;
  }

  .position-test__bg img {
    object-position: center top;
    mix-blend-mode: normal;
  }

  .position-test .event-section__title-light,
  .position-test .event-section__title-bold {
    font-size: 27px;
    line-height: 1.16;
  }

  .position-test .event-section__desc {
    margin-top: 8px;
    font-size: 15px;
    line-height: 20px;
    padding: 0 20px;
  }

  .position-test__chars {
    width: 420px;
    height: 231px;
    z-index: 2;
  }

  .btn-test {
    width: 156px;
    height: 35px;
    margin-top: -47px;
    padding: 0;
    z-index: 3;
  }

  .btn-test__border {
    border: none;
    padding: 0;
  }

  .btn-test__text {
    font-size: 13px;
  }

  .early-access {
    min-height: 640px;
    padding: 0 0 58px;
  }

  .early-access::before {
    top: -40px;
    height: 700px;
    -webkit-mask-size: 550px 641px;
    mask-size: 550px 641px;
    background-position: center top;
  }

  .early-access::after {
    content: '';
    position: absolute;
    top: -22px;
    left: 50%;
    width: 100vw;
    height: 44px;
    transform: translateX(-50%);
    background-color: #141414;
    -webkit-mask-image: url('/Content/Landing/assets/images/mo/bg_mask.png');
    mask-image: url('/Content/Landing/assets/images/mo/bg_mask.png');
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.95;
    z-index: 1;
    pointer-events: none;
  }

  .early-access > * {
    z-index: 2;
  }

  .early-access__top-bar {
    width: 230px;
    height: 27px;
    margin-bottom: 12px;
  }

  .early-access__top-text {
    font-size: 13px;
    letter-spacing: -0.13px;
  }

  .early-access__heading {
    flex-direction: column;
    gap: 0;
    margin-bottom: 6px;
    text-align: center;
  }

  .early-access__date {
    font-size: 42px;
    line-height: 1;
  }

  .early-access__label {
    font-size: 32px;
    line-height: 1;
  }

  .early-access__global {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .early-access__slider {
    width: calc(100% - 32px);
    height: 200px;
    margin-bottom: 12px;
    border: 1px solid #414141;
    background: #111;
  }

  .early-access__slider-img {
    width: 100%;
    height: 200px;
  }

  .early-access__slide {
    width: calc(100vw - 32px);
    height: 200px;
  }

  .early-access__slider-arrow {
    display: none;
  }

  .early-access__slider-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }

  .early-access__slider-track {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
  }

  .early-access__buttons {
    width: 100%;
    max-width: none;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .early-access__buttons .btn-cta {
    width: calc((100% - 8px) / 2);
  }

  .early-access__buttons .reveal,
  .early-access__buttons .reveal-delay-1 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .early-access__buttons .btn-cta__text {
    white-space: nowrap;
  }

  .early-access__icons {
    gap: 14px;
  }

  .early-access__icons a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .early-access__icon {
    width: 100%;
    height: 100%;
  }

  .footer {
    height: auto;
    padding: 60px 16px 50px;
    background: #131313;
  }

  .footer__logos {
    gap: 15px;
    margin-bottom: 18px;
  }

  .footer__logo-company {
    width: 107px;
    height: auto;
  }

  .footer__logo-rating {
    width: 64px;
    height: auto;
  }

  .footer__info {
    display: block;
    font-size: 13px;
    line-height: 19px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer__info span {
    display: block;
  }

  .footer__info--pc {
    display: none;
  }

  .footer__info-mobile {
    display: block;
    font-size: 13px;
    line-height: 19px;
    text-align: center;
    color: #acacac;
  }

  .footer__info-mobile p {
    white-space: nowrap;
  }

  .footer__copyright {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin-top: 16px;
  }
}


/* ========== SECTION 9: GUN COLLECTION EVENT ========== */
.gun-event {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 40px 120px;
    background: #111111;
    overflow: hidden;
}

.gun-event__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gun-event__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gun-event__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(23, 23, 23, 1) 0%, rgba(17, 17, 17, 0) 100%);
}

/* 타이틀 */
.gun-event__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    text-align: center;
}

    /* 제목 두 줄 간격 - 피그마 기준 line-height으로만 간격 조절 */
    .gun-event__header .event-section__title-light,
    .gun-event__header .event-section__title-bold {
        margin: 0;
        line-height: 89.5px;
    }

.gun-event__desc {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    line-height: 35.8px;
    margin-top: 20px;
}

/* 이벤트 기간 바 */
.gun-event__period {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 74px;
    width: 635px;
}

/* 피그마: GRADIENT_LINEAR stroke, weight 1.5, transparent→#5E5E5E→transparent */
.gun-event__period-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, rgba(144, 144, 144, 0), rgba(94, 94, 94, 1) 50%, rgba(144, 144, 144, 0));
}

.gun-event__period-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 15px 70px;
    white-space: nowrap;
}

.gun-event__period-value {
    font-size: 30px;
    font-weight: 500;
    color: #949494;
    letter-spacing: -0.9px;
    line-height: 35.8px;
}

.gun-event__period-highlight {
    font-weight: 800;
    color: #f2b824;
}

/* 총기 전시 */
.gun-event__prizes {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    align-items: flex-end;
}

.gun-event__prize-wrap {
    position: relative;
    padding-top: 37px;
}

.gun-event__prize-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f2b824;
    border-radius: 100px;
    padding: 13px 35px;
    font-size: 40px;
    font-weight: 800;
    color: #141414;
    line-height: 47.7px;
    white-space: nowrap;
    z-index: 2;
}

.gun-event__prize-box {
    position: relative;
    background: rgba(17, 17, 17, 0.7);
    width: 867px;
    height: 395px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gun-event__prize-box--bonus {
    background: rgba(17, 17, 17, 1);
    width: 472px;
}

/* 금색 코너 브라켓 */
.gun-event__corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

    .gun-event__corner::before,
    .gun-event__corner::after {
        content: '';
        position: absolute;
        background: #f2b824;
    }

.gun-event__corner--tl {
    top: 0;
    left: 0;
}

    .gun-event__corner--tl::before {
        width: 3px;
        height: 20px;
        top: 0;
        left: 0;
    }

    .gun-event__corner--tl::after {
        width: 20px;
        height: 3px;
        top: 0;
        left: 0;
    }

.gun-event__corner--tr {
    top: 0;
    right: 0;
}

    .gun-event__corner--tr::before {
        width: 20px;
        height: 3px;
        top: 0;
        right: 0;
    }

    .gun-event__corner--tr::after {
        width: 3px;
        height: 20px;
        top: 0;
        right: 0;
    }

.gun-event__corner--bl {
    bottom: 0;
    left: 0;
}

    .gun-event__corner--bl::before {
        width: 3px;
        height: 20px;
        bottom: 0;
        left: 0;
    }

    .gun-event__corner--bl::after {
        width: 20px;
        height: 3px;
        bottom: 0;
        left: 0;
    }

.gun-event__corner--br {
    bottom: 0;
    right: 0;
}

    .gun-event__corner--br::before {
        width: 20px;
        height: 3px;
        bottom: 0;
        right: 0;
    }

    .gun-event__corner--br::after {
        width: 3px;
        height: 20px;
        bottom: 0;
        right: 0;
    }

/* 박스 사이 화살표 */
.gun-event__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 68px;
    height: 118px;
    align-self: center;
    margin-top: 37px;
}

    .gun-event__arrow img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* 총기 이미지 */
.gun-event__guns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    gap: 0;
}

.gun-event__gun {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 225px;
    object-fit: contain;
    object-position: center;
}

.gun-event__gun--bonus {
    flex: none;
    width: 100%;
    height: 281px;
}

/* 한정판 박스 glow 효과 이미지 */
.gun-event__bonus-glow {
    position: absolute;
    width: 650px;
    height: 433px;
    object-fit: contain;
    pointer-events: none;
    mix-blend-mode: lighten;
}

/* 이벤트 정보 */
.gun-event__info {
    position: relative;
    z-index: 1;
    width: 1128px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gun-event__info-row {
    display: flex;
    gap: 27px;
    align-items: flex-start;
}

.gun-event__info-label {
    flex: 0 0 154px;
    font-size: 35px;
    font-weight: 800;
    color: #f2b824;
    line-height: 45px;
    letter-spacing: -1.05px;
}

.gun-event__info-content {
    flex: 1;
    font-size: 27px;
    font-weight: 400;
    color: #939393;
    line-height: 45px;
    letter-spacing: -0.81px;
}

    .gun-event__info-content p {
        margin: 0;
        white-space: nowrap;
    }

.gun-event__info-num {
    color: #acacac;
    font-weight: 700;
}

/* 02 주의사항 - 두 번째 줄 자동 들여쓰기 (br 없이 CSS로 처리) */
.gun-event__info-content p.gun-event__info-content--wrap {
    white-space: normal;
    padding-left: 2.5em;
    text-indent: -2.5em;
}






@media (max-width: 1100px) {
    /* gun-event mobile */
    .gun-event {
        padding: 60px 20px 80px;
    }

    /* 1. 제목 간격 - 모바일도 동일하게 line-height으로만 */
    .gun-event__header .event-section__title-light,
    .gun-event__header .event-section__title-bold {
        font-size: 35px;
        line-height: 44px;
    }

    .gun-event__desc {
        font-size: 15px;
        line-height: 22px;
        margin-top: 12px;
    }

    /* 2. 이벤트 기간 바 - 모바일 */
    .gun-event__period {
        width: 100%;
        margin-bottom: 40px;
        padding: 0;
    }

    .gun-event__period-inner {
        gap: 12px;
        padding: 10px 20px;
        white-space: nowrap;
    }

    .gun-event__period-label,
    .gun-event__period-value {
        font-size: 13px;
        line-height: 1.4;
        letter-spacing: -0.4px;
    }

    .gun-event__period-divider {
        height: 14px;
    }

    .gun-event__prizes {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
        width: 100%;
    }

    .gun-event__prize-wrap {
        width: 100%;
    }

    .gun-event__prize-badge {
        font-size: 18px;
        line-height: 1.2;
        padding: 8px 20px;
    }

    .gun-event__prize-box {
        width: 100%;
        height: 160px;
    }

    .gun-event__prize-box--bonus {
        width: 100%;
        height: 160px;
    }

    .gun-event__arrow {
        width: 40px;
        height: 40px;
        margin-top: 0;
        transform: rotate(90deg);
    }

    .gun-event__gun--bonus {
        width: auto;
        height: 100%;
        max-width: 80%;
        object-fit: contain;
    }

    /* 3종 총기도 모바일 박스에 맞게 */
    .gun-event__gun {
        height: 130px;
    }

    .gun-event__info {
        width: 100%;
        gap: 20px;
    }

    .gun-event__info-row {
        flex-direction: column;
        gap: 8px;
    }

    .gun-event__info-label {
        flex: none;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: -0.5px;
    }

    /* 3. 모바일에서 info-content는 줄바꿈 허용 */
    .gun-event__info-content {
        font-size: 13px;
        line-height: 22px;
        letter-spacing: -0.4px;
    }

        .gun-event__info-content p {
            white-space: normal;
        }
}