/*@import url(/css/header.css);
@import url(/css/hero.css);*/
@import url(/css/info.css);
@import url(/css/feautures.css);
@import url(/css/faq.css);
@import url(/css/casino-cards.css);
@import url(/css/footer.css);
@import url(/css/licence.css);
@import url(/css/table-of-content.css);
@import url(/css/reviews.css);
@import url(/css/levels-grid.css);
@import url(/css/symbols-grid.css);
@import url(/css/proscons.css);
@import url(/css/download-guide.css);

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root CSS Custom Properties */
:root {
  --color-bg: #262633;
    --color-accent: #ffd238;
    --color-text: #FFFFFF;
    --color-text-secondary: #AAAAAA;
    --color-content-bg: #363b58;
    --color-header: #f1be0a;
    --header-height: 80px;
}

/* Body & Typography */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

a {
  display: inline-block;
  text-decoration: none;
}

.content li, .game-info-block li {
  text-decoration: none;
  position: relative;
  padding-left: 30px;
}

.content li::before, .game-info-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url('/images/dollar.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Content Layout - Improved */
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin: 40px auto;
}

/* Main Content */
.content-layout__main {
  background-color: var(--color-content-bg);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
  padding: 30px 0;
  /* text-align: center; */
}

h1 {
  font-size: 3rem;
  color: var(--color-header);
  font-weight: 700;
  margin-bottom: 20px;
  z-index: 5;
  position: relative;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-header);
  font-weight: 700;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--color-header);
  font-weight: 700;
}

p,
li {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: left;
}

ol,
ul {
  list-style: none;
  list-style-position: inside;
  /* чтобы маркеры были внутри */
}


/* Table Styles */
.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}



table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

table th {
  background: #ffd138;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-align: center;
}

table th:first-child {
  border-top-left-radius: 12px;
}

table th:last-child {
  border-top-right-radius: 12px;
}

table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}


.content__img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}

.table__pros {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-layout__main,
  .content-layout__sidebar {
    margin-bottom: 20px;
  }

  .faq__details {
    text-align: left;
  }

  .footer__container {
    align-items: center;
  }

  .casino-card {
    flex-direction: column;
    text-align: center;
  }

  .casino-card__rating,
  .casino-card__logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .how-to-play__list {
    padding-left: 25px;
  }

  .interface__game-window,
  .interface__bets-panel {
    padding: 20px;
  }
}

/* Горизонтальное меню — минимализм */
.main-menu {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffd238;
  position: relative;
  z-index: 1;
}

.main-menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0 0 3px 0;
  list-style: none;
  min-height: 36px;
}

.main-menu__list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  padding: 2px 7px;
}

/* Гамбургер */
.main-menu__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: 12px;
}

.main-menu__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  border-radius: 1px;
}


/* Адаптивность для меню */
@media (max-width: 900px) {
  .main-menu__burger {
    display: flex;
  }
}

.main-menu__list li {
  margin-bottom: 0px;
}

.language-switcher {
  position: relative;
}

.language-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9999;
}

.main-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
}

.main-menu__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.main-menu {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  overflow-y: hidden;
}

.main-menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  gap: 12px;
  min-width: max-content;
  white-space: nowrap;
}

.main-menu__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.main-menu__link:hover {
  color: #ffd238;
  background: rgba(255, 210, 56, 0.15);
  border-color: rgba(255, 210, 56, 0.3);
}

.main-menu__list a.active {
  color: #ffcb09;
  font-weight: 600;
  background: rgba(255, 203, 9, 0.2);
  border-color: rgba(255, 203, 9, 0.4);
}

/* Скроллбар для PC */
.main-menu::-webkit-scrollbar {
  height: 4px;
}

.main-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.main-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 210, 56, 0.4);
  border-radius: 2px;
}

.main-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 210, 56, 0.6);
}

/* Мобильная версия */
@media (max-width: 768px) {
  .main-menu {
    padding: 6px 0;
  }
  
  .main-menu__list {
    gap: 8px;
    padding: 0 15px;
  }
  
  .main-menu__link {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 15px;
  }
}

a {
  color: #ffcb09;
}

/* Game Info Block Styles */
.game-info-section {
  padding: 20px 0;
  background: var(--color-bg);
}

.game-info-block {
  background: var(--color-content-bg);
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.game-info-title {
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.game-info-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.game-info-left {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #323747;
  border-radius: 8px;
  padding: 10px;
}

.game-thumbnail {
  margin-bottom: 12px;
}

.game-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(255, 210, 56, 0.15);
  object-fit: cover;
}

.game-play-button {
  background-color: var(--color-accent);
  color: var(--color-bg);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.game-play-button:hover {
  background-color: #e6b800;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 210, 56, 0.2);
}

.platform-icons {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.platform-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.platform-icon:hover {
  background: rgba(255, 210, 56, 0.15);
  transform: scale(1.1);
}

.platform-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.platform-icon:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
}

.game-info-right {
  flex: 1;
}

.game-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 2px;
}

.stat-value {
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-align:left;
}

.stats-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}
@media (max-width: 768px) {
  .stats-divider {
    display:none;
  }
}

.game-description {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.game-description p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.game-link {
  color: #4A9EFF;
  text-decoration: none;
  font-weight: 600;
}

.game-link:hover {
  color: #66B3FF;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .game-info-block {
    padding: 15px;
  }
  
  .game-info-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .game-info-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .game-info-left {
    flex: none;
    order: 1;
    width: 100%;
  }
  
  .game-info-right {
    flex: none;
    order: 2;
  }
  
  .game-image {
    width: 190px;
        height: 190px;
  }
  
  .game-stats {
    gap: 0;
  }
  
  .stat-row {
    padding-bottom:0px;
    flex-direction: column;
    gap: 8px;
  }
  
  .stat-item {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .stat-label,
  .stat-value {
    font-size: 0.75rem;
  }
  
  .stat-label {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .game-info-section {
    padding: 15px 0;
  }
  
  .game-info-block {
    padding: 12px;
  }
  
  .game-info-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .game-image {
    width: 150px;
    height: 150px;
  }
  
  .game-play-button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .platform-icon {
    width: 25px;
    height:25px;
    font-size: 15px;
  }
  
  .game-description p {
    font-size: 0.8rem;
  }
}


@media (max-width: 600px) {
  .curacao-content p {
    font-size: 0.7em;
  }
  .curacao-header {
    flex-direction: column;
    align-items: flex-start;
}

.curacao-logo-info-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.curacao-social {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-direction: column;
}
.curacao-info {
  text-align: left;
}
}
.faq__question h3 {
  display:inline-block;
  margin-bottom:0px;
}
p.content__title {
  font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-header);
    font-weight: 700;
}

.curacao-logo-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.curacao-subtitle {
  text-align:left;
}
.img-right {
  float: right;
  margin-left: 20px;
  max-height:285px;
  width:auto;
}
@media (max-width: 768px) {
  .img-right {
    float: none;
    margin: 10px auto;
  }
}
.avis-auteur {
  background: #22222e;
  border-left: 4px solid #f7a600;
  color: #f1f1f1;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  /* border-radius: 0.5rem; */
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); */
  font-style: italic;
}

/* Mobile Header Styles */
.header-mobile {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  z-index: 10001;
  padding: 10px 15px;
}

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

.header-mobile__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.header-mobile__logo {
  flex-shrink: 0;
}

.header-mobile__logo-img {
  max-width: 130px;
  height: auto;
}

.header-mobile__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-mobile__language-switcher {
  position: relative;
}

.header-mobile__language-toggle {
  background: transparent;
  border: 2px solid #eeaf02;
  color: #eeaf02;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font: 600 0.8rem sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 70px;
  justify-content: center;
}

.header-mobile__language-toggle:hover {
  background: rgba(238, 175, 2, .1);
}

.header-mobile__language-arrow {
  font-size: 0.7rem;
}

.header-mobile__language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #1a1a3e;
  border: 2px solid #eeaf02;
  border-radius: 6px;
  padding: 5px 0;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.header-mobile__language-switcher.active .header-mobile__language-dropdown {
  opacity: 1;
  visibility: visible;
}

.header-mobile__language-option {
  display: block;
  padding: 6px 12px;
  color: #fff;
  font: 500 0.8rem sans-serif;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  text-decoration: none;
}

.header-mobile__language-option:hover {
  background: rgba(238, 175, 2, .1);
  color: #eeaf02;
}

.header-mobile__language-option.active {
  background: rgba(238, 175, 2, .2);
  color: #eeaf02;
  font-weight: 600;
}

.header-mobile__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
}

.header-mobile__burger-line {
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-mobile__burger.active .header-mobile__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header-mobile__burger.active .header-mobile__burger-line:nth-child(2) {
  opacity: 0;
}

.header-mobile__burger.active .header-mobile__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header-mobile__buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}

.header-mobile__button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-mobile__button--primary {
  background: linear-gradient(to bottom, #ffd238, #deb629);
  color: var(--color-text);
  box-shadow: 0 4px 8px rgba(255, 140, 0, .3);
}

.header-mobile__button--primary:hover {
  background: linear-gradient(to bottom, #ffd238, #deb629);
  box-shadow: 0 6px 12px rgba(255, 140, 0, .4);
}

.header-mobile__button--secondary {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header-mobile__button--secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  z-index: -1;
  transition: left 0.3s ease;
}

.header-mobile__button--secondary:hover {
  color: var(--color-text);
}

.header-mobile__button--secondary:hover::before {
  left: 0;
}


.header-mobile__button-text {
  white-space: nowrap;
}

/* Show mobile header on mobile devices */
@media (max-width: 768px) {
  .header {
    display: none;
  }
  
  .header-mobile {
    display: block;
  }
  
  .main-content,
  main {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  .header-mobile {
    padding: 8px 12px;
  }
  
  .header-mobile__logo-img {
    max-width: 110px;
  }
  
  .header-mobile__language-toggle {
    padding: 5px 8px;
    font-size: 0.75rem;
    min-width: 60px;
  }
  
  .header-mobile__button {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  
  .main-content,
  main {
    margin-top: 90px;
  }
}

/* Top-up Button (Scroll to Top) */
.topup-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

.topup-button:hover {
  transform: translateY(-2px);
}

.topup-button__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Hide button initially */
.topup-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Show button when scrolled */
.topup-button.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .topup-button {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
  
  .topup-button__icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .topup-button {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  
  .topup-button__icon {
    width: 50px;
    height: 50px;
  }
}
.game-unified-schema {
  margin-top: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 10px;
  transition: all 0.3s ease;
  font-size: 0.7rem;
}

.game-unified-schema:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  box-shadow: 0 2px 6px rgba(255, 210, 56, 0.1);
}

.schema-unified-title {
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.schema-unified-title .emoji {
  font-size: 0.8rem;
}

.schema-unified-rating {
  text-align: center;
  margin: 4px 0;
  color: var(--color-text-secondary);
  font-size: 0.65rem;
  line-height: 1.2;
}

.schema-unified-rating-value {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 0.7rem;
}

.schema-unified-stars {
  color: #ffc107;
  margin: 0 2px;
  font-size: 0.65rem;
}

.schema-unified-count {
  color: var(--color-text-secondary);
  font-size: 0.6rem;
}

.schema-unified-info {
  color: var(--color-text-secondary);
  font-size: 0.6rem;
  text-align: center;
  line-height: 1.2;
  margin: 3px 0;
}

.schema-unified-price {
  color: var(--color-accent);
  font-weight: 600;
}

.schema-unified-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

.schema-unified-review {
  text-align: center;
  font-size: 0.6rem;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .game-unified-schema {
    margin-top: 10px;
    padding: 8px;
  }
  
  .schema-unified-title {
    font-size: 0.7rem;
  }
  
  .schema-unified-rating,
  .schema-unified-info,
  .schema-unified-review {
    font-size: 0.55rem;
  }
  
  .schema-unified-rating-value {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .game-unified-schema {
    padding: 6px;
  }
  
  .schema-unified-title {
    font-size: 0.65rem;
  }
  
  .schema-unified-rating,
  .schema-unified-info,
  .schema-unified-review {
    font-size: 0.5rem;
  }
}
/*Обертка для сравнений казино*/
        .platforms-container {
            max-width: 1200px;
            margin: 0 auto;
            
        }

        .platforms-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 20px 0;
        }

        .platform-block {
            background-color: #363b58;
            border: 2px solid #f1be0a;
            border-radius: 8px;
            padding: 25px;
            color: white;
            transition: transform 0.3s ease;
        }

        .platform-block:hover {
            transform: translateY(-3px);
        }

        .platform-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #f1be0a;
        }

        .platform-description {
            font-size: 14px;
            line-height: 1.6;
            color: #e2e2e2;
            margin: 0;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .platforms-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .platform-block {
                padding: 20px;
            }
            
            .platform-title {
                font-size: 16px;
            }
            
            .platform-description {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .platforms-container {
                padding: 15px;
            }
            
            .platform-block {
                padding: 15px;
            }
            
            .platform-title {
                font-size: 15px;
                margin-bottom: 12px;
            }
            
            .platform-description {
                font-size: 12px;
            }
        }
        .howto-section {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 15px;
      }

      .howto-container {
          background: var(--color-content-bg);
          border: 1px solid var(--color-accent);
          border-radius: 16px;
          padding: 30px 20px;
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      }

      .howto-container h2 {
          color: var(--color-accent);
          font-size: 2rem;
          font-weight: 800;
          text-align: center;
          margin-bottom: 10px;
          letter-spacing: 1px;
      }

      /* Slider Container */
      .howto-slider {
          position: relative;
          overflow: hidden;
          border-radius: 12px;
      }

      .slider-wrapper {
          display: flex;
          transition: transform 0.5s ease-in-out;
      }

      .howto-step {
          min-width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(255, 255, 255, 0.02);
          border-radius: 12px;
          padding: 40px 30px;
          position: relative;
          gap: 30px;
      }

      .howto-step.even {
          flex-direction: row-reverse;
          background: rgba(255, 210, 56, 0.03);
      }


      .howto-step-text {
          flex: 1;
          max-width: 450px;
          z-index: 1;
      }

      .howto-step-title {
          color: var(--color-accent);
          font-size: 1.4rem;
          font-weight: 700;
          margin-bottom: 15px;
          line-height: 1.2;
          letter-spacing: 0.5px;
      }

      .howto-step-text p:not(.howto-step-title) {
          color: var(--color-text-secondary);
          font-size: 1.1rem;
          line-height: 1.6;
          margin-bottom: 0;
      }

      .howto-step-img {
          flex: 1;
          max-width: 500px;
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .howto-step-img img {
          width: 100%;
          max-width: 450px;
          height: auto;
          border-radius: 12px;
          background: var(--color-bg);
          border: 2.5px solid var(--color-accent);
          box-shadow: 0 4px 32px rgba(255, 210, 56, 0.13);
          object-fit: contain;
      }

      /* Navigation Buttons */
      .slider-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(0, 0, 0, 0.4);
          color: var(--color-accent);
          border: 1px solid rgba(255, 210, 56, 0.3);
          width: 40px;
          height: 40px;
          border-radius: 50%;
          font-size: 1.2rem;
          font-weight: bold;
          cursor: pointer;
          transition: all 0.3s ease;
          z-index: 10;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .slider-nav:hover {
          background: rgba(255, 210, 56, 0.2);
          border-color: var(--color-accent);
          transform: translateY(-50%) scale(1.05);
          color: #ffdd55;
      }

      .slider-nav.prev {
          left: 10px;
      }

      .slider-nav.next {
          right: 10px;
      }

      /* Dots Indicator */
      .slider-dots {
          display: flex;
          justify-content: center;
          gap: 12px;
          margin-top: 25px;
      }

      .dot {
          width: 12px;
          height: 12px;
          border-radius: 50%;
          background: rgba(255, 210, 56, 0.3);
          cursor: pointer;
          transition: all 0.3s ease;
      }

      .dot.active {
          background: var(--color-accent);
          transform: scale(1.2);
      }

      /* Step Counter */
      .step-counter {
          text-align: center;
          margin-bottom: 20px;
          color: var(--color-accent);
          font-weight: 600;
          font-size: 1.1rem;
      }

      /* Author Quote */
      .avis-auteur {
          background: rgba(255, 210, 56, 0.05);
          border-left: 4px solid var(--color-accent);
          padding: 20px;
          margin-top: 30px;
          border-radius: 8px;
          font-style: italic;
          color: var(--color-text-secondary);
          line-height: 1.6;
      }

      /* Mobile Styles */
      @media (max-width: 768px) {
          .comment-jouer-a-chicken-road {
              font-size: 1.5rem;
              margin-bottom: 20px;
          }

          .howto-container {
              padding: 20px 15px;
          }

          .howto-step {
              flex-direction: column;
              padding: 30px 20px;
              gap: 20px;
              text-align: center;
          }

          .howto-step.even {
              flex-direction: column;
          }

          .howto-step-text {
              max-width: 100%;
              order: 2;
          }

          .howto-step-img {
              max-width: 100%;
              order: 1;
          }

          .howto-step-img img {
              max-width: 300px;
          }

          .slider-nav {
              width: 35px;
              height: 35px;
              font-size: 1rem;
          }

          .slider-nav.prev {
              left: 8px;
          }

          .slider-nav.next {
              right: 8px;
          }

          .howto-step-title {
              font-size: 1.2rem;
          }

          .howto-step-text p:not(.howto-step-title) {
              font-size: 1rem;
          }
      }

      @media (max-width: 480px) {
          .howto-container {
              padding: 15px 10px;
          }

          .howto-step {
              padding: 20px 15px;
          }

          .slider-nav {
              width: 30px;
              height: 30px;
              font-size: 0.9rem;
          }

          .slider-nav.prev {
              left: 5px;
          }

          .slider-nav.next {
              right: 5px;
          }

          .avis-auteur {
              padding: 15px;
              font-size: 0.9rem;
          }
      }

      /*COLUMNS WRAPPER*/

      .wrapper {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.wrapper .column {
  flex: 1;
  padding: 20px;
  background-color: #363b58;
  border: 2px solid #f1be0a;
  border-radius: 8px;
}

.wrapper .column h2,
.wrapper .column h3 {
  margin: 0 0 15px;
  font-size: 22px;
}

.wrapper .column p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: white;
}

.wrapper .column p:last-child {
  margin-bottom: 0;
}




/* Responsive */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/*bonus conteiner*/

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

.bonus-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.bonus-block {
    background-color: #262633;
    border: 2px solid #f1be0a;
    border-radius: 8px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: visible;
}

.bonus-block::before {
    content: "";
    background: url('../images/chicken-bonus.webp') no-repeat;
    background-size: contain;
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80px;
    height: 150px;
    z-index: 10;
}

.bonus-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f1be0a;
    padding-left: 20px;
    position: relative;
    z-index: 5;
}

.bonus-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e2e2e2;
}

@media (max-width: 768px) {
    .bonus-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-block {
        padding: 20px;
    }

    .bonus-block::before {
        top: -15px;
        left: -15px;
        width: 50px;
        height: 85px;
    }

    .bonus-title {
        font-size: 18px;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .bonus-container {
        padding: 15px;
    }
    
    .bonus-block {
        padding: 15px;
        /* margin: 25px 0; */
    }

    .bonus-block::before {
        top: -30px;
        left: -30px;
        width: 60px;
        height: 90px;
    }

    .bonus-title {
        font-size: 16px;
        padding-left: 10px;
    }
    
    .bonus-description {
        font-size: 13px;
    }
}
