
    :root {
      --bg: #0a0e1a;
      --bg2: #10162b;
      --neon: #00ff9d;
      --neon2: #7b5cff;
      --text: #eef2ff;
      --muted: #9aa6c2;
      --card: #141b30;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, Arial, sans-serif;
      -webkit-tap-highlight-color: transparent
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      text-align: center;
      overflow-x: hidden
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes pop {
      0% {
        opacity: 0;
        transform: scale(.7)
      }

      70% {
        transform: scale(1.06)
      }

      100% {
        opacity: 1;
        transform: scale(1)
      }
    }

    @keyframes glowPulse {

      0%,
      100% {
        box-shadow: 0 0 25px rgba(0, 255, 157, .25)
      }

      50% {
        box-shadow: 0 0 45px rgba(0, 255, 157, .55)
      }
    }

    @keyframes ballBounce {
      0% {
        transform: translate(-120px, -10px) rotate(0deg)
      }

      50% {
        transform: translate(0, -40px) rotate(360deg)
      }

      100% {
        transform: translate(120px, -10px) rotate(720deg)
      }
    }

    @keyframes ballShadow {

      0%,
      100% {
        transform: translateX(-120px) scaleX(1);
        opacity: .4
      }

      50% {
        transform: translateX(0) scaleX(.6);
        opacity: .15
      }
    }

    @keyframes floatBadge {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    @keyframes wmDrift {
      0% {
        background-position: 0 0
      }

      100% {
        background-position: 240px 240px
      }
    }

    @keyframes wmFade {

      0%,
      100% {
        opacity: .05
      }

      50% {
        opacity: .12
      }
    }

    @keyframes btnPulse {

      0%,
      100% {
        box-shadow: 0 8px 30px rgba(0, 255, 157, .35)
      }

      50% {
        box-shadow: 0 10px 45px rgba(0, 255, 157, .65)
      }
    }

    @keyframes lineMove {
      0% {
        transform: translateX(-100%)
      }

      100% {
        transform: translateX(100%)
      }
    }

    /* Контент виден по умолчанию. Анимация — только если JS поддерживается */
    .js .reveal {
      opacity: 0
    }

    .js .reveal.show {
      animation: fadeUp .8s ease forwards
    }

    /* ===== WATERMARK (crown mosaic) ===== */
    .wm-bg {
      position: relative;
      overflow: hidden
    }

    .wm-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%237b5cff' stroke-width='4' opacity='0.9'><path d='M30 78 L24 40 L42 58 L60 34 L78 58 L96 40 L90 78 Z'/><circle cx='24' cy='34' r='4' fill='%237b5cff'/><circle cx='60' cy='28' r='4' fill='%237b5cff'/><circle cx='96' cy='34' r='4' fill='%237b5cff'/></g></svg>");
      background-size: 140px 140px;
      animation: wmDrift 22s linear infinite, wmFade 6s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    .wm-bg>* {
      position: relative;
      z-index: 1
    }

    /* ===== TOP BAR ===== */
    .topbar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px;
      background: rgba(10, 14, 26, .85);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(123, 92, 255, .25);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: linear-gradient(135deg, #7b5cff, #4a2cff);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 15px rgba(123, 92, 255, .6);
    }

    .logo-mark svg {
      width: 20px;
      height: 20px
    }

    .logo-text {
      font-weight: 800;
      font-size: 20px;
      letter-spacing: .5px
    }

    /* ===== HERO ===== */
    .hero {
      background:
        radial-gradient(circle at 50% -10%, rgba(0, 255, 157, .18), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(123, 92, 255, .18), transparent 50%),
        linear-gradient(180deg, #0a0e1a, #10162b);
      padding: 50px 18px 50px;
      position: relative;
      border-bottom: 1px solid rgba(0, 255, 157, .2);
    }

    .badge {
      display: inline-block;
      border: 1px solid var(--neon);
      color: var(--neon);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 22px;
      box-shadow: 0 0 18px rgba(0, 255, 157, .25);
      animation: floatBadge 3s ease-in-out infinite, pop .8s ease;
    }

    h1 {
      font-size: 38px;
      line-height: 1.15;
      max-width: 760px;
      margin: 0 auto 18px;
      font-weight: 800;
      animation: fadeUp 1s ease both;
    }

    h1 span {
      background: linear-gradient(90deg, var(--neon), var(--neon2));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .sub {
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 30px;
      font-size: 17px;
      animation: fadeUp 1.2s ease both
    }

    /* FOOTBALL FIELD + BALL */
    .field {
      width: 100%;
      max-width: 520px;
      height: 260px;
      margin: 0 auto 34px;
      border-radius: 20px;
      background:
        linear-gradient(180deg, rgba(0, 255, 157, .05), transparent),
        repeating-linear-gradient(90deg, #0e7a3f 0 50px, #0b6836 50px 100px);
      border: 2px solid rgba(0, 255, 157, .35);
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 50px rgba(0, 255, 157, .2);
      animation: pop 1s ease both, glowPulse 4s ease-in-out infinite;
    }

    .field .center-line {
      position: absolute;
      top: 0;
      left: 50%;
      width: 3px;
      height: 100%;
      background: rgba(255, 255, 255, .55);
      transform: translateX(-50%)
    }

    .field .center-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 110px;
      height: 110px;
      border: 3px solid rgba(255, 255, 255, .55);
      border-radius: 50%;
      transform: translate(-50%, -50%)
    }

    .field .goal-l,
    .field .goal-r {
      position: absolute;
      top: 50%;
      width: 24px;
      height: 90px;
      border: 3px solid rgba(255, 255, 255, .55);
      transform: translateY(-50%)
    }
.goal-r{
    background-color: #ffffff;
    filter: blur(1px);
    height: 25px;
    width: 25px;
    bottom: 70px;
}
    .field .goal-l {
      left: 0;
      border-left: none
    }

    .field .goal-r {
         right: 0;
    border-right: none;
    bottom: 40px;
    left: 50%;
    width: 40px;
    height: 20px;
    border-radius: 50%;
    background: rgb(255 255 255);
    filter: blur(4px);
    animation: ballShadow 2.4s ease-in-out infinite alternate;
    }

    .btn {
      display: inline-block;
      background: linear-gradient(90deg, var(--neon), var(--neon2));
      color: #04121e;
      font-weight: 800;
      font-size: 17px;
      padding: 18px 44px;
      border-radius: 50px;
      text-decoration: none;
      letter-spacing: .5px;
      text-transform: uppercase;
      transition: .25s;
      animation: btnPulse 2.5s ease-in-out infinite;
    }

    .btn:active {
      transform: scale(.96)
    }

    .promo {
      margin-top: 20px;
      font-size: 14px;
      color: var(--muted)
    }

    .promo b {
      color: var(--neon);
      letter-spacing: 1px
    }

    /* ===== SECTIONS ===== */
    .section {
      padding: 55px 18px;
      max-width: 740px;
      margin: 0 auto
    }

    .section h2 {
      font-size: 28px;
      margin-bottom: 22px
    }

    .section h2 span {
      color: var(--neon)
    }

    .story p {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 18px
    }

    .quote {
      border-left: 3px solid var(--neon);
      background: var(--card);
      padding: 22px;
      border-radius: 12px;
      font-style: italic;
      color: var(--text);
      margin: 28px auto;
      max-width: 620px;
      box-shadow: 0 0 30px rgba(0, 255, 157, .1);
    }

    .divider {
      width: 80px;
      height: 3px;
      margin: 0 auto 30px;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--neon), var(--neon2));
      overflow: hidden;
      position: relative
    }

    .divider::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, .6);
      animation: lineMove 2.5s linear infinite
    }

    /* STEPS */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 26px;
      max-width: 560px;
      margin: 0 auto
    }

    .step {
      background: var(--card);
      border: 1px solid rgba(123, 92, 255, .2);
      border-radius: 18px;
      padding: 26px 22px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
    }

    .step .ico {
     width: 57px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 22px rgba(0, 255, 157, .4);
    }

    .step h3 {
      font-size: 19px;
      margin-bottom: 10px
    }

    .step p {
      color: var(--muted);
      font-size: 15px
    }

    /* REVIEWS */
    .reviews {
      background: var(--bg2);
      padding: 55px 18px;
      border-top: 1px solid rgba(0, 255, 157, .15);
      border-bottom: 1px solid rgba(0, 255, 157, .15)
    }

    .review-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 22px;
      max-width: 1000px;
      margin: 0 auto
    }

    .review {
      background: var(--card);
      border-radius: 18px;
      padding: 28px 22px;
      width: 300px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, .06);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    }

    .review img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 14px;
      display: block;
      border: 2px solid var(--neon);
      box-shadow: 0 0 18px rgba(0, 255, 157, .4);
    }

    .review .name {
      font-weight: 700;
      font-size: 17px
    }

    .review .loc {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 10px
    }

    .stars {
      color: #ffc83d;
      font-size: 18px;
      margin-bottom: 12px
    }

    .review p {
      color: var(--muted);
      font-size: 15px
    }

    /* FINAL */
    .final {
      background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 157, .2), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(123, 92, 255, .15), transparent 60%),
        linear-gradient(180deg, #10162b, #0a0e1a);
      padding: 65px 18px;
      position: relative;
      overflow: hidden;
    }

    .final h2 {
      font-size: 32px;
      margin-bottom: 14px
    }

    .final p {
      color: var(--muted);
      font-size: 17px;
      max-width: 540px;
      margin: 0 auto 28px
    }

    .promo-box {
      display: inline-block;
      border: 2px dashed var(--neon);
      border-radius: 14px;
      padding: 14px 32px;
      margin-bottom: 28px;
      font-size: 20px;
      letter-spacing: 2px;
      color: var(--neon);
      font-weight: 800;
      animation: glowPulse 3s ease-in-out infinite;
    }

    footer {
      padding: 28px 18px;
      color: #5a6585;
      font-size: 12px;
      max-width: 700px;
      margin: 0 auto
    }

    /* ===== iPHONE ADAPTATION ===== */
    @media(max-width:600px) {
      h1 {
        font-size: 28px;
        line-height: 1.2
      }

      .sub {
        font-size: 15px
      }

      .section {
        padding: 42px 16px
      }

      .section h2,
      .final h2 {
        font-size: 23px
      }

      .field {
        height: 200px
      }

      .ball {
        width: 34px;
        height: 34px
      }

      .ball::before {
        font-size: 27px
      }

      .btn {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 330px
      }

      .review {
        width: 100%;
        max-width: 340px
      }

      .story p {
        font-size: 16px
      }

      .quote {
        font-size: 16px;
        padding: 18px
      }

      .step {
        padding: 22px 18px
      }

      @keyframes ballBounce {
        0% {
          transform: translate(-80px, -6px) rotate(0)
        }

        50% {
          transform: translate(0, -28px) rotate(360deg)
        }

        100% {
          transform: translate(80px, -6px) rotate(720deg)
        }
      }
    }

    @media(max-width:380px) {
      h1 {
        font-size: 25px
      }

      .logo-text {
        font-size: 18px
      }
    }
