 :root {
      --purple-1: #5300ff;
      --purple-2: #b000ff;
      --search-bg: #2b007a;
      --search-border: #7320ff;
      --text-muted: #d5c7ff;
      --btn-purple-1: #ff8bff;
      --btn-purple-2: #a000ff;
      --btn-green-1: #9eff4a;
      --btn-green-2: #1dd600;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #000;
      color: #fff;
    }

a {
    text-decoration: none;
}

    .topbar {
      height: 80px;
      background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
      border-bottom: 1px solid rgba(255,255,255,.8);
    }

    .topbar__inner {
      max-width: 1200px;
      height: 100%;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .topbar__logo img {
      height: 60px;
      display: block;
    }

    .topbar__search {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
      width: 460px;
      height: 46px;
      padding: 0 18px;
      background: var(--search-bg);
      border-radius: 999px;
      border: 1px solid var(--search-border);
      box-shadow:
        0 0 0 1px rgba(0,0,0,.25),
        0 0 16px rgba(94, 0, 255, .45);
    }

    .topbar__search-icon {
      font-size: 15px;
      color: #fff;
    }

    .topbar__search-input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      color: #fff;
      font-size: 15px;
    }

    .topbar__search-input::placeholder {
      color: var(--text-muted);
    }

    .topbar__actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-pill {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 46px;
      padding: 0 30px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      box-shadow: 0 4px 0 rgba(0,0,0,.45);
      transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
      overflow: hidden;
    }

    .btn-pill::before {
      content: "";
      position: absolute;
      inset: 2px;
      border-radius: inherit;
      border: 2px solid rgba(255,255,255,.55);
      pointer-events: none;
      mix-blend-mode: screen;
    }

    .btn-pill--login {
      background-image: linear-gradient(to bottom, var(--btn-purple-1), var(--btn-purple-2));
    }

    .btn-pill--register {
      background-image: linear-gradient(to bottom, var(--btn-green-1), var(--btn-green-2));
    }

    .btn-pill:hover {
      transform: translateY(1px);
      box-shadow: 0 2px 0 rgba(0,0,0,.5);
      filter: brightness(1.03);
    }

    .topbar__burger {
      margin-left: auto;
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.5);
      background: rgba(0,0,0,.15);
      color: #fff;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .topbar__burger span,
    .topbar__burger span::before,
    .topbar__burger span::after {
      display: block;
      width: 18px;
      height: 2px;
      background: #fff;
      border-radius: 999px;
      position: relative;
      transition: transform .18s ease, opacity .18s ease;
    }

    .topbar__burger span::before,
    .topbar__burger span::after {
      content: "";
      position: absolute;
      left: 0;
    }
    .topbar__burger span::before { top: -6px; }
    .topbar__burger span::after  { top:  6px; }

    .topbar__burger.is-open span { transform: rotate(45deg); }
    .topbar__burger.is-open span::before {
      transform: rotate(-90deg) translateX(-6px);
    }
    .topbar__burger.is-open span::after { opacity: 0; }

    @media (max-width: 768px) {
      .topbar__search,
      .topbar__actions { display: none; }
      .topbar__burger { display: inline-flex; }
    }

    @media (max-width: 480px) {
      .topbar__inner { padding: 0 12px; }
      .topbar__logo img { height: 50px; }
    }

    
    .mnav {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.7);
      display: none;
      z-index: 40;
    }
    .mnav.is-open { display: block; }

    .mnav__panel {
      position: absolute;
      inset-inline: 0;
      bottom: 0;
      padding: 20px 18px 32px;
      background: linear-gradient(180deg, #7b00ff, #280055);
      border-radius: 18px 18px 0 0;
    }

    .mnav__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .mnav__title { font-size: 18px; font-weight: 600; }

    .mnav__close {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.6);
      background: rgba(0,0,0,.2);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mnav__actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 16px;
    }

    .mnav__actions .btn-pill {
      width: 100%;
      justify-content: center;
    }

    

    main {
      min-height: calc(100vh - 80px);
      background: #f7f1ff;
      padding: 18px 12px 32px;
    }

    .promo {
      max-width: 1280px;
      margin: 0 auto;
    }

    .promo-carousel {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      background: #000;
      box-shadow: 0 22px 45px rgba(0,0,0,.6);
      border: 2px solid rgba(255,255,255,.6);
    }

    .promo-carousel__viewport {
      position: relative;
      height: clamp(260px, 33vw, 430px);
    }

    .promo-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .45s ease;
    }

    .promo-slide.is-active {
      opacity: 1;
      pointer-events: auto;
    }

    .promo-slide__bg {
      position: absolute;
      inset: 0;
    }

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

    .promo-slide__panel {
      position: absolute;
      left: 6%;
      top: 50%;
      transform: translateY(-50%);
      max-width: 480px;
      width: 38%;
      min-width: 280px;
      padding: 30px 34px 36px;
      background: linear-gradient(145deg,#b113ff,#6300d7);
      border-radius: 32px;
      border: 2px solid rgba(255,255,255,.9);
      box-shadow: 0 20px 36px rgba(31,7,87,.9);
      text-align: center;
      color: #fff;
    }

    .promo-slide__eyebrow {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .promo-slide__headline {
      font-size: clamp(30px, 3.5vw, 40px);
      font-weight: 800;
      line-height: 1.15;
      text-shadow: 0 4px 0 rgba(0,0,0,.4);
      margin-bottom: 18px;
    }

    .promo-slide__headline span {
      color: #ffce00;
      text-shadow:
        0 3px 0 #c46b00,
        0 0 12px rgba(255,215,0,.85);
    }

    .promo-slide__btn {
      margin-top: 6px;
      height: 60px;
      padding: 0 40px;
      font-size: 20px;
      border-radius: 999px;
      background-image: linear-gradient(to bottom,#6cff31,#16b900);
      box-shadow: 0 6px 0 #0b6600;
    }

    .promo-slide__btn::before {
      border-color: rgba(255,255,255,.7);
    }

    .promo-nav {
      position: absolute;
      inset-block: 50%;
      inset-inline: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      pointer-events: none;
    }

    .promo-nav__btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: #fff;
      box-shadow: 0 10px 18px rgba(0,0,0,.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7a00ff;
      cursor: pointer;
      pointer-events: auto;
    }

    .promo-dots {
      position: absolute;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .promo-dots__dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,.6);
      cursor: pointer;
    }

    .promo-dots__dot.is-active {
      background: #ffc300;
      box-shadow: 0 0 8px rgba(0,0,0,.5);
    }

    @media (max-width: 900px) {
      .promo-slide__panel {
        width: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    }

    @media (max-width: 600px) {
      .promo-carousel__viewport {
        height: 360px;
      }

      .promo-slide__panel {
        width: 86%;
        padding: 22px 22px 26px;
        border-radius: 26px;
      }

      .promo-slide__eyebrow { font-size: 16px; }
      .promo-slide__headline { font-size: 26px; }
      .promo-slide__btn {
        height: 52px;
        font-size: 18px;
        padding: 0 26px;
      }

      .promo-nav__btn {
        width: 36px;
        height: 36px;
      }
    }

.games {
  max-width: 1280px;
  margin: 60px auto 40px;
  padding-inline: 12px;
}

.games__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  margin-bottom: 14px;
}

.games__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #6f2bff;
}

.games__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #7c6fb5;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.games__all i {
  font-size: 13px;
}

.games__all:hover {
  background: rgba(255,255,255,.7);
  color: #4e35aa;
}



.games__carousel {
  position: relative;
  padding-inline: 40px;
}

.games__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
}


.games__track::-webkit-scrollbar {
  height: 0;
}
.games__track {
  scrollbar-width: none;
}



.gcard {
  position: relative;
  flex: 0 0 190px;
  max-width: 190px;
  border-radius: 26px;
  padding: 6px;
  background: #f6f2ff;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 30px rgba(0,0,0,.45);
}

.gcard__media {
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

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



.gcard__num {
  position: absolute;
  right: 18px;
  bottom: 6px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #ffd900;
  text-shadow:
    0 3px 0 #7c2dff,
    0 0 10px rgba(81,0,255,.7);
}



.gcard__label {
  position: absolute;
  right: 18px;
  top: 10px;
  padding: 4px 10px 5px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  color: #fff;
}

.gcard__label--new {
  background: linear-gradient(135deg,#ff4bd9,#ff7f28);
  box-shadow: 0 6px 14px rgba(220,80,40,.8);
}



.games__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a00ff;
  cursor: pointer;
}

.games__arrow--left  { left: 12px; }
.games__arrow--right { right: 12px; }

.games__arrow i {
  font-size: 16px;
}



@media (max-width: 900px) {
  .gcard__media img {
    height: 230px;
  }
}

@media (max-width: 600px) {
  .games {
    padding-inline: 4px;
  }

  .games__carousel {
    padding-inline: 10px;
  }

  .games__arrow {
    display: none; 
  }

  .gcard {
    flex: 0 0 56%;
    max-width: 56%;
  }

  .gcard__media img {
    height: 220px;
  }
}


.sports {
  max-width: 1280px;
  margin: 10px auto 40px;
  padding-inline: 12px;
}

.sports__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  margin-bottom: 14px;
}

.sports__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #6f2bff;
}

.sports__head-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sports__all {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #7c6fb5;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.sports__all:hover {
  background: rgba(255,255,255,.8);
  color: #4e35aa;
}

.sports__arrows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sports__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(126, 96, 255, .9);
  background: #f5f0ff;
  color: #7a00ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

.sports__arrow i {
  font-size: 13px;
}



.sports__carousel {
  overflow: hidden;
}

.sports__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-behavior: smooth;
}

.sports__track::-webkit-scrollbar {
  height: 0;
}
.sports__track {
  scrollbar-width: none;
}


.scard {
  position: relative;
  flex: 0 0 190px;
  max-width: 190px;
  border-radius: 28px;
  background: #f6f2ff;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 30px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;               
}



.scard__media {
  position: relative;
  border-radius: 24px 24px 16px 16px;
  overflow: hidden;
  background: #000;
}


.scard__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30%;
  height: 75%;
  background: var(--sport-grad, linear-gradient(135deg,#ff9a9a,#ff6b4f)); 
  clip-path: polygon(0 42%, 100% 18%, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.scard__media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}



.scard__title {
  padding: 10px 12px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #7a34ff;
}


.sports__track .scard:nth-child(1) {
  --sport-grad: linear-gradient(135deg,#ff9bb6,#ff7a5c);      
}

.sports__track .scard:nth-child(2) {
  --sport-grad: linear-gradient(135deg,#5b8dff,#2b4bff);      
}

.sports__track .scard:nth-child(3) {
  --sport-grad: linear-gradient(135deg,#4de89a,#17b55d);      
}

.sports__track .scard:nth-child(4) {
  --sport-grad: linear-gradient(135deg,#ffb45a,#ff7a1c);      
}

.sports__track .scard:nth-child(5) {
  --sport-grad: linear-gradient(135deg,#39c6ff,#0078ff);      
}

.sports__track .scard:nth-child(6) {
  --sport-grad: linear-gradient(135deg,#ffd84f,#ff9b1b);      
}

.sports__track .scard:nth-child(7) {
  --sport-grad: linear-gradient(135deg,#6a63ff,#2a1fff);      
}


.roulette {
  max-width: 1280px;
  margin: 10px auto 48px;
  padding-inline: 12px;
}

.roulette__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  margin-bottom: 14px;
}

.roulette__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #6f2bff;
}



.roulette__nav {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f5f0ff;
  border: 1px solid rgba(180, 153, 255, .9);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  overflow: hidden;
}

.roulette__nav-label {
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #7c6fb5;
  white-space: nowrap;
}

.roulette__nav-arrow {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #7c25ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.roulette__nav-arrow + .roulette__nav-label {
  border-left: 1px solid rgba(180,153,255,.5);
}

.roulette__nav-label + .roulette__nav-arrow {
  border-left: 1px solid rgba(180,153,255,.5);
}



.roulette__carousel {
  overflow: hidden;
}

.roulette__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-behavior: smooth;
}

.roulette__track::-webkit-scrollbar {
  height: 0;
}
.roulette__track {
  scrollbar-width: none;
}



.rcard {
  position: relative;
  flex: 0 0 200px;
  max-width: 200px;
  border-radius: 28px;
  background: #f6f2ff;
  border: 2px solid rgba(255,255,255,.95);
  box-shadow: 0 16px 30px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
}


.rcard__tag {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  padding: 3px 12px 4px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  color: #6a40c9;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  z-index: 2;
}

.rcard__media {
  border-radius: 24px 24px 18px 18px;
  overflow: hidden;
  background: #000;
}

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



.rcard__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 8px 8px 10px;
}

.rcard__chip {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,.25);
}

.rcard__chip--red {
  color: #ff3040;
  border: 2px solid #ff3040;
}

.rcard__chip--black {
  color: #222;
  border: 2px solid #222;
}

.rcard__chip--blue {
  color: #255bff;
  border: 2px solid #255bff;
}



.rcard--demo {
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg,#a64dff,#5c00d4);
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.95);
}

.rcard__demo-inner {
  text-align: center;
  color: #fff;
}

.rcard__demo-btn {
  margin-bottom: 12px;
}

.rcard__demo-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%,#ffe378,#ff9a1e);
  box-shadow: 0 12px 22px rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ff5a00;
}

.rcard__demo-label {
  font-size: 16px;
  font-weight: 600;
}



@media (max-width: 900px) {
  .rcard {
    flex: 0 0 190px;
  }
  .rcard__media img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .roulette {
    padding-inline: 4px;
  }
  .rcard {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .rcard__media img {
    height: 210px;
  }
}


.excl {
  max-width: 1280px;
  margin: 10px auto 48px;
  padding-inline: 12px;
}

.excl__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  margin-bottom: 14px;
}

.excl__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #6f2bff;
}



.excl__nav {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f5f0ff;
  border: 1px solid rgba(180,153,255,.9);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  overflow: hidden;
}

.excl__nav-label {
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #7c6fb5;
  white-space: nowrap;
}

.excl__nav-arrow {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #7c25ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.excl__nav-arrow:first-child {
  border-right: 1px solid rgba(180,153,255,.5);
}
.excl__nav-arrow:last-child {
  border-left: 1px solid rgba(180,153,255,.5);
}



.excl__carousel {
  overflow: hidden;
}

.excl__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-behavior: smooth;
}

.excl__track::-webkit-scrollbar {
  height: 0;
}
.excl__track {
  scrollbar-width: none;
}



.ecard {
  position: relative;
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
  border-radius: 30px;
  background: #f6f2ff;
  border: 2px solid rgba(255,255,255,.95);
  box-shadow: 0 20px 36px rgba(0,0,0,.45);
  overflow: hidden;
}

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



.ecard__ribbon {
  position: absolute;
  top: 18px;
  left: -44px;
  width: 150px;
  padding: 5px 0;
  background: linear-gradient(135deg,#ff5fd2,#ff2f8d);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px rgba(0,0,0,.45);
  z-index: 2;
}



@media (max-width: 1024px) {
  .ecard {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 700px) {
  .excl {
    padding-inline: 4px;
  }

  .ecard {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .ecard__media img {
    height: 230px;
  }
}


.footer {
  background: #f7f1ff;
  border-top: 1px solid rgba(178, 150, 255, .3);
  padding: 40px 0 48px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px 40px;
}

.fcol__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #6f2bff;
}

.fcol__title--sub {
  margin-top: 24px;
}

.fcol__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fcol__list li + li {
  margin-top: 4px;
}

.fcol__list a {
  font-size: 14px;
  color: #8b7ec6;
  text-decoration: none;
}

.fcol__list a:hover {
  color: #5f3fd4;
}



@media (max-width: 768px) {
  .footer {
    padding-bottom: 40px;
  }

  .footer__grid {
    gap: 22px 24px;
  }
}


.footer__bottom {
  margin-top: 40px;
  text-align: center;
}

.footer__payments {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}


.pay-pill {
  min-width: 110px;
  height: 52px;
  padding: 3px ;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-pill img {
  height: 40px;
  width: auto;
  display: block;
}


.footer__more {
  border: none;
  background: transparent;
  color: #7c6fb5;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.footer__more i {
  font-size: 12px;
}


.footer__age {
  margin-bottom: 22px;
}

.footer__age-badge {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #000;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  background: #f7f1ff;
}


.footer__legal {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #8b7ec6;
}

@media (max-width: 600px) {
  .footer__bottom {
    margin-top: 32px;
  }

  .footer__payments {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .pay-pill {
    min-width: 96px;
    height: 48px;
    padding: 8px 16px;
  }
}


.faq {
  background: #f7f1ff;
  padding: 32px 0 40px;
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
}

.faq__title {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  color: #6f2bff;
}

.faq__intro {
  margin: 0 0 20px;
  font-size: 14px;
  color: #8b7ec6;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.faq-item {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-item__question {
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #4a33b5;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(125, 102, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c25ff;
  font-size: 13px;
  transition: transform 0.2s ease;
}



.faq-item__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.25s ease, padding-top 0.25s ease,
    padding-bottom 0.25s ease;
}

.faq-item__body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b5ea9;
}



.faq-item.is-open .faq-item__body {
  max-height: 300px;             
  padding-top: 0;
  padding-bottom: 14px;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .faq__inner {
    padding: 0 8px;
  }

  .faq-item__question {
    font-size: 14px;
  }
}


.seo {
  background: #f7f1ff;
  padding: 32px 0 40px;
}

.seo__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
}



.seo h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  color: #6f2bff;
}

.seo h2 {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #5a3fd4;
}

.seo p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b5ea9;
}



table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  margin-top: 35px; 
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

table thead {
  background: linear-gradient(90deg, #6f2bff, #b240ff);
}

table th,
table td {
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}

table th {
  font-weight: 700;
  color: #ffffff;
}

table td {
  color: #5c4f9c;
}


table tbody tr:nth-child(odd) {
  background: #f6f2ff;
}

table tbody tr:nth-child(even) {
  background: #ffffff;
}


table tbody tr + tr td {
  border-top: 1px solid rgba(206, 192, 255, 0.7);
}



@media (max-width: 600px) {
  .seo__inner {
    padding: 0 8px;
  }

  .seo h1 {
    font-size: 22px;
  }

  .seo h2 {
    font-size: 18px;
  }

  table th,
  table td {
    padding: 8px 10px;
    font-size: 13px;
  }
}
