@font-face {
    font-family: Montserrat;
    src: url(../_next/static/media/Montserrat-Light.b5083635.ttf)
      format("truetype");
    font-weight: 300;
    font-style: normal;
  }
  @font-face {
    font-family: Montserrat;
    src: url(../_next/static/media/Montserrat-Regular.e4d41a96.ttf)
      format("truetype");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: Montserrat;
    src: url(../_next/static/media/Montserrat-Medium.b6027326.ttf)
      format("truetype");
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: Montserrat;
    src: url(../_next/static/media/Montserrat-SemiBold.4f67549c.ttf)
      format("truetype");
    font-weight: 600;
    font-style: normal;
  }
  @font-face {
    font-family: Montserrat;
    src: url(../_next/static/media/Montserrat-Bold.17fb2958.ttf)
      format("truetype");
    font-weight: 700;
    font-style: normal;
  }
  @font-face {
    font-family: Montserrat;
    src: url(../_next/static/media/Montserrat-ExtraBold.f6d42a13.ttf)
      format("truetype");
    font-weight: 800;
    font-style: normal;
  }
  :root {
    --background: #191a1d;
    --foreground: #fff;
    --font-family: "Montserrat", sans-serif;
    --text-accent: #f8ea1e;
    --text-accent-button-text: #1c1f23;
    --text-secondary: #fff;
    --text-tretiary: #626475;
    --text-white: #fff;
    --buttons-secondary-accent: #9e13cf;
    --buttons-secondary-accent-hover: #9e13cf;
    --buttons-white: #fff;
    --buttons-white-hover: #fff;
  }
  body,
  html {
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }
  body {
    color: #1b724d;
    background: #1b724d;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 90px;
    line-height: 1.1;
  }
  *,
  :after,
  :before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    object-fit: cover;
  }
  p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 10px;
  }
  /* ── Payment methods table ── */
  .table-scroll {
    overflow-x: auto;
    margin: 28px 0;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0 6px !important;
    min-width: 520px;
  }

  .table-scroll thead th {
    padding: 10px 16px;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9aa0b4;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    white-space: nowrap;
  }
  .table-scroll thead th:not(:first-child) { text-align: center; }

  .table-scroll tbody tr td {
    padding: 14px 16px;
    font-size: 14px;
    vertical-align: middle;
    background: #0e2d1e;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.18s ease, border-color 0.18s ease;
    text-align: center;
  }
  .table-scroll tbody tr td:first-child {
    border-left: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px 0 0 10px;
    text-align: left;
  }
  .table-scroll tbody tr td:last-child {
    border-right: 1px solid rgba(255,255,255,0.04);
    border-radius: 0 10px 10px 0;
  }

  .table-scroll tbody tr:hover td {
    background: #163826;
    border-color: rgba(232,160,32,0.18);
  }

  /* row-highlight: crypto (fastest) */
  .table-scroll tbody tr.row-fastest td {
    background: #0f3522;
    border-color: rgba(34,197,94,0.15);
  }
  .table-scroll tbody tr.row-fastest:hover td {
    background: #174428;
    border-color: rgba(34,197,94,0.35);
  }

  /* row-disabled: deposit-only */
  .table-scroll tbody tr.row-disabled td {
    background: #0c1e14;
    opacity: 0.55;
  }

  /* Method cell */
  .method-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }
  .method-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }
  .method-icon-wrap.crypto  { background: rgba(247,147,26,0.15); }
  .method-icon-wrap.ewallet { background: rgba(99,102,241,0.15); }
  .method-icon-wrap.card    { background: rgba(59,130,246,0.15); }
  .method-icon-wrap.bank    { background: rgba(16,185,129,0.12); }
  .method-icon-wrap.voucher { background: rgba(168,85,247,0.15); }

  .method-name {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
  }
  .method-name em {
    display: block;
    font-style: normal;
    font-size: 11px;
    font-weight: 400;
    color: #9aa0b4;
    margin-top: 1px;
  }

  .badge-fastest {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border-radius: 20px;
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
    margin-left: 4px;
    vertical-align: middle;
    flex-shrink: 0;
  }

  /* Speed pills */
  .time-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
  }
  .pill-green  { background: rgba(34,197,94,0.12);  color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
  .pill-yellow { background: rgba(234,179,8,0.12);  color: #fbbf24; border: 1px solid rgba(234,179,8,0.25); }
  .pill-orange { background: rgba(249,115,22,0.12); color: #fb923c; border: 1px solid rgba(249,115,22,0.25); }
  .pill-red    { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
  .pill-gray   { background: rgba(148,163,184,0.1); color: #94a3b8; border: 1px solid rgba(148,163,184,0.2); }

  /* Min amount */
  .amount-cell { font-weight: 700; color: #fff; }

  /* Fee badge */
  .fee-free {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(34,197,94,0.1);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.2);
  }

  @media (max-width: 600px) {
    .table-scroll tbody tr td { padding: 11px 10px; font-size: 13px; }
    .method-icon-wrap { width: 28px; height: 28px; font-size: 14px; }
    .method-name { font-size: 13px; }
    .time-pill { font-size: 11px; padding: 3px 8px; }
  }
  section {
    padding: 20px 0;
  }
  section h2 img {
    margin: 0 14px 0 0;
  }
  h1 {
    margin: 0;
    font-size: 31px;
    line-height: 110%;
  }
  h1,
  h2 {
    font-weight: 600;
    color: #f4eb2a;
  }
  h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 108%;
    margin: 0 0 20px;
  }
  section li {
    padding-left: 40px;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 20px;
    list-style: none;
    position: relative;
    color: var(--text-secondary);
  }
  section ol li:before {
    counter-increment: list;
    content: counter(list);
    width: 28px;
    min-width: 28px;
    height: 28px;
    border: 2px solid #ffc42d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    margin: 0 10px 0 0;
    position: absolute;
    left: 0;
    top: -3px;
  }
  section ol,
  section ul {
    margin: 30px 0;
    padding: 0 0 0 10px;
    list-style: none;
    counter-reset: list;
  }
  a {
    color: #fff;
  }
  @media screen and (max-width: 700px) {
    body {
      padding-top: 90px;
    }
  }
  @media screen and (max-width: 600px) {
    section li {
      font-size: 14px;
    }
    section ol li:before {
      width: 26px;
      min-width: 26px;
      height: 26px;
      border: 2px solid #ffc42d;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      font-weight: 400;
      line-height: 140%;
      margin: 0 10px 0 0;
      position: absolute;
      left: 5px;
      top: -4px;
    }
  }
  .description-wrap img {
    margin: 0 14px 0 0;
    margin-bottom: 20px;
  }
  ol,
  ul {
    margin: 30px 0;
    padding: 0 0 0 10px;
    counter-reset: list;
  }
  
  