/* ===========================
   СБРОС СТИЛЕЙ
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   HEADER
=========================== */
.site-header {
  background: #0a1f44;
  color: #fff;
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Навигация */
.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #e7e7e2;
  text-decoration: none;
  font-weight: 500;
}

.main-nav a:hover {
  color: #fff;
}

/* Бургер-кнопка */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: #eeeee9;
  transition: 0.3s;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: #0a1f44;
    width: 200px;
    padding: 15px;
    border-radius: 0 0 0 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }
}

.burger-btn.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}


/* ===========================
   SHOWCASE / OFFERS
=========================== */
main {
  width: 100%;
  margin: 40px auto;
}

.showcase h1,
main h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #001f36;
}

/* Общая секция */
.casino-offers {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.casino-offers h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #1c00aa;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Карточки */
.offer-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px;
  margin: 20px auto;
  max-width: 750px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

/* Лого */
.offer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-right: 25px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

/* Контент */
.offer-info {
  text-align: left;
  flex: 1;
}

.offer-info h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  color: #3700cf;
}

.offer-info p {
  margin: 6px 0;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.offer-info p strong {
  color: #fff;
}

/* Кнопка */
.offer-info a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #4141ff, #2b87ff);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.offer-info a:hover {
  background: linear-gradient(90deg, #2b99ff, #5a41ff);
  transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 768px) {
  .offer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .offer-logo {
    margin: 0 0 15px;
  }

  .offer-info {
    text-align: center;
  }
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #001f36;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* ===========================
   AGE POPUP 18+
=========================== */
.age-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-popup .popup-content {
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  max-width: 340px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.age-popup p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333;
}

.age-popup button {
  margin-top: 10px;
  padding: 10px 22px;
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .3s;
}

.age-popup button:hover {
  background: #005bb5;
}

/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #222;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  z-index: 9998;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #0073e6;
  text-decoration: underline;
}

.cookie-banner button {
  background: #0073e6;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .3s;
}

.cookie-banner button:hover {
  background: #005bb5;
}

/* ===========================
   ADAPTIVE
=========================== */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 10px;
    background: #001f36;
    padding: 10px;
    border-radius: 8px;
  }

  .offer-card {
    padding: 15px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}


/* ===========================
   HERO SECTION
=========================== */
.hero {
  background: linear-gradient(135deg, #001f36, #004080);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #e0e0e0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 5px;
}

.hero-stats .stat p {
  font-size: 1rem;
  color: #fff;
}

.btn-hero {
  display: inline-block;
  padding: 14px 26px;
  background: #ffcc00;
  color: #001f36;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background .3s;
}

.btn-hero:hover {
  background: #e6b800;
}


.why-choose-us {
  width: 100%;
  background: #0a1f44; /* основной темно-синий фон */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.why-choose-us h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #d3d5e1; /* золотой заголовок для контраста */
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(64, 0, 255, 0.6);
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.feature {
  background: rgba(255, 255, 255, 0.05); /* прозрачная светлая карточка */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 25px 20px;
  max-width: 250px;
  flex: 1 1 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.08);
}

/* Эмодзи вместо картинок */
.feature-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #b9c3ca; /* золотой заголовок */
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #dcdcdc; /* светлый текст */
}

/* Адаптив */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    max-width: 90%;
    margin-bottom: 20px;
  }
}


.faq {
  background: #0a1f44; /* тёмно-синий фон */
  color: #fff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.faq h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}

.faq-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.faq-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px 25px;
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.08);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffd700;
}

.faq-answer {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
  text-align: left;
}

/* Адаптив */
@media (max-width: 768px) {
  .faq-cards {
    flex-direction: column;
    align-items: center;
  }

  .faq-card {
    max-width: 90%;
  }
}

.player-reviews {
  background: #0a1f44; /* темно-синий фон */
  color: #fff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.player-reviews h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}

.reviews-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  max-width: 300px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.08);
}

.review-avatar {
  font-size: 50px;
  margin-right: 15px;
}

.review-info h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #ffd700;
}

.review-info p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.4;
  text-align: left;
}

/* Адаптив */
@media (max-width: 768px) {
  .reviews-cards {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    max-width: 90%;
    flex-direction: row;
  }
}

.policy-page {
  padding: 60px 20px;
  background: #0a1f44; /* темно-синий фон */
  color: #fff;
  font-family: "Poppins", sans-serif;
  min-height: 85vh;
}

.policy-page h1 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}

.policy-page h2 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-top: 25px;
  margin-bottom: 10px;
}

.policy-page p, 
.policy-page li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.policy-page ul {
  margin-left: 20px;
  list-style: disc;
}


