@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;
  --color1: linear-gradient(0deg,#0629df,#0af);
  --color2: #FFF;
  --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);
}

@keyframes shake {
  0%, 40%, 100% {
    transform: translateX(0);
  }
  5%, 15%, 25%, 35% {
    transform: translateX(-5px);
  }
  10%, 20%, 30% {
    transform: translateX(5px);
  }
}
body {
  background: var(--color-primary);
  font-family: var(--font);
  color: #FFF;
}

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);
}
.button.login {
  background: var(--color1);
  color: var(--color2);
}
.button.centered {
  background: var(--color1);
  color: var(--color2);
  display: table;
  margin: 30px auto;
}

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

.logos {
  width: 160px;
}
.logos img {
  width: 100%;
}

.header_wish .lang-group {
  margin-left: auto;
  margin-right: 20px;
}
@media (width < 768px) {
  .header_wish .lang-group {
    margin-left: unset;
    margin-right: auto;
  }
}
.header_wish .radio-tabs {
  display: flex;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: var(--radius-2);
}
.header_wish .radio-tabs input {
  display: none;
}
.header_wish .radio-tabs label {
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: #dfe6f1;
}
.header_wish .radio-tabs input:checked + label {
  background: #192235;
  border: 1px solid var(--line-soft);
}
.header_wish-nav {
  margin: 0 auto;
}
@media (width < 768px) {
  .header_wish-nav {
    order: 2;
    margin-left: auto;
  }
}
.header_wish-nav ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.header_wish-nav ul li {
  list-style: none;
}
.header_wish-nav ul li a {
  color: #FFF;
  text-decoration: none;
}
.header_wish-nav ul li a:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.header_wish-nav ul li + li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header_wish-nav ul li + li::before {
  content: "|";
}
.header_wish__top {
  padding: 10px 0;
}
.header_wish__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .header_wish__top .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.header_wish__top-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (width < 768px) {
  .header_wish__top-navigation {
    margin-left: auto;
  }
}

.box-b {
  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;
  }
}

.content-area p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
}
.content-area ul, .content-area ol {
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 1.6;
}
.content-area ul {
  list-style-type: disc;
}
.content-area ol {
  list-style-type: decimal;
}
.content-area strong {
  font-weight: 700;
}
.content-area i {
  font-style: italic;
}

.g-list-box {
  margin: 50px 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;
}
.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;
}

.providers__slider {
  margin: 50px 0;
}
.providers__slider img {
  width: 80%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.table-block-standart {
  /* Мобильная адаптация */
  /* Анимации */
}
.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;
  width: 20%;
}
@media (width < 768px) {
  .table-block-standart td:first-child {
    width: unset;
  }
}
.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: var(--color-primary);
    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);
  }
}

.default-block-faq {
  margin: 50px 0;
  color: #FFF;
}
.default-block-faq h2 {
  margin-bottom: 30px;
}
.default-block-faq-grid {
  display: grid;
}
.default-block-faq-item {
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.default-block-faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFF;
  opacity: 0.5;
}
.default-block-faq-item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  left: 8px;
  top: 0;
  opacity: 0.5;
}
.default-block-faq-item .title {
  font-size: 21px;
  margin-bottom: 20px;
  position: relative;
}
.default-block-faq-item .content {
  line-height: 1.6;
  hyphens: auto;
}

footer {
  background: var(--color-primary-dark);
  padding: 30px;
  color: rgba(255, 255, 255, 0.6235294118);
}
footer .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  footer .box {
    flex-direction: column-reverse;
  }
}
footer .box ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}
@media (width < 768px) {
  footer .box ul {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
footer .box ul li {
  list-style: none;
}
footer .box ul li a {
  color: #FFF;
  text-decoration: none;
  opacity: 0.8;
}

.box-grid-b {
  margin: 50px 0;
}
.box-grid-b-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.box-grid-b-area .item {
  border: 1px solid #4140ab;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 0px 65px 2px #4140ab;
}
.box-grid-b-area .item:hover {
  box-shadow: 1px 0px 25px 2px #4140ab;
  transition: box-shadow 0.1s ease;
}
.box-grid-b-area .item img {
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.box-grid-b-area .item h3 {
  text-align: center;
  margin: 20px 0;
}
.box-grid-b-area .item .content {
  padding-bottom: 25px;
}
.box-grid-b-area .item button {
  background: transparent;
  border: 0;
  color: #0af;
  font-size: 16px;
  margin: 0 auto;
  display: table;
  text-decoration: underline;
  cursor: pointer;
}

.lang-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}

.lang-label {
  color: var(--muted);
  font-size: 12px;
}

.pill-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
}

.pill-switch button {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 7px 12px;
  border-radius: var(--radius-round);
  font-weight: 600;
  cursor: pointer;
}

.pill-switch button[aria-pressed=true] {
  background: var(--orange-gradient);
  color: var(--text);
}

.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;
}

.select-lang select {
  appearance: auto;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 600;
}

.radio-tabs {
  display: flex;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: var(--radius-2);
}

.radio-tabs input {
  display: none;
}

.radio-tabs label {
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: #dfe6f1;
}

.radio-tabs input:checked + label {
  background: #192235;
  border: 1px solid var(--line-soft);
}

.lang-dropdown {
  position: relative;
  margin-right: 20px;
}
@media (width < 768px) {
  .lang-dropdown {
    margin-left: auto;
    order: 3;
    margin-right: 0;
  }
}

.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;
}

.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;
}

.lang-dropdown.is-open .lang-dropdown__menu {
  display: block;
}

.lang-dropdown__item {
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-dropdown__item a {
  text-decoration: none;
  color: var(--text);
}

.lang-dropdown__item:hover {
  background: #142037;
}

.lang-popover {
  position: relative;
}

.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;
}

.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);
}

.lang-popover.is-open .lang-popover__panel {
  display: block;
}

.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;
}

.lang-popover__panel button:hover {
  background: #142037;
}

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