body {
  font-family: "Poppins", sans-serif;
  background-color: #2c1a0b; /* темный каштан */
  color: #f3ece6; /* светлый бежево-кремовый */
  margin: 0;
  padding: 0;
}

/* Header */
.header-main {
  background: linear-gradient(135deg, #3c1e0d 0%, #183f32 100%); /* теплый темно-коричневый */
}
.brand-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: #e2b07f; /* светлый карамельный */
}
#burger {
  position: relative;
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

/* Buttons */
.btn-neon {
  background: #e2b07f;
  color: #2c1a0b;
  font-weight: 600;
  border-radius: 8px;
}
.btn-neon:hover {
  background: #d19664;
  color: #2c1a0b;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  color: #fbeed3;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
}

/* Parallax background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-bg.jpg') center center / cover no-repeat fixed;
  z-index: 0;
  filter: brightness(0.4) contrast(1.2);
}

/* Container above background */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Neon text */
.hero-section .neon-text {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #d67b3e, #f5d6b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(245,214,177,0.5), 0 0 20px rgba(214,123,62,0.5);
}

/* Paragraph */
.hero-section .text-secondary {
  color: rgba(251, 238, 211, 0.8)!important;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn-neon {
  background: linear-gradient(90deg, #d67b3e, #f5d6b1);
  color: #2b1a0e;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  box-shadow: 0 0 15px rgba(245,214,177,0.5), 0 0 30px rgba(214,123,62,0.5);
  transition: all 0.3s ease;
}

.btn-neon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(245,214,177,0.8), 0 0 40px rgba(214,123,62,0.8);
}

.btn-outline-light {
  border: 2px solid #f5d6b1;
  color: #fbeed3;
  background: transparent;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #f5d6b1;
  color: #2b1a0e;
  transform: translateY(-3px) scale(1.05);
}
/* About Us Section */
.about-section {
  background: linear-gradient(135deg, #183f32 0%, #51433e 100%);
  color: #f5ece3;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(226,176,127,0.1), transparent 70%);
  pointer-events: none;
}

.kicker {
  font-weight: 700;
  color: #e2b07f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 10px;
}

.neon-text {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #e2b07f, #d19664);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(226,176,127,0.3);
}

.lead {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}


.about-header .kicker {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5d6b1; /* Светлый коричневый */
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.about-header h2.neon-text {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f5d6b1, #183f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(245,214,177,0.5);
  margin-bottom: 15px;
}

.about-header p.lead {
  font-size: 1.1rem;
  color: #fbeed3;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

/* About Card */
.about-card {
  background: #183f32; /* Темно-каштановый фон */
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  color: #fbeed3;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  border: 1px solid rgba(245,214,177,0.3);
}

.about-card.highlight {
  background: linear-gradient(135deg, #183f32, #183f32);
  color: #fff;
  border: 1px solid #fbeed3;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(214,123,62,0.5), 0 5px 15px rgba(245,214,177,0.3);
}

/* Icon Styling */
.about-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f5d6b1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-card.highlight .icon {
  color: #fff;
}

.about-card:hover .icon {
  transform: scale(1.3) rotate(10deg);
  color: #fff;
}

/* Card Title */
.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Card Text */
.about-card p, 
.about-card ul {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fbeed3;
  margin: 0;
}

.about-card ul {
  padding-left: 20px;
  list-style: disc;
  text-align: left;
  margin-top: 10px;
}

.main-nav a {
  color: #f3ece6;
  font-weight: bold;
  padding: 0 10px;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #e2b07f;
}
a {
    text-decoration: none;
    color: #fff;
}
.about-card ul li {
  margin-bottom: 8px;
}
.hero-text h1 {
    font-size: 4rem;
}
.faq-section {
  position: relative;
  overflow: hidden;
  color: #fbeed3;
  padding: 80px 20px;
}

/* Parallax Background */
.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/faq-bg.jpg') center/cover no-repeat fixed;
  z-index: 0;
  filter: brightness(0.35);
}

/* Container relative to bg */
.faq-section .container {
  position: relative;
  z-index: 1;
}

/* Header */
.faq-section .kicker {
  font-weight: 700;
  text-transform: uppercase;
  color: #f5d6b1;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.faq-section h2.neon-text {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f5d6b1, #183f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(245,214,177,0.5);
  margin-bottom: 15px;
}

.faq-section p {
  color: #fbeed3;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  gap: 20px;
}

/* FAQ Card */
.faq-card {
  background: #51433e;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(245,214,177,0.3);
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(214,123,62,0.5), 0 10px 20px rgba(245,214,177,0.3);
}

/* FAQ Question */
.faq-question {
  width: 100%;
  padding: 15px 20px;
  background: rgba(58,30,13,0.8);
  color: #fbeed3;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(214,123,62,0.2);
}

.faq-question span {
  transition: transform 0.4s;
}

.faq-card.open .faq-question span {
  transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #51433e;
  transition: max-height 0.5s ease, padding 0.4s ease;
}

.faq-card.open .faq-answer {
  padding: 15px 20px;
  max-height: 300px;
}

.faq-answer p {
  color: #fbeed3;
  margin: 0;
  line-height: 1.6;
}

.faq-answer a {
  color: #f5d6b1;
  text-decoration: underline;
}
.offers-section {
  background: #364138; /* Тёмно-каштановый фон */
  color: #fbeed3;
  padding: 80px 20px;
}

.section-head .kicker {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  color: #f5d6b1;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-head h2.neon-text {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f5d6b1, #183f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(245,214,177,0.5);
  margin-bottom: 15px;
}

.section-head p {
  color: #fbeed3;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Casino Grid */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

/* Casino Card */
.casino-card {
  background: #183f32; /* Тёмно-каштановый */
  border-radius: 15px;
  padding: 25px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  border: 1px solid rgba(245,214,177,0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(214,123,62,0.5), 0 10px 20px rgba(245,214,177,0.3);
  background: linear-gradient(135deg, #5e2614, #183f32);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.casino-logo {
  width: 80px;
  border-radius: 8px;
  border: 1px solid #fbeed3;
  padding: 5px;
  background: #51433e;
  transition: transform 0.3s ease;
}

.casino-card:hover .casino-logo {
  transform: scale(1.1);
}

/* Card Features */
.casino-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.casino-features li {
  background: rgba(245,214,177,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s, color 0.3s;
}

.casino-features li:hover {
  background: rgba(245,214,177,0.3);
  color: #fff;
}

/* Card Footer */
.card-footer .btn-neon {
  max-width: 320px;
  margin: 10px auto;
  width: 100%;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  background: #183f32;
  color: #fff;
  transition: background 0.3s;
}

.card-footer .btn-neon:hover {
  background: #f5d6b1;
  color: #183f32;
}

.card-footer p {
  color: #fbeed3;
  font-size: 0.85rem;
  margin-top: 8px;
  line-height: 1.4;
}
/* Cards */
.casino-card, .faq-card, .popup-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #333;
}
.casino-card {
  border-color: #e2b07f;
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #3c1e0d 0%, #51433e 100%);
  color: #fbeed3;
  overflow: hidden;
  z-index: 1;
}

.site-footer .footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3c1e0d 0%, #51433e 100%);
  opacity: 0.95;
  z-index: 0;
}

/* Container */
.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Footer headings */
.site-footer .footer-head {
  font-weight: 700;
  font-size: 1.1rem;
  color: #f5d6b1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Brand */
.site-footer .footer-brand img {
  border-radius: 50%;
}

.site-footer .footer-brand p {
  color: #fbeed3!important;
}

.site-footer .footer-brand .neon-text {
  font-size: 1.2rem;
  background: linear-gradient(90deg, #f5d6b1, #d67b3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(245,214,177,0.5);
}

/* Navigation links */
.site-footer a {
  color: #fbeed3!important;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #d67b3e;
  text-decoration: underline;
}

/* Footer Links / Logos */
.site-footer .footer-links img {
  transition: transform 0.3s, filter 0.3s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.site-footer .footer-links img:hover {
  transform: scale(1.1);
}
.responsible-section {
  position: relative;
  padding: 100px 20px;
  color: #fbeed3;
  overflow: hidden;
}

/* Background */
.responsible-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3c1e0d 0%, #183f32 100%);
  opacity: 0.85;
  z-index: 0;
}

/* Container relative */
.responsible-section .container {
  position: relative;
  z-index: 1;
}

/* Header */
.responsible-section .kicker {
  font-weight: 700;
  color: #f5d6b1;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.responsible-section h2.neon-text {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f5d6b1, #183f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(245,214,177,0.5);
  margin-bottom: 20px;
}

.responsible-section p {
  color: #fbeed3!important;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Grid */
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.template-guide {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #f0f0f0;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.template-guide .container {
  max-width: 900px;
  margin: 0 auto;
}

/* === Intro === */
.guide-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  text-align: center;
  margin-bottom: 50px;
}

/* === Guide Blocks === */
.guide-block {
  background: rgba(30, 0, 30, 0.7);
  border: 1px solid #550055;
  border-left: 5px solid #d4af37; /* золотой акцент */
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.guide-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
}

/* === Headings === */
.guide-block h2 {
  font-size: 1.5rem;
  color: #d4af37;
  text-shadow: 0 0 6px #d4af37, 0 0 10px #ffdd73;
  margin-bottom: 15px;
}

/* === Lists === */
.guide-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.guide-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #eee;
}

.guide-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #d4af37;
  text-shadow: 0 0 4px #d4af37;
}

/* === Links === */
.guide-block a {
  color: #ffdd73;
  text-decoration: underline;
  transition: color 0.2s;
}

.guide-block a:hover {
  color: #ffffff;
}

/* === Final Block Special === */
.guide-block.final {
  border-left-color: #ff1a75;
  box-shadow: 0 0 25px rgba(255, 26, 117, 0.6);
}

/* Cards */
.responsible-card {
  background: rgba(75,30,15,0.95);
  border-radius: 15px;
  padding: 25px 20px;
  border: 1px solid rgba(245,214,177,0.3);
  transition: transform 0.4s, box-shadow 0.4s;
}

.responsible-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(214,123,62,0.5), 0 10px 20px rgba(245,214,177,0.3);
}

/* Highlight and Warning Cards */
.responsible-card.highlight {
  border: 2px solid #183f32;
}

.responsible-card.warning {
  border: 2px solid #f55c33;
  background: rgba(75,30,15,0.95);
}

/* Icons */
.responsible-card .icon {
  font-size: 2rem;
  color: #f5d6b1;
  margin-bottom: 15px;
}

/* Card headings */
.responsible-card h3.neon-text {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f5d6b1, #183f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Lists */
.responsible-card ul {
  padding-left: 20px;
  margin: 0;
}

.responsible-card ul li {
  margin-bottom: 8px;
  color: #fbeed3;
}

/* Links */
.responsible-card ul li a {
  color: #f5d6b1;
  text-decoration: underline;
}
.age-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  animation: fadeIn 0.3s ease forwards;
}

/* Карточка */
.age-card {
  background: #1a1a1a;
  border: 2px solid #d4af37;
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 40px #d4af37;
  transform: scale(0.8);
  animation: popIn 0.3s forwards;
}

/* Заголовок */
.age-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

/* Тело */
.age-body p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Кнопки */
.age-footer {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
}



.btn-deny {
  background: #2c2c2c;
  color: #fff;
  border: 2px solid #ff3b3b;
}

.btn-deny:hover {
  background: #ff3b3b;
  color: #fff;
}

.btn-accept {
  background: #d4af37;
  color: #1a1a1a;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px #d4af37;
}

.btn-accept:hover {
  background: #fff;
  color: #d4af37;
  box-shadow: 0 0 25px #d4af37;
}

/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (max-width: 900px) {
    .hero-text h1 {
    font-size: 32px;
} h2, h3 {
    font-size: 25px!important;
}
    #burger {
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}


}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 15% 0;
    }
    .hero-buttons  {
    justify-content: space-around;
}
  .about-head {
    text-align: center;
  }
  .about-cards {
    flex-direction: column;
    gap: 15px;
  }



  #burger {
    display: flex;
  }





        .section-head {
    text-align: center;
  }
        #burger span {
  display: flex;
  height: 4px;
  width: 100%;
  background: #e2b07f;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center;
}


#burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

#burger.active span:nth-child(2) {
  opacity: 0;
}

#burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

   
    .main-nav {
      display: flex;
      gap: 20px;
    }
    .main-nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    .main-nav a:hover {
      color: #ffcc00;
    }
      .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        width: 250px;
        height: 100%;
        background: #111;
        padding-top: 60px;
        transition: right 0.4s ease;
        z-index: 1000;
      }
      .main-nav.active {
        right: 0;
      }
      .main-nav a {
        padding: 15px 25px;
        font-size: 18px;
      }
}