.page-casino-popular-slots-and-table-games {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
}

.page-casino-popular-slots-and-table-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-casino-popular-slots-and-table-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-casino-popular-slots-and-table-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.page-casino-popular-slots-and-table-games__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 40px 20px;
  max-width: 900px;
}

.page-casino-popular-slots-and-table-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Gold for emphasis */
}

.page-casino-popular-slots-and-table-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-casino-popular-slots-and-table-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-casino-popular-slots-and-table-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino-popular-slots-and-table-games__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-casino-popular-slots-and-table-games__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-casino-popular-slots-and-table-games__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino-popular-slots-and-table-games__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

/* General Section Styles */
.page-casino-popular-slots-and-table-games__introduction,
.page-casino-popular-slots-and-table-games__game-categories,
.page-casino-popular-slots-and-table-games__why-choose,
.page-casino-popular-slots-and-table-games__game-guides,
.page-casino-popular-slots-and-table-games__responsible-gaming,
.page-casino-popular-slots-and-table-games__cta-section,
.page-casino-popular-slots-and-table-games__faq,
.page-casino-popular-slots-and-table-games__conclusion {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-casino-popular-slots-and-table-games__introduction,
.page-casino-popular-slots-and-table-games__conclusion {
  background-color: #F8F8F8;
}

.page-casino-popular-slots-and-table-games__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-casino-popular-slots-and-table-games__text-content {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-casino-popular-slots-and-table-games__text-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-popular-slots-and-table-games__text-content a:hover {
  text-decoration: underline;
}

/* Game Categories Grid */
.page-casino-popular-slots-and-table-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-popular-slots-and-table-games__card {
  background-color: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.page-casino-popular-slots-and-table-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-casino-popular-slots-and-table-games__card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-casino-popular-slots-and-table-games__card-description {
  font-size: 1em;
  color: #E0E0E0;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-casino-popular-slots-and-table-games__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino-popular-slots-and-table-games__card-button:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

/* Feature List */
.page-casino-popular-slots-and-table-games__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
}

.page-casino-popular-slots-and-table-games__feature-item {
  background-color: #000000;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}

.page-casino-popular-slots-and-table-games__feature-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-casino-popular-slots-and-table-games__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-casino-popular-slots-and-table-games__feature-description a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-popular-slots-and-table-games__feature-description a:hover {
  text-decoration: underline;
}

/* Guide List */
.page-casino-popular-slots-and-table-games__guide-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
}

.page-casino-popular-slots-and-table-games__guide-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-casino-popular-slots-and-table-games__guide-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino-popular-slots-and-table-games__guide-description {
  font-size: 0.95em;
  color: #555555;
}

/* CTA Section */
.page-casino-popular-slots-and-table-games__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-casino-popular-slots-and-table-games__cta-section .page-casino-popular-slots-and-table-games__section-title {
  color: #FCBC45;
}

.page-casino-popular-slots-and-table-games__cta-section .page-casino-popular-slots-and-table-games__text-content {
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-casino-popular-slots-and-table-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-casino-popular-slots-and-table-games__button--register-cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-casino-popular-slots-and-table-games__button--register-cta:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-casino-popular-slots-and-table-games__button--download-cta {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-casino-popular-slots-and-table-games__button--download-cta:hover {
  background-color: transparent;
  color: #FFFFFF;
}

/* FAQ Section */
.page-casino-popular-slots-and-table-games__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-popular-slots-and-table-games__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-casino-popular-slots-and-table-games__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino-popular-slots-and-table-games__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-casino-popular-slots-and-table-games__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-popular-slots-and-table-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-popular-slots-and-table-games__hero-title {
    font-size: 3em;
  }
  .page-casino-popular-slots-and-table-games__hero-description {
    font-size: 1.2em;
  }
  .page-casino-popular-slots-and-table-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-casino-popular-slots-and-table-games__hero-section {
    min-height: 500px;
  }
  .page-casino-popular-slots-and-table-games__hero-title {
    font-size: 2.5em;
  }
  .page-casino-popular-slots-and-table-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-popular-slots-and-table-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-popular-slots-and-table-games__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino-popular-slots-and-table-games__section-title {
    font-size: 1.8em;
  }
  .page-casino-popular-slots-and-table-games__text-content {
    font-size: 1em;
  }
  .page-casino-popular-slots-and-table-games__grid {
    grid-template-columns: 1fr;
  }
  .page-casino-popular-slots-and-table-games__feature-list,
  .page-casino-popular-slots-and-table-games__guide-list {
    grid-template-columns: 1fr;
  }
  .page-casino-popular-slots-and-table-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-popular-slots-and-table-games__button--register-cta,
  .page-casino-popular-slots-and-table-games__button--download-cta {
    width: 80%;
    margin: 0 auto;
  }

  /* Mobile content area images - prevent overflow */
  .page-casino-popular-slots-and-table-games img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-popular-slots-and-table-games__card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-casino-popular-slots-and-table-games__hero-title {
    font-size: 2em;
  }
  .page-casino-popular-slots-and-table-games__hero-description {
    font-size: 0.95em;
  }
  .page-casino-popular-slots-and-table-games__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-casino-popular-slots-and-table-games__section-title {
    font-size: 1.5em;
  }
  .page-casino-popular-slots-and-table-games__card-title {
    font-size: 1.5em;
  }
  .page-casino-popular-slots-and-table-games__feature-title,
  .page-casino-popular-slots-and-table-games__guide-title,
  .page-casino-popular-slots-and-table-games__faq-question {
    font-size: 1.2em;
  }
  .page-casino-popular-slots-and-table-games__button--register-cta,
  .page-casino-popular-slots-and-table-games__button--download-cta {
    font-size: 1.1em;
  }
}