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

body {
  font-family: "Inter", sans-serif;
  background: #fff; /* Белый фон */
  color: #444; /* Графитовый серый */
  line-height: 1.6;
}

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

/* Header */
.header {
  background: #fff;
  color: #444;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #d4af37;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #444;
}
.logo span {
  color: #d4af37; /* gold */
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
a {
  text-decoration: none;
}
.nav a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  font-weight: 700;
  transition: color 0.3s;
}

.nav a:hover {
  color: #d4af37;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 3px;
  background: #444;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero-content {
    max-width: 700px;
}
.hero {
  background: linear-gradient(rgba(68,68,68,0.6), rgba(68,68,68,0.6)), url("../img/casino-bg.jpg") no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 10% 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  background: #d4af37;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #b9962e;
}
.btn.small {
  padding: 8px 18px;
  font-size: 14px;
  margin-top: 20px;
}

/* Ofertas */
.offers {
  padding: 60px 20px;
  text-align: center;
}
.offers h2 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #444;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(68,68,68,0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

/* About */
.about {
  padding: 60px 0;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.about-row.reverse {
  flex-direction: row-reverse; /* зеркально */
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.about-img {
  flex: 1;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
/* FAQ */
.faq {
  padding: 60px 20px;
}
.faq h2 {
  margin-bottom: 30px;
  text-align: center;
  color: #444;
}
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  padding: 25px;
  background: #f8f8f8;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
  color: #444;
  font-size: 15px;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 18px;
}
.faq-question.active::after {
  content: "−";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.5s ease, padding 0.3s ease;
  color: #444;
}
.faq-answer p {
  padding: 10px 0;
}
/* Parallax Section */
.parallax-section.contacts {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #1f2233; /* графитовый серый */
}
.ob-banner {
    background-color: #d4af37;
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}
.parallax-section.contacts .overlay {
  background: rgba(255, 255, 255, 0.95); /* светлый фон для читаемости */
  padding: 50px 0;
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border: 2px solid #d4af37; /* золотой обвод */
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h3 {
  color: #d4af37; /* золотой */
  margin-bottom: 10px;
}

.contact-info p {
  color: #1f2233;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #1f2233;
}

/* Map */
.contact-map {
  flex: 1;
  min-width: 250px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}
/* Responsible */
.responsible {
  background: #f8f8f8;
  color: #444;
  text-align: center;
  padding: 60px 20px;
}
.responsible h2 {
  margin-bottom: 20px;
  color: #d4af37;
}

/* Footer */
.footer {
  background: #f2f2f2;
  color: #444;
  padding: 30px 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer a {
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 700;
}
.footer a:hover {
  color: #444;
}
.offer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(68,68,68,0.08);
  margin-bottom: 20px;
  background: #fff;
}

.offer-logo img {
  max-width: 120px;
  height: auto;
}

.offer-bonus {
  flex: 1;
  text-align: center;
  color: #444;
}
.bonus-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.bonus-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.offer-payments {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.offer-payments img {
  width: 50px;
  height: auto;
  opacity: 0.9;
  transition: 0.3s;
}
.offer-payments img:hover {
  opacity: 1;
}

.offer-rating {
  text-align: center;
  flex: 0.5;
}
.stars {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 5px;
}
.offer-rating p {
  font-size: 14px;
  color: #444;
}

.offer-action {
  flex: 0.7;
  text-align: center;
}
.offer-action .btn {
  background: #d4af37;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.offer-action .btn:hover {
  background: #b9962e;
}
.stats {
  position: relative;
  color: #333; 
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.parallax-bg {
  background: url('../img/casino-bg2.jpg') no-repeat center/cover;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  transform: translateZ(0);
  background-attachment: fixed;
  filter: brightness(0.6);
}

.stats h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #d4af37; 
}

.stats p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: #d4af37; 
}

.stat-item p {
  font-size: 16px;
  margin-top: 10px;
  color: #fff; 
}

.guide {
  background: #fff;
  color: #333; /* графитово-серый */
  padding: 60px 20px;
}

.guide h3.text-center {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.guide-block {
  background: #f9f9f9; /* светло-серый для блоков */
  border-left: 4px solid #d4af37; /* золотой акцент */
  padding: 20px 25px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.guide-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.guide-block h2 {
  font-size: 20px;
  font-weight: 600;
  color: #d4af37; /* золотой */
  margin-bottom: 12px;
}

.guide-block p {
  font-size: 15px;
  color: #333; /* графит */
  line-height: 1.7;
  margin-bottom: 10px;
}

.guide-block ul.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.guide-block ul.two-cols li {
  color: #555;
  font-size: 14px;
}

.guide-block.final {
  border-left-color: #b9962e; /* темнее золотого для выделения финального блока */
}
.footer-seals img {
    width: 100%;
}
.footer-seals {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 14px;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}
/* Responsive */
@media(max-width: 992px) {
   .about-row, .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .offer-item {
    flex-direction: column;
    text-align: center;
  }
  .offer-payments {
    justify-content: center;
  }
}
@media(max-width: 768px) {
  .contact-card {
    flex-direction: column;
  }
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 200px;
    transition: right 0.3s;
    padding: 20px;
    display: none;
    border-left: 2px solid #d4af37;
  }
  .nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .nav a {
    color: #444;
  }
  .nav.active {
    right: 0;
        margin-top: 10px;
        display: block;
        border-bottom: 2px solid #d4af37;
  }
  .burger {
    display: flex;
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }
}
