    :root {
      color-scheme: dark;
      --bg: #0d0f15;
      --panel: #151923;
      --text: #f7f7fb;
      --muted: #b8becb;
      --orange: #ff7a1a;
      --blue: #3695ff;
      --line: #2a3040;
      --max: 1180px;
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(900px 500px at 8% 0%, rgba(255, 122, 26, .13), transparent 60%),
        radial-gradient(900px 600px at 100% 15%, rgba(54, 149, 255, .12), transparent 58%), var(--bg);
      color: var(--text);
      line-height: 1.55
    }

    a {
      color: inherit;
      text-decoration: none
    }

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

    .wrap {
      width: min(var(--max), calc(100% - 40px));
      margin: auto
    }

    nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px
    }

    .brand {
      font-weight: 900;
      letter-spacing: .03em;
      font-size: 1.35rem
    }

    .brand span:first-child {
      color: var(--orange)
    }

    .brand span:last-child {
      color: var(--blue)
    }

    .navlinks {
      display: flex;
      gap: 26px;
      color: var(--muted);
      font-weight: 650;
      font-size: .94rem
    }

    .navlinks a:hover {
      color: white
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 14px;
      padding: 13px 18px;
      font-weight: 800;
      border: 1px solid var(--line);
      background: #1b202c;
      color: var(--text);
      font-family: inherit;
      transition: .2s
    }

    .button:hover {
      transform: translateY(-2px);
      border-color: #596177
    }

    .button.primary {
      background: linear-gradient(135deg, var(--orange), #ff9d31);
      color: #15100b;
      border: 0
    }

    .lang-select {
      background: #1b202c;
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 8px 10px;
      font-weight: 700;
      font-size: .85rem;
      font-family: inherit;
      cursor: pointer
    }

    .lang-select:hover {
      border-color: #596177
    }

    .hero {
      min-height: 720px;
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      align-items: center;
      gap: 60px;
      padding: 55px 0 90px
    }

    .eyebrow {
      color: #ff9b4e;
      font-weight: 900;
      letter-spacing: .15em;
      text-transform: uppercase;
      font-size: .9rem
    }

    h1 {
      font-size: clamp(3.2rem, 7vw, 6.7rem);
      line-height: 1.05;
      letter-spacing: -.065em;
      margin: 18px 0 25px
    }

    h1 .blue {
      color: var(--blue)
    }

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

    h1 .gradient {
      color: var(--blue);
      background: linear-gradient(135deg, var(--orange), var(--blue));
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      padding-right: .08em
    }

    .lead {
      font-size: clamp(1.08rem, 2vw, 1.3rem);
      color: var(--muted);
      max-width: 650px
    }

    .weapon {
      font-size: 1.15rem;
      font-weight: 850;
      color: white;
      margin-top: 18px
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px
    }

    .rating {
      margin-top: 22px;
      color: var(--muted);
      font-size: .94rem
    }

    .rating strong {
      color: #fff
    }

    .phone-stage {
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0
    }

    .phone-stage:before {
      content: "";
      position: absolute;
      width: 76%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 122, 26, .35), rgba(54, 149, 255, .34));
      filter: blur(55px);
      pointer-events: none
    }

    .phone {
      position: relative;
      z-index: 2;
      width: min(370px, 78vw);
      border-radius: 38px;
      overflow: hidden;
      box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
      transform: rotate(3deg);
      border: 1px solid rgba(255, 255, 255, .12)
    }

    .phone img {
      width: 100%
    }

    .floating {
      position: absolute;
      z-index: 3;
      background: rgba(22, 25, 35, .88);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .11);
      padding: 12px 16px;
      border-radius: 16px;
      font-weight: 800;
      box-shadow: 0 15px 35px rgba(0, 0, 0, .3)
    }

    .f1 {
      left: 0;
      top: 24%;
      color: #ff9b4e
    }

    .f2 {
      right: 0;
      bottom: 20%;
      color: #78b9ff
    }

    section {
      padding: 47.5px 0
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 46px
    }

    h2 {
      font-size: clamp(2.2rem, 4.5vw, 4.2rem);
      line-height: 1;
      letter-spacing: -.045em;
      margin: 10px 0 18px
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.08rem
    }

    .section-head p.lead-strong {
      color: var(--text);
      font-weight: 700
    }

    .modes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px
    }

    .mode {
      background: linear-gradient(145deg, #171b25, #11141c);
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 34px;
      overflow: hidden;
      position: relative
    }

    .mode .num {
      font-size: .8rem;
      font-weight: 900;
      letter-spacing: .15em;
      color: #8e96a8
    }

    .mode h3 {
      font-size: 2rem;
      margin: 12px 0
    }

    .mode p {
      color: var(--muted);
      max-width: 530px
    }

    .mode.invasion {
      box-shadow: inset 0 3px 0 var(--orange)
    }

    .mode.territory {
      box-shadow: inset 0 3px 0 var(--blue)
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      align-items: start
    }

    .shot {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
      transition: .25s;
      aspect-ratio: 471/1021
    }

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

    .shot:hover {
      transform: translateY(-7px)
    }

    .shot:nth-child(even) {
      margin-top: 34px
    }

    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px
    }

    .feature {
      padding: 25px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 20px
    }

    .feature .icon {
      font-size: 1.5rem
    }

    .feature h3 {
      margin: 12px 0 7px
    }

    .feature p {
      color: var(--muted);
      font-size: .93rem;
      margin: 0
    }

    .languages {
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 42px;
      background: linear-gradient(120deg, rgba(255, 122, 26, .09), rgba(54, 149, 255, .09));
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center
    }

    .flags {
      font-size: 2rem;
      line-height: 1.7;
      letter-spacing: .1em
    }

    .cta {
      text-align: center;
      padding: 57.5px 0
    }

    .cta h2 {
      max-width: 850px;
      margin: 0 auto 20px
    }

    .cta p {
      color: var(--muted);
      max-width: 650px;
      margin: 0 auto 30px
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 35px 0 50px;
      color: #8e96a8;
      font-size: .9rem
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap
    }

    .social-links {
      display: flex;
      gap: 16px;
      align-items: center
    }

    .social-links img {
      height: 20px;
      width: auto;
      display: block;
      transition: .2s
    }

    .social-links a:hover img {
      opacity: 1
    }

    .store-badges {
      align-items: center
    }

    .store-badge {
      height: 54px;
      display: block;
      border-radius: 10px;
      overflow: hidden;
      transition: .2s
    }

    .store-badge:hover {
      transform: translateY(-2px)
    }

    .store-badge img {
      height: 100%;
      width: auto;
      display: block
    }

    .video-facade {
      position: relative;
      width: 380px;
      max-width: 100%;
      min-width: 0;
      aspect-ratio: 380/475;
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
      border: 1px solid rgba(255, 255, 255, .12)
    }

    .video-facade img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .video-facade .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 78px;
      height: 78px;
      border-radius: 50%;
      background: rgba(13, 15, 21, .6);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .3);
      transition: .2s
    }

    .video-facade .play-btn svg {
      width: 26px;
      height: 26px;
      margin-left: 3px;
      flex-shrink: 0
    }

    .video-facade:hover .play-btn {
      background: var(--orange);
      transform: translate(-50%, -50%) scale(1.08)
    }

    .video-embed {
      width: 380px;
      max-width: 100%;
      aspect-ratio: 380/475;
      border-radius: 24px;
      display: block;
      border: 1px solid rgba(255, 255, 255, .12)
    }

    .cookie-banner {
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 16px;
      max-width: 640px;
      margin: 0 auto;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px 22px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
      z-index: 50;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      justify-content: space-between
    }

    .cookie-banner[hidden] {
      display: none
    }

    .sticky-cta {
      display: none
    }

    @media(max-width:640px) {
      .sticky-cta {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        background: var(--panel);
        border-top: 1px solid var(--line);
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        box-shadow: 0 -10px 30px rgba(0, 0, 0, .35);
        transform: translateY(100%);
        transition: transform .25s ease
      }

      .sticky-cta.visible {
        transform: translateY(0)
      }

      .sticky-cta .button {
        width: 100%
      }
    }

    .cookie-banner p {
      margin: 0;
      font-size: .86rem;
      color: var(--muted);
      flex: 1 1 260px
    }

    .cookie-banner a {
      text-decoration: underline
    }

    .cookie-actions {
      display: flex;
      gap: 10px
    }

    .cookie-banner .button {
      padding: 9px 16px;
      font-size: .85rem
    }

    @media(max-width:980px) {
      .hero {
        grid-template-columns: 1fr;
        padding-top: 30px
      }

      .hero-copy {
        text-align: center
      }

      .lead {
        margin-inline: auto
      }

      .hero-actions {
        justify-content: center
      }

      .phone-stage {
        min-height: 580px
      }

      .gallery {
        grid-template-columns: repeat(3, 1fr)
      }

      .features {
        grid-template-columns: repeat(2, 1fr)
      }

      .languages {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:640px) {
      .wrap {
        width: calc(100% - 28px)
      }

      .navlinks {
        display: none
      }

      nav {
        height: auto;
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 10px;
        padding: 14px 0;
        gap: 10px
      }

      nav .button {
        padding: 9px 13px;
        font-size: .85rem
      }

      .lang-select {
        padding: 6px 8px;
        font-size: .8rem
      }

      .hero {
        gap: 20px;
        min-height: auto;
        padding-bottom: 55px
      }

      h1 {
        font-size: clamp(3.1rem, 17vw, 5rem)
      }

      .phone-stage {
        min-height: 510px
      }

      .floating {
        font-size: .8rem
      }

      .f1 {
        left: -5px
      }

      .f2 {
        right: -5px
      }

      section {
        padding: 34px 0
      }

      .modes {
        grid-template-columns: 1fr
      }

      .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
      }

      .shot:nth-child(even) {
        margin-top: 0
      }

      .features {
        grid-template-columns: 1fr
      }

      .languages {
        padding: 27px
      }

      .flags {
        font-size: 1.55rem
      }

      .cta {
        padding: 40px 0
      }

      .store-badge {
        height: 46px
      }

      .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px
      }
    }
