.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-casino__section {
  padding: 60px 0;
  text-align: center;
}

.page-casino__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Primary color */
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-casino__section-title--light {
  color: #FFF6D6;
}

.page-casino__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__text-block--light {
  color: #FFF6D6;
}

/* HERO Section */
.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A;
}

.page-casino__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-casino__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-casino__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-casino__hero-title {
  font-size: clamp(32px, 5vw, 54px);
  color: #FFD36B; /* Auxiliary color for impact */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-casino__hero-description {
  font-size: 19px;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-casino__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Contrast with button bg */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.page-casino__cta-button--light {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-casino__cta-button--light:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

/* Why Choose Us Section */
.page-casino__dark-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__feature-card {
  background-color: #0A0A0A; /* Darker than Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B50;
}

.page-casino__feature-card img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #F2C14E;
}

.page-casino__feature-title {
  font-size: 24px;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-casino__feature-description {
  font-size: 16px;
  color: #FFF6D6;
}

/* Game Categories Section */
.page-casino__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px #F2C14E50;
}

.page-casino__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-casino__game-card h3 {
  font-size: 22px;
  color: #F2C14E;
  margin: 20px 15px 10px;
  font-weight: 700;
}

.page-casino__game-description {
  font-size: 16px;
  color: #FFF6D6;
  padding: 0 15px 20px;
}

.page-casino__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-casino__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-casino__promo-list li {
  background-color: #0A0A0A;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  color: #FFF6D6;
  transition: transform 0.2s ease;
}

.page-casino__promo-list li:hover {
  transform: translateX(10px);
}

.page-casino__promo-list li strong {
  color: #FFD36B;
  font-size: 18px;
}

/* Getting Started Section */
.page-casino__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__step-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B50;
}

.page-casino__step-card img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #F2C14E;
}

.page-casino__step-title {
  font-size: 24px;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-casino__step-description {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-casino__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-casino__btn-secondary--light {
  color: #FFF6D6;
  border-color: #FFF6D6;
}

.page-casino__btn-secondary--light:hover {
  background-color: #FFF6D6;
  color: #111111;
}

/* Security and Support Section */
.page-casino__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__info-card {
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-casino__info-title {
  font-size: 24px;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-casino__info-description {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-casino__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6;
}

details.page-casino__faq-item summary.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-casino__faq-item summary.page-casino__faq-question::-webkit-details-marker {
  display: none;
}

details.page-casino__faq-item summary.page-casino__faq-question:hover {
  background: #0A0A0A;
}

.page-casino__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E;
}

.page-casino__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-casino__faq-item .page-casino__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  color: #FFF6D6;
  text-align: left;
}

/* Blog Section */
.page-casino__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__blog-card {
  background-color: #0A0A0A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B50;
}

.page-casino__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-casino__blog-title {
  font-size: 20px;
  margin: 15px;
  font-weight: 700;
}

.page-casino__blog-title a {
  color: #F2C14E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__blog-title a:hover {
  color: #FFD36B;
}

.page-casino__blog-date {
  font-size: 14px;
  color: #999;
  margin: -10px 15px 10px;
}

.page-casino__blog-excerpt {
  font-size: 15px;
  color: #FFF6D6;
  padding: 0 15px 20px;
}

.page-casino__button-group {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }
  .page-casino__hero-description {
    font-size: 18px;
  }
  .page-casino__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
}

@media (max-width: 768px) {
  .page-casino {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-casino__section {
    padding: 40px 0;
  }
  .page-casino__container {
    padding: 15px;
  }

  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-casino__section,
  .page-casino__hero-section,
  .page-casino__feature-card,
  .page-casino__game-card,
  .page-casino__step-card,
  .page-casino__info-card,
  .page-casino__blog-card,
  .page-casino__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 30px;
  }

  .page-casino__hero-title {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 15px;
  }

  .page-casino__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-casino__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }

  .page-casino__cta-button,
  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino a[class*="button"],
  .page-casino a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino__cta-buttons,
  .page-casino__button-group,
  .page-casino__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-casino__features-grid,
  .page-casino__game-grid,
  .page-casino__steps-grid,
  .page-casino__info-grid,
  .page-casino__blog-grid {
    grid-template-columns: 1fr;
  }

  .page-casino__feature-title,
  .page-casino__game-title,
  .page-casino__step-title,
  .page-casino__info-title {
    font-size: 20px;
  }

  .page-casino__faq-qtext {
    font-size: 16px;
  }
  .page-casino__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-casino__faq-item summary.page-casino__faq-question {
    padding: 15px;
  }
  details.page-casino__faq-item .page-casino__faq-answer {
    padding: 0 15px 15px;
  }
}

/* Color Contrast Fixes (if needed) */
.page-casino__dark-bg {
  color: #ffffff; /* Dark background with light text */
}

.page-casino__light-bg {
  color: #333333; /* Light background with dark text */
}