
    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      background: #000;
      color: #fff;
      font-family: Arial, Helvetica, sans-serif;
      overflow-x: hidden;
    }

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

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

    .page {
      width: 100%;
      min-height: 100vh;
      background: #000;
    }

    .hero {
      width: 100%;
      max-width: 1480px;
      margin: 0 auto;
      padding: 0 24px 120px;
      background: #000;
    }

    .hero-top-line {
      width: 100%;
      height: 4px;
      background: #ff0f5b;
      margin-bottom: 14px;
    }

    .hero-card {
      position: relative;
      min-height: 690px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.82) 30%, rgba(0,0,0,0.32) 58%, rgba(0,0,0,0.10) 100%),
        url('images/1.webp') center center / cover no-repeat;
    }

    .nav {
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 20px;
    }

    .logo {
      height: 34px;
      width: auto;
      object-fit: contain;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-radius: 16px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-top {
      min-width: 156px;
      height: 40px;
      padding: 0 24px;
      font-size: 16px;
    }

    .btn-primary {
      background: #ff0f5b;
      color: #fff;
      border: 1px solid #ff0f5b;
    }

    .btn-secondary {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.92);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 640px;
      padding: 56px 0 40px 145px;
    }

    .hero-title {
      margin: 0;
      font-size: 78px;
      line-height: 0.94;
      font-weight: 800;
      letter-spacing: -2px;
      text-transform: uppercase;
    }

    .hero-subtitle {
      margin: 18px 0 0;
      font-size: 17px;
      line-height: 1.35;
      color: rgba(255,255,255,0.88);
    }

    .cta-main {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 246px;
      margin-top: 38px;
      padding: 8px 18px 9px;
      border-radius: 16px;
      background: #ff0f5b;
      color: #fff;
      line-height: 1;
    }

    .cta-main-title {
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .cta-main-sub {
      font-size: 12px;
      font-weight: 500;
      margin-top: 2px;
      opacity: 0.98;
    }

    .section-title {
      margin: 26px auto 0;
      max-width: 1280px;
      padding: 34px 20px 0;
      text-align: center;
      font-size: 30px;
      line-height: 1.2;
      font-weight: 700;
      color: #fff;
    }

    .mobile-hero-image,
    .mobile-sticky-bar {
      display: none;
    }

    .games-info-section {
      max-width: 980px;
      margin: 0 auto;
      padding: 34px 20px 0;
      text-align: center;
    }

    .games-info-lead,
    .games-info-text {
      margin: 0 auto 22px;
      max-width: 1080px;
      font-size: 18px;
      line-height: 1.3;
      color: rgba(255,255,255,0.82);
    }

    .games-info-title,
    .games-subtitle {
      margin: 0 0 14px;
      font-size: 32px;
      line-height: 1.15;
      font-weight: 700;
      color: #fff;
    }

    .games-subtitle {
      margin-top: 22px;
    }

    .games-info-text-narrow {
      max-width: 1020px;
    }

    .inline-link {
      color: rgba(255,255,255,0.82);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .category-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin: 10px auto 28px;
      max-width: 920px;
    }

    .category-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 58px;
      padding: 0 18px;
      background: #1d1d1f;
      border-radius: 8px;
      color: #fff;
      font-size: 18px;
      font-weight: 500;
    }

    .category-pill img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 12px;
      max-width: 880px;
      margin: 12px auto 0;
    }

    .game-tile {
      display: block;
      overflow: hidden;
      background: #111;
    }

    .game-tile img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 1200px) {
      .hero-content {
        padding-left: 90px;
        max-width: 560px;
      }

      .hero-title {
        font-size: 64px;
      }
    }

    @media (max-width: 1024px) {
      .games-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 640px;
      }
    }

    @media (max-width: 767px) {
      .hero {
        max-width: 430px;
        padding: 0 14px 92px;
      }

      .hero-top-line {
        margin-bottom: 0;
      }

      .hero-card {
        min-height: auto;
        background: #000;
        border: 1px solid rgba(255,255,255,0.08);
      }

      .nav {
        justify-content: center;
        padding: 14px 14px 8px;
      }

      .nav-actions {
        display: none;
      }

      .logo {
        height: 32px;
      }

      .hero-content {
        max-width: 100%;
        padding: 10px 18px 0;
        text-align: center;
      }

      .hero-title {
        font-size: 44px;
        line-height: 0.95;
        letter-spacing: -1px;
      }

      .hero-subtitle {
        margin-top: 14px;
        font-size: 16px;
      }

      .cta-main {
        width: 100%;
        max-width: 286px;
        margin-top: 16px;
        padding: 10px 18px 9px;
        border-radius: 16px;
      }

      .cta-main-title {
        font-size: 18px;
      }

      .cta-main-sub {
        font-size: 12px;
      }

      .mobile-hero-image {
        display: block;
        width: 100%;
        margin-top: 10px;
      }

      .mobile-hero-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      .section-title {
        text-align: left;
        font-size: 27px;
        line-height: 1.12;
        padding: 22px 14px 0;
        margin-top: 0;
      }

      .games-info-section {
        padding: 18px 14px 0;
      }

      .games-info-lead,
      .games-info-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.32;
        margin-bottom: 18px;
      }

      .games-info-title,
      .games-subtitle {
        font-size: 28px;
        line-height: 1.08;
        margin-bottom: 12px;
      }

      .category-pills {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 8px 0 26px;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .category-pills::-webkit-scrollbar {
        display: none;
      }

      .category-pill {
        min-height: 52px;
        min-width: 102px;
        padding: 10px 10px 8px;
        gap: 8px;
        font-size: 16px;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        flex: 0 0 auto;
      }

      .category-pill img {
        width: 22px;
        height: 22px;
      }

      .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        max-width: 100%;
      }

      .mobile-sticky-bar {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: calc(100% - 28px);
        max-width: 402px;
        z-index: 999;
        display: flex;
        gap: 14px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(9,9,12,0.97);
        border-top: 1px solid rgba(255,255,255,0.16);
      }

      .mobile-sticky-bar .btn {
        flex: 1;
        height: 44px;
        border-radius: 16px;
        font-size: 17px;
      }
    }
  

.providers-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px 0;
  text-align: center;
}

.providers-title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.providers-text {
  max-width: 1120px;
  margin: 0 auto 18px;
  font-size: 18px;
  line-height: 1.28;
  color: rgba(255,255,255,0.82);
}

.providers-text a {
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.providers-logos {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  max-width: 1160px;
  margin: 18px auto 52px;
}

.provider-logo {
  min-height: 52px;
  background: #1b1b1d;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}

.provider-logo img {
  display: block;
  width: 100%;
  max-width: 112px;
  height: 24px;
  object-fit: contain;
}

.providers-feature-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.providers-feature-card {
  position: relative;
  width: 330px;
  min-height: 420px;
  background: linear-gradient(180deg, #1b1b1d 0%, #1a1a1c 100%);
  border-radius: 12px;
  padding: 224px 26px 26px;
  overflow: hidden;
}

.providers-feature-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 24px;
  width: 235px;
  height: auto;
  display: block;
  z-index: 2;
}

.providers-feature-image.loyalty {
  width: 250px;
  top: 20px;
}

.providers-feature-title {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.providers-feature-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
  color: rgba(255,255,255,0.82);
}

.providers-feature-text a {
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1024px) {
  .providers-logos {
    grid-template-columns: repeat(5, 1fr);
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .providers-section {
    padding: 18px 14px 0;
  }

  .providers-title {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .providers-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.34;
    margin-bottom: 16px;
  }

  .providers-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 100%;
    margin: 18px 0 40px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .providers-logos::-webkit-scrollbar {
    display: none;
  }

  .provider-logo {
    flex: 0 0 auto;
    min-width: 150px;
    min-height: 58px;
    padding: 12px 16px;
  }

  .provider-logo img {
    max-width: 120px;
    height: 26px;
  }

  .providers-feature-cards {
    flex-direction: column;
    gap: 112px;
  }

  .providers-feature-card {
    width: 100%;
    min-height: auto;
    padding: 258px 22px 24px;
    border-radius: 14px;
  }

  .providers-feature-image {
    width: 290px;
    top: 18px;
  }

  .providers-feature-image.loyalty {
    width: 300px;
    top: 12px;
  }

  .providers-feature-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .providers-feature-text {
    font-size: 16px;
    line-height: 1.4;
  }
}


.freeplay-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 20px 0;
  text-align: center;
}

.freeplay-title {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.freeplay-text {
  max-width: 1120px;
  margin: 0 auto 22px;
  font-size: 18px;
  line-height: 1.32;
  color: rgba(255,255,255,0.82);
}

.freeplay-text a {
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.freeplay-subtitle {
  margin: 34px 0 14px;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.new-games-line {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.new-games-line .green {
  color: #00ff57;
}

.freeplay-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  min-height: 64px;
  margin-top: 18px;
  padding: 14px 24px;
  border-radius: 18px;
  background: #ff0f5b;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.freeplay-banner {
  position: relative;
  max-width: 740px;
  margin: 34px auto 0;
  padding: 18px 24px 18px 78px;
  border-radius: 16px;
  border: 2px solid transparent;
  background:
    linear-gradient(90deg, rgba(26,54,0,0.88) 0%, rgba(28,41,0,0.88) 38%, rgba(31,25,54,0.88) 70%, rgba(78,0,24,0.88) 100%) padding-box,
    linear-gradient(90deg, #61ff00 0%, #ffd400 45%, #00b7ff 68%, #ff0f5b 100%) border-box;
}

.freeplay-banner-logo {
  position: absolute;
  left: -14px;
  top: -14px;
  width: 72px;
  height: auto;
}

.freeplay-banner-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.freeplay-banner-title .mark {
  background: rgba(255,255,255,0.2);
  padding: 0 6px;
}

.freeplay-banner-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
}

.freeplay-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1260px;
  margin: 44px auto 0;
}

.freeplay-card {
  display: block;
  background: #1c1c1f;
  border-radius: 14px;
  padding: 16px 16px 14px;
  min-height: 128px;
}

.freeplay-card-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.freeplay-card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 1024px) {
  .freeplay-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .freeplay-section {
    padding: 34px 14px 0;
  }

  .freeplay-title,
  .freeplay-subtitle {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .freeplay-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.34;
    margin-bottom: 20px;
  }

  .new-games-line {
    font-size: 22px;
    line-height: 1.12;
    margin-top: 22px;
  }

  .freeplay-cta {
    width: 100%;
    max-width: 520px;
    min-height: 66px;
    font-size: 19px;
    margin-top: 18px;
  }

  .freeplay-banner {
    max-width: 100%;
    margin-top: 28px;
    padding: 22px 16px 18px;
  }

  .freeplay-banner-logo {
    left: -10px;
    top: -12px;
    width: 62px;
  }

  .freeplay-banner-title {
    font-size: 22px;
    line-height: 1.15;
    padding-left: 18px;
  }

  .freeplay-banner-text {
    font-size: 16px;
    line-height: 1.32;
    padding-left: 0;
  }

  .freeplay-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    margin-top: 28px;
  }

  .freeplay-card {
    min-height: 138px;
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .freeplay-card-title {
    font-size: 20px;
  }

  .freeplay-card-text {
    font-size: 15px;
    line-height: 1.3;
  }
}


.reviews-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px 0;
  text-align: center;
}

.reviews-title {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.reviews-text {
  max-width: 1120px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.32;
  color: rgba(255,255,255,0.82);
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.review-card {
  background: #1b1b1d;
  border-radius: 12px;
  padding: 20px 18px 18px;
  min-height: 280px;
  text-align: center;
}

.review-avatar {
  width: 92px;
  height: 92px;
  margin: -40px auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

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

.review-name {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.review-location {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.review-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.28;
  color: rgba(255,255,255,0.82);
}

.join-section {
  max-width: 1180px;
  margin: 34px auto 0;
  text-align: center;
}

.join-title {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 700;
  color: #fff;
}

.join-text {
  max-width: 1120px;
  margin: 0 auto 18px;
  font-size: 18px;
  line-height: 1.32;
  color: rgba(255,255,255,0.82);
}

.join-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  min-height: 64px;
  padding: 14px 24px;
  border-radius: 18px;
  background: #ff0f5b;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .reviews-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 36px 14px 0;
  }

  .reviews-title,
  .join-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .reviews-text,
  .join-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.34;
  }

  .reviews-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews-cards::-webkit-scrollbar {
    display: none;
  }

.review-card {
  flex: 0 0 auto;
  width: 280px;
  min-height: 402px;
  padding: 58px 16px 18px;
  overflow: visible;
}

.review-avatar {
  width: 104px;
  height: 104px;
  margin: 0 auto 12px;
}

  .review-name {
    font-size: 20px;
  }

  .review-location {
    font-size: 13px;
  }

  .review-text {
    font-size: 15px;
    line-height: 1.26;
  }

  .join-section {
    margin-top: 34px;
    padding: 0 6px;
  }

  .join-cta {
    width: 100%;
    max-width: 520px;
    min-height: 66px;
    font-size: 19px;
  }
}


.faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 20px 20px;
  text-align: center;
}

.faq-title {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.faq-intro {
  max-width: 1120px;
  margin: 0 auto 90px;
  font-size: 18px;
  line-height: 1.32;
  color: rgba(255,255,255,0.82);
}

.faq-list {
  max-width: 1340px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.18);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-inner {
  padding: 0 0 18px;
  font-size: 17px;
  line-height: 1.42;
  color: rgba(255,255,255,0.82);
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.payments-wrap {
  margin-top: 82px;
  text-align: center;
}

.payments-title {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.payments-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payment-logo img {
  display: block;
  height: 46px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 40px 14px 20px;
  }

  .faq-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .faq-intro {
    max-width: 100%;
    margin-bottom: 74px;
    font-size: 16px;
    line-height: 1.34;
  }

  .faq-question {
    padding: 18px 0;
    font-size: 28px;
    line-height: 1.14;
  }

  .faq-answer-inner {
    padding-bottom: 18px;
    font-size: 16px;
    line-height: 1.38;
  }

  .faq-item.active .faq-answer {
    max-height: 520px;
  }

  .payments-wrap {
    margin-top: 92px;
  }

  .payments-title {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .payments-logos {
    gap: 12px;
  }

  .payment-logo img {
    height: 44px;
  }
}


.site-footer {
  max-width: 1260px;
  margin: 0 auto;
  padding: 54px 20px 34px;
  color: rgba(255,255,255,0.78);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 220px;
  height: auto;
  display: block;
}

.footer-copy-top {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.35;
}

.footer-tagline {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  margin-top: 44px;
}

.footer-col-title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 15px;
  line-height: 1.25;
}

.footer-sep {
  margin: 26px 0 20px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-support-title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.footer-support-title a,
.footer-support-text a,
.footer-bottom a,
.footer-policy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-support-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
}

.footer-policy {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
}

.footer-bottom {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}

.footer-bottom p {
  margin: 0 0 12px;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.privacy-dot {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2a7cff 0%, #0b57ff 100%);
  position: relative;
  top: 1px;
}

.privacy-dot::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 4px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.privacy-dot::after {
  content: '×';
  position: absolute;
  right: 3px;
  top: -1px;
  font-size: 9px;
  line-height: 1;
  color: #fff;
}

.tracking-debug {
  max-width: 1260px;
  margin: 24px auto 0;
  padding: 0 20px;
}

.tracking-debug-card {
  background: #121316;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
}

.tracking-debug-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
}

.tracking-debug-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}

.tracking-debug-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tracking-debug-block {
  min-width: 0;
}

.tracking-debug-block h4 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

.tracking-debug-block pre {
  margin: 0;
  padding: 14px;
  background: #090a0c;
  border-radius: 12px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  color: #d8e0ea;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 34px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 42px 14px 24px;
  }

  .footer-logo {
    width: 250px;
  }

  .footer-copy-top {
    font-size: 16px;
    margin-top: 10px;
  }

  .footer-tagline {
    font-size: 18px;
    margin-top: 14px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 34px;
  }

  .footer-col-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 28px;
  }

  .footer-links a {
    font-size: 14px;
    line-height: 1.25;
  }

  .footer-sep {
    margin: 26px 0 18px;
  }

  .footer-support-title {
    font-size: 17px;
  }

  .footer-support-text,
  .footer-policy,
  .footer-bottom {
    font-size: 14px;
    line-height: 1.45;
  }

  .tracking-debug {
    padding: 0 14px;
  }

  .tracking-debug-grid {
    grid-template-columns: 1fr;
  }
}


.signup-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.signup-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.signup-modal {
  position: relative;
  width: 100%;
  max-width: 350px;
  border-radius: 22px;
  background: #1a1b1f;
  padding: 24px 22px 24px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,0.45);
}

.signup-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.signup-modal-image {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: -34px auto 6px;
  height: auto;
}

.signup-modal-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.signup-modal-title .green {
  color: #19ff4f;
}

.signup-modal-text {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.28;
  color: rgba(255,255,255,0.88);
}

.signup-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  margin-top: 26px;
  padding: 14px 22px;
  border-radius: 18px;
  background: #ff0f5b;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 767px) {
  .signup-modal-overlay {
    padding: 16px;
  }

  .signup-modal {
    max-width: 360px;
    border-radius: 20px;
    padding: 20px 18px 20px;
  }

  .signup-modal-close {
    top: 12px;
    right: 14px;
    font-size: 40px;
  }

  .signup-modal-image {
    max-width: 245px;
    margin-top: -22px;
    margin-bottom: 8px;
  }

  .signup-modal-title {
    font-size: 28px;
  }

  .signup-modal-text {
    font-size: 17px;
  }

  .signup-modal-cta {
    min-height: 58px;
    font-size: 17px;
  }
}
