/* =====================================
   GLOBAL RESET
===================================== */

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

body {
  background: #0b0b0b;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

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

section {
  padding: 60px 0;
}

/* =====================================
   HEADER (если у тебя уже есть — не конфликтует)
===================================== */

header {
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  padding: 20px 0;
}

/* nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 17px;
}*/

nav a {
  color: #cfcfcf;
  transition: 0.3s ease;
}

nav a:hover {
  color: #f0c766;
}

/* Кнопки справа */

.header-buttons {
  display: flex;
  gap: 12px;
}

.btn-login {
  background: #1a1a1a;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-register {
  background: linear-gradient(135deg, #c6a14a, #f0c766);
  color: #000;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
}

/* =====================================
   HERO
===================================== */

.hero-gold {
  background: linear-gradient(145deg, #0b0b0b, #141414);
  text-align: center;
  border-bottom: 1px solid rgba(255,215,0,0.08);
}

.hero-gold h1 {
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.hero-gold p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #b5b5b5;
  font-size: 18px;
}

.hero-trust {
  margin-top: 20px;
  font-size: 14px;
  color: #9d9d9d;
}

/* =====================================
   GOLD BUTTON
===================================== */

.btn-gold {
  background: linear-gradient(135deg, #c6a14a, #f0c766);
  color: #000;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,199,102,0.4);
}

.btn-gold.large {
  padding: 18px 40px;
  font-size: 18px;
}

/* =====================================
   BONUS BLOCK
===================================== */

.bonus-card {
  background: #111111;
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;

  padding: 28px 40px;  /* меньше воздуха */
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;  /* меньше расстояние */
}

.bonus-card h2 {
  margin-bottom: 10px;
}

/* =====================================
   FEATURES
===================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  background: #111111;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.feature-box:hover {
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-5px);
}

.feature-box h3 {
  margin-bottom: 15px;
}

/* =====================================
   GAMES
===================================== */

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.game-card {
  background: #141414;
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.game-card:hover {
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-5px);
}

/* =====================================
   REVIEW SECTION
===================================== */

.review-section {
  background: #101010;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.review-section h2 {
  text-align: center;
  margin: 0 auto 40px auto;
}

/* =====================================
   CTA SECTION
===================================== */

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #111111, #0b0b0b);
}

.cta-section h2 {
  margin-bottom: 35px;
}


/* =====================================
   FOOTER
===================================== */

footer {
  background: #0f0f0f;
  border-top: 1px solid rgba(255,215,0,0.08);
  padding: 60px 0;
  color: #9d9d9d;
}

footer a:hover {
  color: #f0c766;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1000px) {

  .features-grid,
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {

  .features-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero-gold h1 {
    font-size: 32px;
  }

  section {
    padding: 60px 0;
  }
}
/* ===== HEADER FIX ===== */

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #f0c766; /* золотой */
}

/*nav {
  display: flex;
  gap: 28px;
  align-items: center;
}*/

nav a {
  color: #d0d0d0;
  font-weight: 500;
}

nav a:hover {
  color: #f0c766;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn-login {
  padding: 10px 16px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}

.btn-register {
  padding: 10px 18px;
  background: linear-gradient(135deg, #c6a14a, #f0c766);
  border-radius: 4px;
  color: #000;
  font-weight: 600;
}
/* =============================
   HEADER RESTORE
============================= */

header {
  background: #0b0b0b !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  padding: 20px 0;
}

/*header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}*/

header .logo {
  color: #f0c766 !important;
  font-weight: 600;
  font-size: 18px;
}

/*header nav {
  display: flex !important;
  gap: 28px !important;
  align-items: center !important;
}*/

header nav a {
  color: #cfcfcf !important;
  font-size: 17px;
  font-weight: 500;
}

header nav a:hover {
  color: #f0c766 !important;
}

header .btn-login {
  background: #1a1a1a !important;
  color: #f0c766 !important;
  border: 2px solid #f0c766 !important;
  padding: 10px 16px;
  border-radius: 4px;
}

header .btn-register {
  background: linear-gradient(135deg, #c6a14a, #f0c766) !important;
  color: #000000 !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
}
.bonus-right .btn-gold {
  padding: 14px 26px;
  font-size: 16px;
  white-space: nowrap;
}
.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #e0b95c;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}
/* ===============================
   FEATURE ICON PREMIUM STYLE
================================ */

.feature-box {
  text-align: center;
  padding: 50px 35px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0f1116, #0b0d12);
  border: 1px solid rgba(224, 185, 92, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 185, 92, 0.35);
  box-shadow: 0 0 35px rgba(224, 185, 92, 0.08);
}

/* Круг */
.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle at 30% 30%, #1a1c22, #0d0f14);
  border: 1px solid rgba(224, 185, 92, 0.2);

  box-shadow:
    0 0 15px rgba(224, 185, 92, 0.08),
    inset 0 0 15px rgba(224, 185, 92, 0.05);

  transition: all 0.35s ease;
}

/* SVG */
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #e0b95c;
  transition: all 0.35s ease;
}

/* Hover glow */
.feature-box:hover .feature-icon {
  box-shadow:
    0 0 25px rgba(224, 185, 92, 0.35),
    inset 0 0 20px rgba(224, 185, 92, 0.15);
  border-color: rgba(224, 185, 92, 0.6);
}

.feature-box:hover .feature-icon svg {
  transform: scale(1.1);
}
/* ===============================
   CASINO GAMES GRID
================================ */

.games-showcase {
  background: #0d0d0d;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

.games-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.game-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.game-tile img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Button */
.play-btn {
  background: linear-gradient(135deg, #c6a14a, #f0c766);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  color: #000;
  transform: translateY(10px);
  transition: 0.35s ease;
}

/* Hover effects */
.game-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(240,199,102,0.25);
}

.game-tile:hover img {
  transform: scale(1.08);
}

.game-tile:hover .game-overlay {
  opacity: 1;
}

.game-tile:hover .play-btn {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .games-grid-new {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 800px) {
  .games-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===============================
   PREMIUM FAQ ACCORDION
================================ */

.faq-section {
  background: #0e0e0e;
}

.faq-item {
  background: linear-gradient(145deg, #141414, #101010);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 0 28px;
  border: 1px solid rgba(240,199,102,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(240,199,102,0.25);
  box-shadow: 0 10px 35px rgba(240,199,102,0.08);
}

/* Активная карточка */
.faq-item.active {
  border-color: rgba(240,199,102,0.45);
  box-shadow:
    0 15px 45px rgba(240,199,102,0.12),
    0 0 25px rgba(240,199,102,0.15);
}

/* Вопрос */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Иконка */
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Ответ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    transform 0.35s ease,
    padding 0.3s ease;
  color: #bdbdbd;
  padding: 0;
}

/* Когда открыт */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #f0c766;
}
/* Уравнять Log in и Sign up */

/* Уравниваем Log in и Sign up */

header .btn-login,
header .btn-register {
    font-size: 16px !important;
    font-weight: 700 !important;
}
/* ===== GAMES CAROUSEL ===== */

.games-carousel {
  background: #0c0f16;
  padding: 80px 20px;
  text-align: center;
}

.games-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
}

.carousel-item {
  min-width: 220px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.carousel-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0e7fa3;
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #16a2c9;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}
.games-carousel {
  background: #0c0f16;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.games-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
}

.carousel-item {
  min-width: 260px;
  transition: transform 0.4s ease;
}

.carousel-item {
  position: relative;
  min-width: 180px;
  overflow: hidden;
}

.carousel-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Hover overlay */
.game-hover-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  opacity: 0;
  transition: 0.3s ease;
}

.game-hover-icon svg {
  width: 60px;
  height: 60px;
  fill: white;
  transform: scale(0.8);
  transition: 0.3s ease;
}

.carousel-item:hover .game-hover-icon {
  background: rgba(0,0,0,0.45);
  opacity: 1;
}

.carousel-item:hover .game-hover-icon svg {
  transform: scale(1);
}
.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;

  animation: scrollRight 25s linear infinite;
}

.carousel-item {
  min-width: 180px;
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
body {
  min-height: 100vh;
}

.menu li{
list-style:none;
}
.review-section h1,
.review-section h2 {
  text-align: center;
  margin-bottom: 40px;
}
/* текст по ширине на всем сайте */
p {
  text-align: justify;
}

/* центрирование CTA */
.btn-gold,
.btn-primary,
.cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto;
}

/* если кнопка внутри блока */
.cta,
.cta-box {
  text-align: center;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 30px;
}
h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
}
.text-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.text-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #ddd;
}
.review-section p {
  text-indent: 30px;
}
.footer-responsible {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 25px auto;
}
.footer-bottom {
  text-align: center;
}
.fw-tagline {
  font-size: 26px;
  font-weight: 600;
  margin-top: 10px;
}

.fw-subtitle {
  font-size: 18px;
  color: #bdbdbd;
  margin-bottom: 40px;
}
.page-image {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.page-image img {
  width: 800px;
  max-width: 100%;
  height: auto;
  display: block;

  border-radius: 12px;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.45),
    0 0 20px rgba(240,199,102,0.08);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-image img:hover {
  transform: scale(1.02);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.6),
    0 0 30px rgba(240,199,102,0.18);
}
.menu a.active {
  color: #f0c766;
  border-bottom: 2px solid #f0c766;
}
.header-menu{
width:100%;
max-width:1100px;
margin:0 auto;
}

.menu-row{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:12px;
list-style:none;
padding:0;
margin:0;
text-align:center;
}

/*.menu-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}*/

.menu-row li {
  margin: 0;
  padding: 0;
}

.menu-link {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .menu-row {
    gap: 22px;
  }
}
/* ===============================
   FINAL HEADER 2-ROW MENU FIX
================================ */

header {
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
}

header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 28px;
}

  .header-menu{
width:100%;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 60px;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

/*.header-menu .menu-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}*/

.header-menu .menu-row li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*.header-menu .menu-link {
  display: inline-block;
  white-space: nowrap;
  color: #d7d7d7;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.25s ease;
}*/

.header-menu .menu-link:hover,
.header-menu .menu-link.active {
  color: #f0c766;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

header .btn-login,
header .btn-register {
  min-width: 96px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header .btn-login {
  background: #1a1a1a;
  color: #f0c766;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 6px;
}

header .btn-register {
  background: linear-gradient(135deg, #c6a14a, #f0c766);
  color: #000000;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
}

@media (max-width: 1400px) {
  .header-menu .menu-row {
    gap: 24px;
  }

  .header-menu .menu-link {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  header .container {
    grid-template-columns: 1fr;
    row-gap: 20px;
    justify-items: center;
  }

  .header-actions {
    justify-self: center;
  }

  .header-menu .menu-row {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

/* .menu{
display:flex;
gap:30px;
list-style:none;
margin:0;
padding:0;
flex-wrap:wrap;
justify-content:center;
} */

.menu li{
list-style:none;
}

/*.menu-link{
color:#d7d7d7;
font-size:14px;
text-decoration:none;
}*/

.menu-link:hover{
color:#f0c766;
}

/*.menu a.active{
color:#f0c766;
border-bottom:2px solid #f0c766;
}*/

.header-menu{
width:100%;
max-width:1100px;
margin:0 auto;
}

.menu-row{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:10px;
list-style:none;
padding:0;
margin:10px 0;
text-align:center;
}
/*
.menu-link{
display:block;
padding:6px 0;
}

.menu-link.active{
color:#f0c766;
border-bottom:2px solid #f0c766;
}
/*
/* ===== MENU ===== */

.menu-row{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:10px;
list-style:none;
margin:10px 0;
padding:0;
text-align:center;
}

.menu-link{
display:block;
padding:6px 0;
color:#d7d7d7;
font-size:14px;
text-decoration:none;
transition:0.25s;
}

.menu-link:hover{
color:#f0c766;
}

.menu-link.active{
color:#f0c766;
border-bottom:2px solid #f0c766;
}

/* =====================================
   REVIEW TABLES
===================================== */

.review-section .table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 32px;
}

.review-section table {
  width: 100%;
  margin: 24px 0 32px;
  border-collapse: collapse;
  background: #111111;
  border: 1px solid rgba(240, 199, 102, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.review-section th,
.review-section td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.review-section th {
  background: linear-gradient(180deg, #1a1a1a, #141414);
  color: #f0c766;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgba(240, 199, 102, 0.18);
}

.review-section td {
  color: #e7e7e7;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.review-section tr:last-child td {
  border-bottom: none;
}

.review-section tbody tr:nth-child(even),
.review-section tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.review-section table td:first-child,
.review-section table th:first-child {
  width: 34%;
  font-weight: 600;
  color: #ffffff;
}

.review-section table td:last-child {
  color: #d7d7d7;
}

.review-section table + p,
.review-section p + table {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .review-section {
    overflow-x: auto;
  }

  .review-section table {
    min-width: 620px;
  }

  .review-section th,
  .review-section td {
    padding: 12px 14px;
    font-size: 14px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
