@charset "UTF-8";
/* Montserrat загружается через <link> в HTML из Google Fonts */
.button {
  display: block;
  width: 137px;
  height: fit-content;
  padding: 12px;
  text-align: center;
  white-space: nowrap;
  background: #faff0e;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  cursor: pointer;
  color: #000000;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
  }
}
.button:hover {
  transform: scale(1.1);
}
.button--2 {
  background: #292a34;
  color: white;
}

p,
span,
li {
  font-size: 16px;
  line-height: 118%;
}
@media (max-width: 768px) {
  p,
  span,
  li {
    font-size: 14px;
  }
}

h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 100%;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1366px) {
  h1 {
    font-size: 56px;
    line-height: 120%;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
h1 > * {
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1.12px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h2 {
    font-size: 25px;
  }
}
h2 > * {
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}
h3 > * {
  font-family: "Montserrat", sans-serif;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
h4 > *,
h5 > *,
h6 > * {
  font-family: "Montserrat", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
p span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: inherit;
  color: #faff0e;
}

p a {
  color: #faff0e;
}

.shortcode-button {
  display: flex;
  justify-content: center;
}

.shortcode-button a.hero__button.button.shortcode-button {
  color: #fff;
  margin: 20px 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease-in-out;
  z-index: 9;
}
.header__scrolled {
  background: #000000;
}
.header__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-wrap: nowrap;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .header__wrapper {
    padding: 10px 0 0;
  }
}
/* header__hidden больше не используется — header всегда виден */
.header__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}
.header__buttons .button,
.mobile-menu__buttons .button {
  width: auto;
  min-width: auto;
  padding: 12px 22px;
  font-size: 15px;
  margin: 0;
}
@media (max-width: 768px) {
  .header__buttons {
    gap: 8px;
  }
  .header__buttons .button {
    padding: 9px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}
.header__lang {
  display: flex;
  align-items: center;
  margin-right: 10px;
  height: 40px;
}
.header__burger {
  display: none;
  position: relative;
  cursor: pointer;
  width: 32px;
  height: 11px;
}
.header__burger span {
  position: absolute;
  right: 0;
  z-index: 10;
  display: block;
  width: 32px;
  height: 1px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.header__burger span:nth-child(1) {
  top: -50%;
}
.header__burger span:nth-child(2) {
  top: 0;
}
.header__burger span:nth-child(3) {
  top: 50%;
}
.header__burger--active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}
.nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.nav .menu-item {
  position: relative;
}
.nav .menu-item:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #faff0e;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.nav .menu-item:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.logo {
  max-width: 260px;
  width: fit-content;
}
.logo img {
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    max-height: 44px;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: absolute;
  top: 0;
  left: -6%;
  width: 60vw;
  height: 100vh;
  z-index: 9;
  background: #000000;
  transform: translateX(-200%);
  transition: all 0.3s ease-in-out;
  padding: 50px 20px 20px;
}
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
}
.mobile-menu--active {
  transform: none;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.mobile-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.mobile-menu .button {
  margin-bottom: 15px;
  padding: 8px;
  width: 100%;
}
.mobile-menu .menu-item {
  font-size: 16px;
  font-weight: 500;
}

.hero {
  margin-bottom: 110px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    margin-bottom: 40px;
  }
}
.hero__iframe {
  height: 100%;
}
.hero__iframe .hero__wrapper {
  flex-direction: column !important;
  gap: 80px;
}
@media (max-width: 768px) {
  .hero__iframe .hero__wrapper {
    max-height: 700px;
  }
}
.hero__iframe .hero__right {
  width: 100%;
  max-width: 100%;
}
.hero__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "left  right"
    "button right";
  gap: 30px 40px;
  padding-top: 200px;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
  align-items: center;
}
.hero__left {
  grid-area: left;
}
.hero__right {
  grid-area: right;
}
.hero__button {
  grid-area: button;
  justify-self: start;
  margin-left: 0;
}
@media (max-width: 1280px) {
  .hero__wrapper {
    padding-top: 160px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .hero__wrapper {
    display: flex;
    flex-direction: column;
    grid-template-areas: none;
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 90px;
    align-items: stretch;
  }
  .hero__left   { order: 1; }
  .hero__right  { order: 2; width: 100%; display: flex; justify-content: center; }
  .hero__right img { max-width: 100%; height: auto; }
  .hero__button { order: 3; align-self: center; }
}
.hero__image {
  width: 100%;
}
.hero__image img {
  display: block;
  max-width: 560px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.hero__breadcrumbs {
  display: none !important;
  position: absolute;
  top: 150px;
  left: 0;
}
@media (max-width: 768px) {
  .hero__breadcrumbs {
    top: 80px;
  }
}
.hero__breadcrumbs a,
.hero__breadcrumbs p,
.hero__breadcrumbs span {
  color: #ffffff;
}
.hero__breadcrumbs #breadcrumbs a,
.hero__breadcrumbs #breadcrumbs p,
.hero__breadcrumbs #breadcrumbs span {
  color: #ffffff;
}
.hero__breadcrumbs .breadcrumb_last {
  color: #faff0e !important;
}
.hero__left {
  max-width: 605px;
  width: 100%;
}
@media (max-width: 1366px) {
  .hero__left {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .hero__left {
    max-width: 100%;
  }
}
.hero__title {
  font-size: 44px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero__title {
    margin-bottom: 15px;
    text-align: center;
  }
}
.hero__desc {
  width: 100%;
  opacity: 0.4;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .hero__desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero__desc {
    max-width: 100%;
  }
}
.hero__button {
  width: 200px;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__button {
    width: 100%;
  }
}
.hero__right {
  width: 50%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hero__right {
    max-width: 100%;
    width: 100%;
  }
}
.hero__right img {
  object-fit: cover;
}
.hero--tech {
  height: auto;
}
.hero--tech .hero__wrapper {
  flex-direction: column;
}

.breadcrumb_last {
  color: #6181e0;
}

.table-of-content {
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .table-of-content {
    margin-bottom: 40px;
  }
}
.table-of-content__wrapper {
  position: relative;
  z-index: 3;
  background-color: #faff0e;
  border-radius: 10px;
}
.table-of-content__title {
  display: block;
  width: 100%;
  padding: 24px 16px;
  font-weight: 500;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
}
@media (max-width: 768px) {
  .table-of-content__title {
    text-align: center;
    font-size: 14px;
    padding: 14px;
  }
}
.table-of-content__icon {
  position: relative;
  margin-left: 3px;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease-in-out;
}
.table-of-content__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .table-of-content__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.table-of-content__list--active {
  opacity: 1;
  padding: 0 16px 16px;
  height: auto;
}
.table-of-content--active > .table-of-content__icon {
  transform: rotate(180deg);
}
.table-of-content a {
  color: #000000;
}
.table-of-content li {
  color: #000000;
}
@media (max-width: 768px) {
  .table-of-content li {
    font-size: 14px;
    list-style: auto;
    line-height: 130%;
    margin-left: 7px;
  }
}

.image-text-block {
  position: relative;
  margin-bottom: 80px;
}
.image-text-block__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  width: 100%;
  z-index: 3;
}
@media (max-width: 768px) {
  .image-text-block__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.image-text-block__wrapper--right {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .image-text-block__wrapper--right {
    flex-direction: column-reverse;
  }
}
.image-text-block__img {
  width: 50%;
  max-height: 500px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .image-text-block__img {
    width: 100%;
  }
}
.image-text-block__img img {
  width: fit-content;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .image-text-block__img img {
    width: 100%;
    object-fit: cover;
  }
}
.image-text-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.image-text-block__content ul li {
  list-style-type: disc;
}
@media (max-width: 768px) {
  .image-text-block__content {
    width: 100%;
  }
}
.image-text-block__title {
  margin-bottom: 20px;
}
.image-text-block__text span {
  color: #faff0e;
}
.image-text-block__text p {
  margin-top: 10px;
}

.table {
  margin-bottom: 80px;
  position: relative;
}
.table__wrapper {
  padding: 15px;
  background: #1b1b1b;
  border-radius: 10px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .table__wrapper {
    padding: 0;
  }
}
.table h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}
.table h3 {
  text-align: center;
  position: relative;
  z-index: 3;
  margin: 0 auto 20px;
}

table {
  font-size: 12px;
  width: 100%;
  border-collapse: collapse !important;
  border: 1px solid #faff0e;
}
table thead {
  background: #faff0e;
  text-align: center;
}
table thead td,
table thead th {
  border: none !important;
  color: #000000;
  font-weight: 700;
}
table thead td:first-child,
table thead th:first-child {
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
table thead td:last-child,
table thead th:last-child {
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
table td,
table th {
  padding: 24px 14px;
  border: 1px solid #faff0e;
  border-top: none;
}
@media (max-width: 768px) {
  table td,
  table th {
    padding: 14px 10px;
  }
}

.steps {
  margin-bottom: 80px;
}
.steps__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .steps__wrapper {
    gap: 40px;
  }
}
.steps h2 {
  margin-bottom: 10px;
}
.steps h3 {
  margin: 10px 0;
}
.steps__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  align-items: baseline;
}
@media (max-width: 768px) {
  .steps__content {
    width: 100%;
  }
}
.steps__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .steps__item {
    display: flex;
    flex-direction: column;
  }
}
.steps__item--1 .steps__content {
  justify-content: space-between;
}
.steps__item:nth-child(even) {
  flex-direction: row-reverse;
}
.steps__bottom {
  display: flex;
  flex-direction: column;
}
.steps__number {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 15px;
}
.steps__img {
  position: relative;
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .steps__img {
    width: 100%;
  }
}
.steps__img img {
  max-width: 80%;
  width: 100%;
}
@media (max-width: 768px) {
  .steps__img img {
    width: 100%;
  }
}
.steps__img::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 100%;
  display: block;
  width: 600px;
  height: 600px;
  background: #7695f1;
  filter: blur(290px);
  z-index: -1;
}
.steps__desc {
  max-width: 470px;
}
@media (max-width: 768px) {
  .steps__top {
    margin-bottom: 80px;
  }
}
.steps__range {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #faff0e;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 15px 0;
}
.steps__range span {
  color: #faff0e;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.steps__range--line {
  position: relative;
}
.steps__range--line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translatey(-50%);
  width: 50px;
  border-bottom: 1px solid #faff0e;
  margin-left: 5px;
}
.steps__range--number {
  margin-left: 70px;
}

.faq {
  position: relative;
  margin-bottom: 80px;
}
.faq__wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
}
.faq h2 {
  margin-bottom: 30px;
}
.faq h3 {
  transition: all 0.3s ease-in-out;
}
.faq__tab {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
.faq__tab-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #ffffff;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  text-align: left;
  color: #000000;
}
.faq__tab-label:hover {
  background: #faff0e;
}
.faq__tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.faq__tab-label h3 {
  color: #000000;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 768px) {
  .faq__tab-label h3 {
    font-size: 18px;
  }
}
.faq__tab-content {
  max-height: 0;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  text-align: left;
  color: white;
}
@media (max-width: 768px) {
  .faq__tab-content {
    font-size: 14px;
  }
}
.faq__tab-content p {
  color: #000000;
}
.faq__tab input {
  display: none;
}
.faq__tab input:checked + .faq__tab-label {
  background: #faff0e;
  color: #ffffff;
}
.faq__tab input:checked + .faq__tab-label h3 {
  color: #000000;
}
.faq__tab input:checked + .faq__tab-label::after {
  transform: rotate(90deg);
  color: #000000;
}
.faq__tab input:checked ~ .faq__tab-content {
  max-height: 100vh;
  padding: 15px;
}

.slots {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-bottom: 80px;
}
.slots__wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
}
@media (max-width: 768px) {
  .slots__wrapper {
    text-align: left;
  }
}
.slots h2 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .slots h2 {
    margin-bottom: 25px;
  }
}
.slots__content {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .slots__content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}
.slots__item {
  display: block;
  position: relative;
  background: #faff0e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.slots__item::before {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.slots__item-back {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 90%;
  width: 90%;
  visibility: hidden;
  opacity: 0;
  z-index: 4;
  transition: all 0.3s ease-in-out;
}
.slots__item-title {
  font-weight: 600;
}
@media (max-width: 768px) {
  .slots__item-title {
    font-size: 16px;
    font-weight: 900;
  }
}
.slots__item-play, .slots__item-demo {
  font-size: 12px;
  padding: 6px;
}
@media (max-width: 768px) {
  .slots__item-play, .slots__item-demo {
    font-size: 11px;
    padding: 11px;
  }
}
.slots__item-blur {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  z-index: 3;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
.slots__item:hover .slots__item-back {
  visibility: visible;
  opacity: 1;
}
.slots__item:hover .slots__item-blur {
  visibility: visible;
  opacity: 1;
}

.text {
  margin-bottom: 80px;
  position: relative;
}
.text__wrapper {
  position: relative;
  z-index: 3;
}
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  text-align: center;
  margin: 20px 0;
}
.text table {
  margin: 10px 0;
}
.text p {
  margin: 10px 0;
}
.text p:first-child {
  margin: 0 0 10px 0;
}
.text p:last-child {
  margin: 10px 0 0 0;
}
.text h2 {
  margin: 20px 0;
}
.text h3 {
  margin: 20px 0 10px;
}
@media (max-width: 768px) {
  .text__content {
    font-size: 14px;
  }
}
.text__content ul,
.text__content ol {
  list-style: auto;
  padding-left: 20px;
}
.text__content ul li {
  list-style-type: disc;
}

.author {
  margin-bottom: 80px;
}
.author__wrapper {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .author__wrapper {
    background: transparent;
    padding: 0;
  }
}
.author__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.author__image {
  width: 100px;
  height: 100px;
}
@media (max-width: 768px) {
  .author__image {
    width: 60px;
    height: 60px;
  }
}
.author__image img {
  border-radius: 50%;
}
.author__title {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .author__title {
    font-size: 20px;
  }
}
.author__desc {
  position: relative;
  z-index: 3;
  line-height: 150%;
}
@media (max-width: 768px) {
  .author__desc {
    font-size: 14px;
  }
}

.footer {
  background: #000000;
  margin: 20px 0;
}
.footer__wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.footer__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__content {
    display: flex;
    flex-direction: column;
  }
}
.footer__copyright {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 20px 0 0;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 12px;
  }
}
.footer__socials {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.footer__socials-item:hover {
  filter: invert(48%) sepia(93%) saturate(1348%) hue-rotate(203deg) brightness(92%) contrast(91%);
  -webkit-filter: invert(48%) sepia(93%) saturate(1348%) hue-rotate(203deg) brightness(92%) contrast(91%);
}
.footer__socials-label {
  display: none;
}
@media (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}

.archive-page .container {
  position: relative;
}
.archive-page .hero__breadcrumbs {
  left: 30px;
}
.archive-page__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
  padding-top: 200px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .archive-page__wrapper {
    padding-top: 110px;
  }
}
.archive-page__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 15px;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .archive-page__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
.archive-page__item {
  display: block;
  background: #1b1c1c;
  border: 6px solid #1b1c1c;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.archive-page__item:hover .archive__item-img {
  transform: scale(1.05);
}
.archive-page__item-img {
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.archive-page__item-img img {
  object-fit: cover;
}
.archive-page__item-content {
  display: flex;
  flex-direction: column;
  padding: 16px 10px 10px;
  text-align: left;
}
.archive-page__item-date {
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.384px;
  color: #faff0e;
  margin-bottom: 15px;
}
.archive-page__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.576px;
}
.archive-page__error {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 60vh;
}
.archive-page__error-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
}
.archive-page__error-left h3 {
  font-size: 56px;
  margin-bottom: 10px;
}
.archive-page__error-left span {
  font-size: 24px;
  margin-bottom: 20px;
}
.archive-page__error-left a {
  width: 170px;
}
.archive-page__error-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.archive-page__error-right svg {
  width: 100%;
}

.archive {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  height: 100vh;
}
.archive .footer-error {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: transparent;
}

.pagination .nav-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.pagination .nav-links .page-numbers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.pagination .nav-links .current {
  background: #faff0e !important;
}
.pagination .nav-links .prev,
.pagination .nav-links .next {
  font-size: 25px;
  font-weight: 300;
}

.error-page__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 3;
  padding-top: 200px;
  padding-bottom: 80px;
  height: 90vh;
}
@media (max-width: 768px) {
  .error-page__wrapper {
    flex-direction: column-reverse;
  }
}
.error-page__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
}
@media (max-width: 768px) {
  .error-page__left {
    width: 100%;
  }
}
.error-page__left h3 {
  font-size: 56px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .error-page__left h3 {
    font-size: 36px;
    font-weight: 500;
  }
}
.error-page__left span {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .error-page__left span {
    font-size: 18px;
    font-weight: 400;
  }
}
.error-page__left a {
  width: 170px;
}
.error-page__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media (max-width: 768px) {
  .error-page__right {
    width: 100%;
  }
}
.error-page__right svg {
  width: 100%;
}

.error404 {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  height: 100vh;
}
.error404 .footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: transparent;
}

.single-page .hero__content {
  position: relative;
  max-width: 50%;
  width: 100%;
  background-color: #1b1b1b;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .single-page .hero__content {
    max-width: 100%;
  }
}
.single-page .hero__content span {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}
.single-page .hero__content h1 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
}
.single-page .hero h2 {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
}
.single-page .hero__desc {
  max-width: 100%;
  opacity: 1;
}
.single-page .hero__button {
  margin: 0 auto;
}
.single-page .hero__circle {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-page .hero__circle--thumbnail {
  background-size: contain;
}

.single-page-bonuses .hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.single-page-bonuses .hero__content {
  max-width: 100%;
}
.single-page-bonuses .hero h2 {
  font-size: 25px;
}
.single-page-bonuses .hero h3 {
  text-align: center;
  margin-bottom: 20px;
}
.single-page-bonuses .hero__code {
  background: #1b1c1c;
  padding: 25px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .single-page-bonuses .hero__code {
    max-width: 100%;
  }
}
.single-page-bonuses .hero__code-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .single-page-bonuses .hero__code-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
}
.single-page-bonuses .hero__code input {
  background: transparent;
  width: 75%;
  border-radius: 70px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
}
.single-page-bonuses .hero__code__copy {
  width: 25%;
  cursor: pointer;
}
.single-page-bonuses .hero__code-button {
  width: 100%;
}

.single-page-apps .hero__apps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 25px;
  width: 100%;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .single-page-apps .hero__apps {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.single-page-apps .hero__apps-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
  border: 1px solid transparent;
}
@media (max-width: 1024px) {
  .single-page-apps .hero__apps-button {
    width: 100%;
  }
}
.single-page-apps .hero__apps-button:hover {
  background-color: #faff0e;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.single-page-apps .hero__apps-button img {
  margin-right: 8px;
  width: 25px;
  height: 20px;
}

.language__list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.language__list .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 90%;
  left: 0;
  background-color: #292a34;
  padding: 13px 10px;
  border: 1px solid gray;
  border-radius: 10px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  height: 0;
  opacity: 0;
}
.language__list .sub-menu:hover {
  opacity: 1;
  height: fit-content;
}
.language__list a[href^="#pll_switcher"] {
  font-size: 14px;
  background-color: #292a34;
  padding: 13px 10px;
  border: 1px solid gray;
  border-radius: 10px;
  padding-right: 25px;
}
.language__list a[href^="#pll_switcher"]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.25' d='m.75 1.125 3.75 3.75 3.75-3.75'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.language__list a[href^="#pll_switcher"]:hover + .sub-menu {
  opacity: 1;
  height: fit-content;
}
.language__list a[href^="#pll_switcher"]:hover:after {
  transform: translateY(-50%) rotate(180deg);
}
.language__list a img {
  width: 15px !important;
  height: 12px !important;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

textarea {
  resize: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

h1 {
  margin: 0;
}

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

* {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}

body {
  background: #000000;
}

#page {
  overflow: hidden;
}

/* Footer — Responsible Gambling / Disclaimer / Language / Accessibility (Stage 4) */
.footer__rg,
.footer__disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.footer__rg-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}
.footer__rg-links {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}
.footer__rg-links li {
  padding: 6px 0;
}
.footer__rg-links a,
.footer__disclaimer a {
  color: #faff0e;
  text-decoration: underline;
}
.footer__rg-links a:hover,
.footer__disclaimer a:hover {
  text-decoration: none;
}
.footer__disclaimer p {
  margin: 0 0 8px 0;
}
/* TOC (table of contents) — native details/summary */
.toc {
  margin: 0 0 40px 0;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid #faff0e;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .toc {
    margin: 0 0 24px 0;
    padding: 14px 18px;
  }
}
.toc__summary {
  cursor: pointer;
  padding: 6px 0;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  list-style: none;
  position: relative;
  padding-right: 28px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.toc__summary::-webkit-details-marker { display: none; }
.toc__summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 24px;
  font-weight: 300;
  color: #faff0e;
  line-height: 1;
}
.toc[open] > .toc__summary::after {
  content: "−";
}
.toc__list {
  margin: 14px 0 4px 0;
  padding-left: 24px;
  list-style: decimal;
}
.toc__list li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #ffffff;
}
.toc__list a {
  color: #faff0e;
  text-decoration: none;
}
.toc__list a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .toc__summary { font-size: 16px; }
  .toc__list { padding-left: 20px; }
  .toc__list li { font-size: 14px; }
}

/* Stage 5 additions — Author card, tables, FAQ, game-gallery, key-facts */
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border-left: 4px solid #faff0e;
}
.author-card__image {
  flex: 0 0 120px;
}
.author-card__image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.author-card__body h3,
.author-card__name {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.author-card__role {
  color: #faff0e;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}
.author-card__bio {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.85);
}
.key-facts {
  margin: 24px 0;
}
.key-facts__table {
  width: 100%;
  border-collapse: collapse;
}
.key-facts__table th,
.key-facts__table td {
  padding: 12px 16px;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
}
.key-facts__table th {
  font-weight: 700;
  width: 40%;
  color: #faff0e;
}
.verification-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  margin: 12px 0;
}
.payments-table,
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.payments-table thead,
.timeline-table thead {
  background: #1a1a1a;
}
.payments-table thead th,
.payments-table thead td,
.timeline-table thead th,
.timeline-table thead td {
  color: #faff0e;
  background: #1a1a1a;
  border: none !important;
  font-weight: 700;
  text-align: left;
}
.payments-table th,
.payments-table td,
.timeline-table th,
.timeline-table td {
  padding: 10px 14px;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.game-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.game-gallery__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.game-gallery__item img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
}
.game-gallery__item span {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .pros-cons { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
}
.pros-cons__box {
  padding: 20px;
  border-radius: 10px;
}
.pros-cons__box--pros {
  background: rgba(46, 204, 113, 0.08);
  border-left: 4px solid #2ecc71;
}
.pros-cons__box--cons {
  background: rgba(231, 76, 60, 0.08);
  border-left: 4px solid #e74c3c;
}
.pros-cons__box h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
}
.pros-cons__box ul {
  margin: 0;
  padding-left: 20px;
}
.pros-cons__box li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.verdict {
  padding: 20px;
  background: rgba(255, 230, 14, 0.08);
  border-left: 4px solid #faff0e;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.6;
}
.faq-item {
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}
.faq-item > summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 20px;
  font-weight: 300;
  color: #faff0e;
}
.faq-item[open] > summary::after { content: "−"; }
.faq-item > div {
  padding: 0 0 8px 0;
  line-height: 1.6;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.article-disclaimer {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.text__content p { margin: 0 0 14px 0; line-height: 1.7; }
.text__content p > img {
  display: block;
  margin: 20px auto;
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .text__content p > img {
    max-width: 320px;
  }
}
.text__content ul { margin: 14px 0; padding-left: 24px; }
.text__content ul li { margin-bottom: 8px; line-height: 1.6; }
.text__content h3 {
  font-size: 22px;
  margin: 24px 0 12px 0;
}
.rg-resources {
  padding-left: 24px;
  margin: 16px 0;
}
.rg-resources li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ─── E-E-A-T footer nav extension ──────────────────────────── */
.footer__nav .nav__list {
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}
.footer__nav .nav__list li a {
  font-size: 14px;
  color: #cccccc;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
}
.footer__nav .nav__list li a:hover {
  color: #faff0e;
}
@media (max-width: 1200px) {
  .footer__nav .nav__list {
    gap: 8px 14px;
  }
  .footer__nav .nav__list li a {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .footer__nav .nav__list {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    display: block !important;
  }
  .footer__nav .nav__list {
    justify-content: center;
    padding: 0;
  }
  .footer__nav .nav__list li a {
    font-size: 12px;
  }
}
