body {
  margin: 0;
  padding: 0;
  background: #16212f;
}

body,
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  border: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}

.main {
  margin-top: 140px; /* высота баннера + хедера */
}

/* Age Restriction Banner (quickandluckys Pirate Edition) */
.age-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #b22222 0%, #d4af37 100%);
  color: #fff;
  z-index: 1000;
  padding: 10px 0;
  text-align: center;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.age-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 15px;
}

.age-text {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffd86f;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.age-subtext {
  font-size: 14px;
  color: #f0f0f0;
  opacity: 0.9;
  font-weight: 500;
}

/* Small screens */
@media (max-width: 600px) {
  .age-banner-content {
    flex-direction: column;
    gap: 6px;
  }

  .age-text {
    font-size: 15px;
  }

  .age-subtext {
    font-size: 13px;
  }
}
/* 🏴‍☠️ Header (quickandluckys Style) */
.top-nav {
  background: linear-gradient(90deg, #16212f 0%, #2f6b8a 100%);
  position: sticky;
  top: 35px; /* отступ под age-banner */
  z-index: 999;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container-self {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.d-flex-self {
  display: flex;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}

/* Логотип */
.logo-img {
  display: block;
  max-width: 190px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Кнопка "Play Free Now" */
.cta-link {
  background: linear-gradient(90deg, #d4af37 0%, #e3b448 100%);
  color: #16212f;
  font-weight: 800;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(227, 180, 72, 0.4);
}

.cta-link:hover {
  background: linear-gradient(90deg, #ffd86f 0%, #d4af37 100%);
  box-shadow: 0 0 18px rgba(227, 180, 72, 0.7);
  transform: translateY(-2px);
}

/* 🔹 Мобильная адаптация */
@media (max-width: 768px) {
  .top-nav {
    top: 60px; /* баннер + адаптив */
    padding: 10px 0;
  }

  .logo-img {
    max-width: 150px;
  }

  .cta-link {
    font-size: 13px;
    padding: 10px 18px;
  }
}

.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 160px 20px 140px;
  overflow: hidden;
}

/* затемнение поверх картинки */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12, 15, 23, 0.85), rgba(12, 15, 23, 0.85));
  z-index: 1;
}

/* само изображение */
.hero-home {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

/* контент поверх */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffd86f;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #f2f2f2;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* CTA Button */
.hero-btn {
  background: linear-gradient(90deg, #d4af37 0%, #e3b448 100%);
  color: #16212f;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-btn:hover {
  background: linear-gradient(90deg, #ffd86f 0%, #d4af37 100%);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 110px 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }
}

/* ⚔️ Game Section */
.game {
  background: radial-gradient(circle at top, #0c0f17 0%, #16212f 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.game h1 {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #ffd86f;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.game p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #eaeaea;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0.9;
}

/* Image */
.game-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

/* CTA Button */
.game-btn {
  background: linear-gradient(90deg, #d4af37 0%, #e3b448 100%);
  color: #16212f;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.game-btn:hover {
  background: linear-gradient(90deg, #ffd86f 0%, #d4af37 100%);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .game {
    padding: 70px 15px;
  }

  .game h1 {
    font-size: 1.8rem;
  }

  .game p {
    font-size: 1rem;
  }
}
.game-sec {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
/* 🐉 Free Adventure Section */
.game.pb-5 {
  background: linear-gradient(180deg, #16212f 0%, #0c0f17 100%);
  color: #fff;
  text-align: center;
  padding-bottom: 100px;
}

.game.pb-5 h1 {
  font-family: "Cinzel", serif;
  font-size: 2.3rem;
  color: #ffd86f;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.game.pb-5 p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #eaeaea;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Image */
.game2-img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game2-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

/* Button */
.game2-btn {
  display: inline-block;
  background: linear-gradient(90deg, #d4af37 0%, #e3b448 100%);
  color: #16212f;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  margin-top: 24px;
}

.game2-btn:hover {
  background: linear-gradient(90deg, #ffd86f 0%, #d4af37 100%);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .game.pb-5 h1 {
    font-size: 1.8rem;
  }

  .game.pb-5 p {
    font-size: 1rem;
  }
}
/* 🏙️ Company Info Section (pure CSS) */
.comp-info {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  padding: 100px 20px 80px;
  text-align: center;
}

.comp-info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.comp-info-item {
  flex: 1 1 30%;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 35px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comp-info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.comp-info-item h3 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffd86f;
  margin-bottom: 12px;
}

.comp-info-item a,
.comp-info-item p {
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.5;
}

.comp-info-item a:hover {
  color: #ffd86f;
  text-decoration: underline;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .comp-info-container {
    flex-direction: column;
    align-items: center;
  }

  .comp-info-item {
    width: 100%;
    max-width: 420px;
  }
}
/* ⚖️ Disclaimer Section (pure CSS) */
.disclaimer-section {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}
.comp-info.about {
  background: linear-gradient(180deg, #16212f 0%, #0c0f17 100%);
}
.disclaimer-box {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 40px 25px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.disclaimer-box h2 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 2rem;
  color: #ffd86f;
  margin-bottom: 20px;
}

.disclaimer-box p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 70px 15px;
  }

  .disclaimer-box h2 {
    font-size: 1.6rem;
  }

  .disclaimer-box p {
    font-size: 0.95rem;
  }
}
/* ⚓ Footer Section (Pure CSS) */
.footer {
  background: #0c0f17;
  color: #eaeaea;
  text-align: center;
  padding: 70px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Poppins", sans-serif;
}

/* Top part: logo and button */
.footer-top {
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-btn {
  background: linear-gradient(90deg, #d4af37 0%, #e3b448 100%);
  color: #16212f;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: linear-gradient(90deg, #ffd86f 0%, #d4af37 100%);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Footer Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-links a {
  color: #eaeaea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd86f;
  text-decoration: underline;
}

/* Bottom */
.footer-bottom p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-links ul {
    gap: 15px;
  }

  .footer-btn {
    font-size: 13px;
    padding: 9px 22px;
  }
}
.game-frame {
  position: relative;
  width: 100%;
  height: 80vh;
  background: #000;
  overflow: hidden;
}

.game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.age-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Header располагается под баннером */
.top-nav {
  position: fixed;
  top: 45px; /* высота age-banner */
  left: 0;
  right: 0;
  z-index: 999;
}
/* 🧙 About Section */
.about-section {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h1 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #ffd86f;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.about-section p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #eaeaea;
  line-height: 1.8;
  opacity: 0.9;
  margin: 0 auto;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 70px 15px;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}
/* ✨ Features Section */
.features-section {
  background: linear-gradient(180deg, #16212f 0%, #0c0f17 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}

.features-header h3 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #ffd86f;
  margin-bottom: 50px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

/* Container */
.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Item */
.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  flex: 1 1 280px;
  max-width: 340px;
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

/* Icons */
.feature-icon {
  font-size: 2.8rem;
  color: #ffd86f;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Headings and text */
.feature-item h4 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: #ffd86f;
  margin-bottom: 12px;
}

.feature-item p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.7;
  opacity: 0.9;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 70px 15px;
  }

  .features-header h3 {
    font-size: 1.8rem;
  }

  .features-container {
    gap: 25px;
  }

  .feature-item {
    max-width: 100%;
  }
}
/* 🌟 Difference Section */
.difference-section {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}

.difference-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.difference-header h1 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #ffd86f;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.difference-header p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #eaeaea;
  opacity: 0.9;
  line-height: 1.8;
}

/* Container */
.difference-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Item */
.difference-item {
  flex: 1 1 300px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.difference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

/* Icon */
.difference-icon {
  font-size: 2.5rem;
  color: #ffd86f;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Titles and Text */
.difference-item h4 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: #ffd86f;
  margin-bottom: 10px;
}

.difference-item p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.7;
  opacity: 0.9;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .difference-section {
    padding: 70px 15px;
  }

  .difference-header h1 {
    font-size: 2rem;
  }

  .difference-header p {
    font-size: 1rem;
  }

  .difference-container {
    gap: 25px;
  }
}
/* 🧭 Unique Contact Layout */
.contact-section-alt {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  padding: 0;
  min-height: 600px;
  font-family: "Poppins", sans-serif;
}

/* Left Info Panel */
.contact-left {
  flex: 1 1 45%;
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.15),
    transparent 70%
  );
  padding: 80px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-box {
  max-width: 500px;
}

.contact-info-box h2 {
  font-family: "Cinzel", serif;
  color: #ffd86f;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info-box p {
  font-size: 1rem;
  color: #eaeaea;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.95;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin: 8px 0;
}

.contact-details i {
  color: #ffd86f;
  font-size: 1.1rem;
}

.contact-note {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Right Form Panel */
.contact-right {
  flex: 1 1 55%;
  background: rgba(255, 255, 255, 0.03);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-alt {
  width: 100%;
  max-width: 450px;
}

.contact-form-alt h3 {
  font-family: "Cinzel", serif;
  color: #ffd86f;
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.contact-form-alt input,
.contact-form-alt textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 15px;
  outline: none;
}

.contact-form-alt input::placeholder,
.contact-form-alt textarea::placeholder {
  color: #bbb;
}

.contact-btn {
  width: 100%;
  background: linear-gradient(90deg, #d4af37 0%, #e3b448 100%);
  color: #16212f;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #ffd86f 0%, #d4af37 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .contact-section-alt {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    padding: 60px 25px;
  }

  .contact-info-box h2 {
    font-size: 1.7rem;
  }
}
/* ⚖️ Terms Section */
.terms-section {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  padding: 100px 20px 80px;
  font-family: "Poppins", sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section h1 {
  font-family: "Cinzel", serif;
  color: #ffd86f;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.terms-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #eaeaea;
  opacity: 0.95;
  margin-bottom: 25px;
}

.terms-section h2 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd86f;
  margin: 40px 0 15px;
}

.terms-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.terms-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #eaeaea;
}

.terms-section ul li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
  color: #d4af37;
  font-size: 1.3rem;
}

.terms-section a {
  color: #ffd86f;
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

.terms-section address {
  font-style: normal;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 10px;
  margin-top: 20px;
  line-height: 1.7;
}

.terms-section address a {
  color: #ffd86f;
  font-weight: 500;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .terms-section {
    padding: 70px 15px;
  }

  .terms-section h1 {
    font-size: 2rem;
  }

  .terms-section h2 {
    font-size: 1.2rem;
  }
}
/* 🧘 Responsible Gaming Section */
.responsible-section {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  padding: 100px 20px 80px;
  font-family: "Poppins", sans-serif;
}

.responsible-container {
  max-width: 900px;
  margin: 0 auto;
}

.responsible-section h1 {
  font-family: "Cinzel", serif;
  color: #ffd86f;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.responsible-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #eaeaea;
  opacity: 0.95;
  margin-bottom: 25px;
}

.responsible-section h2 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd86f;
  margin: 40px 0 15px;
}

/* Lists */
.responsible-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.responsible-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #eaeaea;
}

.responsible-section ul li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
  color: #d4af37;
  font-size: 1.3rem;
}

/* Links */
.responsible-section a {
  color: #ffd86f;
  text-decoration: none;
}

.responsible-section a:hover {
  text-decoration: underline;
}

/* Address */
.responsible-section address {
  font-style: normal;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 10px;
  margin-top: 20px;
  line-height: 1.7;
}

.responsible-section address a {
  color: #ffd86f;
  font-weight: 500;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .responsible-section {
    padding: 70px 15px;
  }

  .responsible-section h1 {
    font-size: 2rem;
  }

  .responsible-section h2 {
    font-size: 1.2rem;
  }
}
/* 🔒 Privacy Policy Section */
.privacy-section {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  padding: 100px 20px 80px;
  font-family: "Poppins", sans-serif;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section h1 {
  font-family: "Cinzel", serif;
  color: #ffd86f;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.privacy-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #eaeaea;
  opacity: 0.95;
  margin-bottom: 25px;
}

.privacy-section h2 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd86f;
  margin: 40px 0 15px;
}

/* Lists */
.privacy-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.privacy-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #eaeaea;
}

.privacy-section ul li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
  color: #d4af37;
  font-size: 1.3rem;
}

/* Links */
.privacy-section a {
  color: #ffd86f;
  text-decoration: none;
}

.privacy-section a:hover {
  text-decoration: underline;
}

/* Address Box */
.privacy-section address {
  font-style: normal;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 10px;
  margin-top: 20px;
  line-height: 1.7;
}

.privacy-section address a {
  color: #ffd86f;
  font-weight: 500;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .privacy-section {
    padding: 70px 15px;
  }

  .privacy-section h1 {
    font-size: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.2rem;
  }
}
/* ⚖️ Disclaimer Page */
.disclaimer-section {
  background: linear-gradient(180deg, #0c0f17 0%, #16212f 100%);
  color: #fff;
  padding: 100px 20px 80px;
  font-family: "Poppins", sans-serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.disclaimer-section h1 {
  font-family: "Cinzel", serif;
  color: #ffd86f;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Subtitles */
.disclaimer-section h2 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd86f;
  margin: 40px 0 15px;
}

/* Paragraphs */
.disclaimer-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #eaeaea;
  opacity: 0.95;
  margin-bottom: 25px;
}

/* Lists */
.disclaimer-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.disclaimer-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #eaeaea;
}

.disclaimer-section ul li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
  color: #d4af37;
  font-size: 1.3rem;
}

/* Links */
.disclaimer-section a {
  color: #ffd86f;
  text-decoration: none;
}

.disclaimer-section a:hover {
  text-decoration: underline;
}

/* Address */
.disclaimer-section address {
  font-style: normal;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 10px;
  margin-top: 20px;
  line-height: 1.7;
}

.disclaimer-section address a {
  color: #ffd86f;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 70px 15px;
  }

  .disclaimer-section h1 {
    font-size: 2rem;
  }

  .disclaimer-section h2 {
    font-size: 1.2rem;
  }
}
/* 🧱 Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 15, 23, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-modal.hide {
  opacity: 0;
  visibility: hidden;
}

.age-modal-content {
  background: linear-gradient(180deg, #1b2735, #0c0f17);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.age-modal-content h2 {
  color: #ffd86f;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.age-modal-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eaeaea;
}

.age-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.age-btn {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.age-btn.yes {
  background: linear-gradient(90deg, #d4af37 0%, #ffd86f 100%);
  color: #16212f;
}

.age-btn.yes:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
  transform: translateY(-2px);
}

.age-btn.no {
  background: #333;
  color: #fff;
  border: 1px solid #444;
}

.age-btn.no:hover {
  background: #444;
}

/* 🔹 Responsive */
@media (max-width: 480px) {
  .age-modal-content {
    padding: 30px 20px;
  }
  .age-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
