.page-casino-table-games {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-casino-table-games__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-casino-table-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-casino-table-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-casino-table-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-table-games__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-casino-table-games__hero-button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-casino-table-games__hero-button--primary:hover {
  background-color: #e6c200;
  color: #0A192F;
}

.page-casino-table-games__hero-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-casino-table-games__hero-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-casino-table-games__introduction-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  text-align: center;
}

.page-casino-table-games__section-title {
  font-size: 2.5em;
  color: #0A192F;
  margin-bottom: 30px;
  text-align: center;
}

.page-casino-table-games__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-casino-table-games__register-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #0A192F;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-casino-table-games__register-button:hover {
  background-color: #FFD700;
  color: #0A192F;
  border-color: #FFD700;
}

.page-casino-table-games__game-spotlight-section {
  padding: 60px 0;
  background-color: #eeeeee;
}

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

.page-casino-table-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-casino-table-games__game-card:hover {
  transform: translateY(-10px);
}

.page-casino-table-games__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-casino-table-games__game-card-title {
  font-size: 1.8em;
  color: #0A192F;
  margin: 20px 15px 10px 15px;
}

.page-casino-table-games__game-card-title a {
  color: #0A192F;
  text-decoration: none;
}

.page-casino-table-games__game-card-title a:hover {
  color: #FFD700;
}

.page-casino-table-games__game-card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-casino-table-games__game-card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-casino-table-games__game-card-button:hover {
  background-color: #e6c200;
}

.page-casino-table-games__strategy-guide-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-casino-table-games__strategy-article {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-casino-table-games__article-title {
  font-size: 2em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-casino-table-games__article-subtitle {
  font-size: 1.5em;
  color: #0A192F;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-casino-table-games__article-text {
  font-size: 1em;
  color: #444444;
  margin-bottom: 15px;
}

.page-casino-table-games__more-strategies-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 15px 30px;
  background-color: #0A192F;
  color: #FFD700;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-casino-table-games__more-strategies-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-casino-table-games__boss77-advantage-section {
  padding: 60px 0;
  background-color: #eeeeee;
}

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

.page-casino-table-games__advantage-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-casino-table-games__advantage-card:hover {
  transform: translateY(-8px);
}

.page-casino-table-games__advantage-card-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-casino-table-games__advantage-card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-casino-table-games__advantage-card-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-table-games__advantage-card-link:hover {
  text-decoration: underline;
}

.page-casino-table-games__cta-section {
  position: relative;
  padding: 80px 0;
  background-color: #0A192F;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-casino-table-games__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2;
}

.page-casino-table-games__cta-title {
  position: relative;
  z-index: 2;
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-casino-table-games__cta-text {
  position: relative;
  z-index: 2;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-casino-table-games__cta-button {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px;
}

.page-casino-table-games__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-casino-table-games__cta-button--primary:hover {
  background-color: #e6c200;
  color: #0A192F;
}

.page-casino-table-games__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-casino-table-games__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-casino-table-games__faq-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-casino-table-games__faq-list {
  margin-top: 40px;
}

.page-casino-table-games__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-casino-table-games__faq-question {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 10px;
}

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

.page-casino-table-games__faq-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-table-games__faq-link:hover {
  text-decoration: underline;
}

.page-casino-table-games__related-content-section {
  padding: 60px 0;
  background-color: #eeeeee;
  text-align: center;
}

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

.page-casino-table-games__related-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.page-casino-table-games__related-card:hover {
  transform: translateY(-8px);
}

.page-casino-table-games__related-card-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-casino-table-games__related-card-text {
  font-size: 0.95em;
  color: #666666;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino-table-games__hero-title {
    font-size: 2.8em;
  }
  .page-casino-table-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-table-games__section-title {
    font-size: 2em;
  }
  .page-casino-table-games__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-casino-table-games__hero-section {
    padding: 60px 20px;
  }
  .page-casino-table-games__hero-title {
    font-size: 2.2em;
  }
  .page-casino-table-games__hero-description {
    font-size: 1em;
  }
  .page-casino-table-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-table-games__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino-table-games__game-grid, .page-casino-table-games__advantage-grid, .page-casino-table-games__related-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-table-games__section-title {
    font-size: 1.8em;
  }
  .page-casino-table-games__cta-title {
    font-size: 2em;
  }
  .page-casino-table-games__cta-button {
    width: 90%;
    margin-bottom: 15px;
  }
  /* Mobile content area image resizing */
  .page-casino-table-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-casino-table-games__hero-title {
    font-size: 1.8em;
  }
  .page-casino-table-games__hero-description {
    font-size: 0.9em;
  }
  .page-casino-table-games__section-title {
    font-size: 1.5em;
  }
  .page-casino-table-games__cta-title {
    font-size: 1.8em;
  }
  .page-casino-table-games__hero-actions {
    width: 100%;
  }
  .page-casino-table-games__hero-button {
    width: 95%;
  }
  .page-casino-table-games__register-button {
    width: 90%;
  }
  .page-casino-table-games__more-strategies-button {
    width: 90%;
  }
  .page-casino-table-games__cta-button {
    width: 95%;
  }
}