@charset "UTF-8";
:root {
  --color-primary: #031838;
  --color-primary-light: #11366b;
  --color-primary-dark: #031329;
  --text: #fff;
  --orange-gradient: linear-gradient(0deg,#e73d00,#ffbf00);
  --font: "Inter", sans-serif;
  --color2: #FFF;
}

body {
  background: var(--color-primary);
  font-family: var(--font);
  color: #FFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

ul li + li {
  margin-top: 15px;
}

button {
  border: 0;
  border-radius: 10px;
  color: #FFF;
}

.button {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
.button:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.button.sing-up {
  background: var(--color2);
  color: var(--color-primary);
  min-width: 100px;
}
.button.login {
  background: var(--orange-gradient);
  color: var(--color2);
}
.button.centered {
  background: var(--orange-gradient);
  color: var(--color2);
  display: table;
  margin: 30px auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.logos {
  width: 160px;
}
@media (width < 768px) {
  .logos {
    width: 100px;
    order: 1;
  }
}
.logos img {
  width: 100%;
  object-fit: contain;
  object-position: left;
  height: 50px;
}

.header {
  --color-primary: #031838;
  --color-primary-light: #11366b;
  --color-primary-dark: #031329;
  --text: #fff;
  --orange-gradient: linear-gradient(0deg, #e73d00, #ffbf00);
  --font: "Inter", sans-serif;
  --bg: #0f1623;
  --panel: #121c2b;
  --panel-2: #101827;
  --text: #e9edf3;
  --muted: #aab5c6;
  --line: #283140;
  --line-soft: #212a39;
  --brand: #ffcc35;
  --accent: #23d0a3;
  --radius-1: 10px;
  --radius-2: 12px;
  --radius-round: 999px;
  --shadow-1: 0 8px 18px rgba(0, 0, 0, .28);
}
@media (width < 768px) {
  .header-nav {
    grid-column: 1/-1;
    margin: 20px auto;
    order: 3;
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.header-nav ul li {
  list-style: none;
}
.header-nav ul li a {
  color: #FFF;
  text-decoration: none;
}
.header-nav ul li a:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.header-nav ul li + li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-nav ul li + li::before {
  content: "|";
}
.header__top {
  padding: 10px 0;
}
.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .header__top .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.header__top-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (width < 768px) {
  .header__top-navigation {
    margin-left: auto;
    width: 100%;
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.header .lang-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}
@media (width < 768px) {
  .header .lang-group {
    order: 4;
  }
}
.header .lang-label {
  color: var(--muted);
  font-size: 12px;
}
.header .pill-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
}
.header .pill-switch button {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 7px 12px;
  border-radius: var(--radius-round);
  font-weight: 600;
  cursor: pointer;
}
.header .pill-switch button[aria-pressed=true] {
  background: var(--orange-gradient);
  color: var(--text);
}
.header .select-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-1);
  padding: 6px 10px;
}
.header .select-lang select {
  appearance: auto;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 600;
}
.header .radio-tabs {
  display: flex;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: var(--radius-2);
}
.header .radio-tabs input {
  display: none;
}
.header .radio-tabs label {
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: #dfe6f1;
}
.header .radio-tabs input:checked + label {
  background: #192235;
  border: 1px solid var(--line-soft);
}
.header .lang-dropdown {
  position: relative;
}
.header .lang-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-1);
  padding: 8px 12px;
  cursor: pointer;
  color: #FFF;
}
.header .lang-dropdown__menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 200px;
  display: none;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-1);
  padding: 6px;
  z-index: 5;
}
.header .lang-dropdown.is-open .lang-dropdown__menu {
  display: block;
}
.header .lang-dropdown__item {
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .lang-dropdown__item a {
  color: var(--text);
  text-decoration: none;
}
.header .lang-dropdown__item:hover {
  background: #142037;
}
.header .lang-popover {
  position: relative;
}
.header .lang-popover__btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  cursor: pointer;
}
.header .lang-popover__panel {
  position: absolute;
  right: 0;
  top: 110%;
  display: none;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  min-width: 140px;
  box-shadow: var(--shadow-1);
}
.header .lang-popover.is-open .lang-popover__panel {
  display: block;
}
.header .lang-popover__panel button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.header .lang-popover__panel button:hover {
  background: #142037;
}

h1 {
  text-align: center;
}

.g-list-box {
  margin: 50px 0;
}
.g-list-box h2 {
  margin: 0;
}
.g-list-box-slider {
  padding: 20px 0;
}
.g-list-box-item {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 7/10;
}
.g-list-box-item img {
  width: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
}
.g-list-box-item .content {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.g-list-box-item .content button {
  border: 0;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-list-box-item .content button span {
  background: #ff124c;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 5px;
  width: 80%;
  display: table;
  opacity: 0;
}
.g-list-box-item .content button:hover span {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.g-list-box-item .content .budge {
  position: absolute;
  right: 10px;
  top: 10px;
  background: red;
  padding: 3px 5px;
  border-radius: 5px;
  color: #FFF;
}
.g-list-box-item .content .description {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.g-list-box-item .content .description .title {
  font-weight: 700;
}
.g-list-box-item .content .description p {
  margin: 0;
  opacity: 0.6;
}

.box-b {
  margin: 50px 0;
  text-decoration: none;
}
.box-b h2 {
  margin-bottom: 40px;
}
@media (width < 768px) {
  .box-b h2 {
    text-align: center;
  }
}
.box-b__card {
  background: linear-gradient(85deg, rgba(0, 32, 113, 0.89) 0%, #7b2dc4 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-radius: 16px;
}
@media (width < 1023px) {
  .box-b__card {
    display: flex;
    flex-direction: column-reverse;
    padding: 40px 20px;
    gap: 40px;
  }
}
.box-b__card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.box-b__card-item img {
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  width: 70%;
  -ms-filter: saturate(0.5);
  filter: saturate(0.5);
}
.box-b__card-item img.shake-active {
  animation: shake 2s ease-in-out;
}
@media (width < 1023px) {
  .box-b__card-item img {
    max-width: 415px;
  }
}
.box-b__card-item:not(:has(a)) .title {
  color: #FFF;
}
.box-b__card-item .subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  text-align: center;
  background: var(--color1);
  padding: 5px 12px;
  border-radius: 2px;
}
.box-b__card-item .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  display: table;
  margin: 10px 0 30px;
  text-align: center;
}
@media (width < 768px) {
  .box-b__card-item .title {
    font-size: 18px;
    margin: 30px 30px 40px;
  }
}
.box-b__card-item .btn {
  background: #e81c63;
  padding: 20px 70px;
  font-size: 20px;
}
.box-b__card-item .btn:hover {
  background: #c91653;
}
@media (width < 1440px) {
  .box-b__card-item .btn {
    padding: 20px 50px;
  }
}
@media (width < 768px) {
  .box-b__card-item .btn {
    padding: 20px 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.payment-method-slider .swiper-slide {
  align-items: center;
}
.payment-method-slider img {
  width: 55%;
  object-position: center;
  object-fit: contain;
  margin: 0 auto;
}
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  box-shadow: inset 0 0 370px 20px rgba(255, 255, 255, 0.168627451);
  padding: 10px;
}
@media (width < 768px) {
  .payment-method-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.payment-method-grid .items {
  background: #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
}
@media (width < 768px) {
  .payment-method-grid .items:last-child {
    grid-column: 1/-1;
    aspect-ratio: unset;
    padding: 10px 0;
  }
}
.payment-method-grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--color-primary-light);
}
.payment-method-grid-7 img {
  width: 60%;
  object-fit: contain;
}
.payment-method-grid-7 .items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.payment-method-grid-7 .items:nth-child(even) {
  background: var(--color-primary-dark);
}

.dayli-b {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0;
}
.dayli-b img {
  width: 150px;
}
.dayli-b .item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgb(0, 149, 255);
}
.dayli-b .images {
  background: linear-gradient(262.72deg, rgb(0, 149, 255) 0%, rgb(0, 0, 173) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.dayli-b .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  padding: 20px 10px;
}
.dayli-b p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.dayli-b span {
  font-size: 14px;
  display: table;
  margin-bottom: 10px;
}
.dayli-b button {
  display: table;
  margin: 0 !important;
  margin-top: 20px !important;
  color: #FFF;
}

@media (width < 1024px) {
  .dayli-b {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .dayli-b {
    grid-template-columns: 1fr;
  }
}
.providers {
  margin: 50px 0;
}
.providers__slider {
  margin: 50px 0;
}
.providers__slider img {
  width: 80%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.providers__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px;
  justify-items: center;
}
.providers__grid img {
  width: 100%;
}
@media (width < 1024px) {
  .providers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 768px) {
  .providers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.providers__pallet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.providers__pallet-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: var(--color-primary-light);
}
.providers__with_text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #FFF;
  gap: 2px;
}
.providers__with_text div {
  background: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.providers__with_text button {
  background: #FFF;
  color: var(--color-primary-dark);
  font-weight: 700;
}

footer {
  border-top: 2px solid #FFF;
  margin-top: 50px;
  padding: 30px 0;
}
footer .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  footer .box {
    flex-direction: column-reverse;
  }
}
footer .box span {
  text-decoration: none;
  color: #FFF;
  opacity: 0.6;
}
footer .box ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width < 768px) {
  footer .box ul {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
footer .box ul li {
  list-style: none;
}
@media (width > 768px) {
  footer .box ul li {
    margin: 0;
  }
}
footer .box ul li a {
  text-decoration: none;
  color: #FFF;
  opacity: 0.6;
}

.content-with-img .box {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
}
.content-with-img .box img {
  width: 100%;
  filter: drop-shadow(2px 14px 116px rgb(0, 149, 255));
}
@media (width < 768px) {
  .content-with-img .box {
    display: flex;
    flex-direction: column-reverse;
  }
}

.table-block-standart {
  margin-bottom: 50px;
  /* Мобильная адаптация */
  /* Анимации */
}
.table-block-standart .table-container {
  overflow-x: auto;
  padding: 0;
}
.table-block-standart table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.table-block-standart th, .table-block-standart td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e1e8ed;
  vertical-align: top;
}
.table-block-standart th {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c3e50;
  position: sticky;
  left: 0;
  z-index: 10;
}
.table-block-standart td:first-child {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  font-weight: 600;
  color: #2c3e50;
  position: sticky;
  left: 0;
  z-index: 5;
}
.table-block-standart td {
  font-size: 1rem;
  line-height: 1.6;
  color: #34495e;
}
.table-block-standart tr:hover {
  background: rgba(52, 152, 219, 0.05);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
.table-block-standart .payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.table-block-standart .payment-tag {
  background: #031838;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.table-block-standart .crypto-tag {
  background: linear-gradient(0deg, #e73d00, #ffbf00);
}
.table-block-standart .currency-list {
  line-height: 1.8;
}
.table-block-standart .highlight {
  background: linear-gradient(135deg, #e8f5e8, #d4edda);
  border-left: 4px solid #27ae60;
  padding: 15px;
  border-radius: 8px;
}
.table-block-standart .limit-info {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-left: 4px solid #f39c12;
  padding: 15px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .table-block-standart {
    /* Стек-стиль для очень маленьких экранов */
  }
  .table-block-standart body {
    padding: 10px;
  }
  .table-block-standart .header {
    padding: 20px;
  }
  .table-block-standart .header h1 {
    font-size: 1.5rem;
  }
  .table-block-standart .header p {
    font-size: 1rem;
  }
  .table-block-standart th, .table-block-standart td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  .table-block-standart .payment-methods {
    gap: 5px;
  }
  .table-block-standart .payment-tag {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .table-block-standart table, .table-block-standart thead, .table-block-standart tbody, .table-block-standart th, .table-block-standart td, .table-block-standart tr {
    display: block;
  }
  .table-block-standart thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table-block-standart tr {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .table-block-standart td {
    border: none;
    position: relative;
    padding: 15px 15px 15px 35%;
    text-align: left;
  }
  .table-block-standart td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 30%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    color: #2c3e50;
  }
  .table-block-standart td:first-child {
    background: #11366b;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px;
  }
  .table-block-standart td:first-child:before {
    display: none;
  }
}
.table-block-standart .container {
  animation: slideIn 0.8s ease-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: var(--panel);
  border-radius: var(--radius);
  --bg: #0b1020;
  --panel: #0e1628;
  --text: #e7ecf7;
  --muted: #8ea0c3;
  --line: rgba(255,255,255,0.08);
  --radius: 14px;
}

.catalog__title {
  margin: 0 0 24px;
  font-size: 28px;
}

.catalog__section + .catalog__section {
  margin-top: 32px;
}

.catalog__section-title {
  margin: 0 0 12px;
  font-size: 20px;
}

.catalog__wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
}

.catalog__table {
  width: 100%;
  border-collapse: collapse;
}

.catalog__table th {
  position: sticky;
  top: 0;
  padding: 12px 16px;
  background: var(--bg);
  text-align: left;
}

.catalog__table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.catalog__table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #b8ffea;
}

.catalog__table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.catalog__table tbody tr:hover {
  background: rgba(122, 166, 255, 0.08);
}

.catalog__placeholder {
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

@media (max-width: 640px) {
  .catalog__table thead {
    display: none;
  }
  .catalog__table, .catalog__table tbody, .catalog__table tr, .catalog__table td {
    width: 100%;
  }
  .catalog__table tbody tr {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
  }
  .catalog__table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
  }
  .catalog__table td::before {
    content: attr(data-label);
    color: var(--muted);
    margin-right: 10px;
  }
}
.header__mobile-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width < 768px) {
  .header__mobile-menu {
    order: 3;
    margin: unset;
    margin-right: auto;
  }
}
.header__mobile-menu li {
  list-style: none;
}
.header__mobile-menu li + li {
  margin-top: 0;
}
.header__mobile-menu li a {
  color: #FFF;
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
