.page-casino-table-games-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-casino-table-games-guide__hero-section {
  background-color: #f8f8f8; /* Light background for hero section */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-casino-table-games-guide__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-casino-table-games-guide__hero-title {
  font-size: 3.2em;
  color: #8B0000; /* Auxiliary dark red for prominent title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-casino-table-games-guide__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-casino-table-games-guide__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Primary gold color for CTA */
  color: #8B0000; /* Dark red text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-table-games-guide__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-casino-table-games-guide__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain image width */
  margin-top: 40px;
}

.page-casino-table-games-guide__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-casino-table-games-guide__introduction-section,
.page-casino-table-games-guide__game-section,
.page-casino-table-games-guide__strategy-section,
.page-casino-table-games-guide__why-choose-section,
.page-casino-table-games-guide__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-casino-table-games-guide__introduction-section {
  background-color: #f0f0f0;
}

.page-casino-table-games-guide__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary dark red for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-casino-table-games-guide__section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

.page-casino-table-games-guide__paragraph {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-casino-table-games-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-table-games-guide__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-casino-table-games-guide__game-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino-table-games-guide__game-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-casino-table-games-guide__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-casino-table-games-guide__game-button:hover {
  background-color: #e6c200;
}

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

.page-casino-table-games-guide__strategy-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-casino-table-games-guide__strategy-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-casino-table-games-guide__strategy-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-casino-table-games-guide__strategy-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-casino-table-games-guide__strategy-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-casino-table-games-guide__strategy-button:hover {
  background-color: #6a0000;
}

.page-casino-table-games-guide__why-choose-section {
  background-color: #f0f0f0;
}

.page-casino-table-games-guide__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-table-games-guide__feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-casino-table-games-guide__feature-icon {
  width: 200px; /* Enforce minimum size */
  height: 150px; /* Enforce minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-casino-table-table-games-guide__feature-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-casino-table-games-guide__feature-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-casino-table-games-guide__feature-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-casino-table-games-guide__feature-link:hover {
  color: #e6c200;
  border-color: #e6c200;
}

.page-casino-table-games-guide__cta-section {
  background-color: #8B0000; /* Auxiliary dark red for CTA section background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-casino-table-games-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-casino-table-games-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-table-games-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-table-games-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-table-games-guide__cta-button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-casino-table-games-guide__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-casino-table-games-guide__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-2px);
}

.page-casino-table-games-guide__sticky-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-casino-table-games-guide__sticky-button {
  display: block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.page-casino-table-games-guide__sticky-button:hover {
  transform: scale(1.05);
}

.page-casino-table-games-guide__sticky-button--register {
  background-color: #FFD700;
  color: #8B0000;
}

.page-casino-table-games-guide__sticky-button--register:hover {
  background-color: #e6c200;
}

.page-casino-table-games-guide__sticky-button--login {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-casino-table-games-guide__sticky-button--login:hover {
  background-color: #6a0000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino-table-games-guide__hero-title {
    font-size: 2.8em;
  }
  .page-casino-table-games-guide__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-casino-table-games-guide__hero-section {
    padding: 60px 0;
    flex-direction: column;
  }
  .page-casino-table-games-guide__hero-title {
    font-size: 2.2em;
  }
  .page-casino-table-games-guide__hero-description {
    font-size: 1em;
  }
  .page-casino-table-games-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino-table-games-guide__hero-image {
    margin-top: 30px;
  }
  .page-casino-table-games-guide__section-title {
    font-size: 1.8em;
  }
  .page-casino-table-games-guide__paragraph {
    font-size: 0.95em;
  }
  .page-casino-table-games-guide__game-image {
    height: 200px;
  }
  .page-casino-table-games-guide__cta-title {
    font-size: 2em;
  }
  .page-casino-table-games-guide__cta-description {
    font-size: 1em;
  }
  .page-casino-table-games-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-table-games-guide__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-casino-table-games-guide__sticky-buttons {
    flex-direction: row;
    bottom: 15px;
    right: 15px;
    left: 15px;
    justify-content: center;
  }
  .page-casino-table-games-guide__sticky-button {
    flex: 1;
    max-width: 150px;
    padding: 10px 15px;
    font-size: 0.9em;
  }
  /* Ensure all content images do not overflow and adhere to min-size */
  .page-casino-table-games-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-table-games-guide__game-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%;
    height: auto;
  }
  .page-casino-table-games-guide__feature-icon {
      width: 200px; 
      height: 150px; 
      max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-casino-table-games-guide__hero-title {
    font-size: 1.8em;
  }
  .page-casino-table-games-guide__section-title {
    font-size: 1.5em;
  }
  .page-casino-table-games-guide__game-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-table-games-guide__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-table-games-guide__feature-list {
    grid-template-columns: 1fr;
  }
  .page-casino-table-games-guide__cta-title {
    font-size: 1.6em;
  }
  .page-casino-table-games-guide__sticky-buttons {
    flex-direction: column;
    gap: 8px;
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  .page-casino-table-games-guide__sticky-button {
    max-width: none;
    width: 100%;
  }
}

/* Global rule for all content area images to ensure minimum size and responsiveness */
.page-casino-table-games-guide img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow natural width, then max-width 100% for responsiveness */
    height: auto; /* Allow natural height */
    object-fit: cover; /* Ensure image covers the area */
}

/* Specific override for feature-icon to ensure it respects min-size, even if HTML provides smaller dimensions */
.page-casino-table-games-guide__feature-icon {
    width: 200px; /* Fixed width for display, ensuring minimum */
    height: 150px; /* Fixed height for display, ensuring minimum */
    object-fit: cover; /* Ensure image covers the area */
}

/* Additional check for hero and game images to ensure they don't get tiny */
.page-casino-table-games-guide__hero-image img,
.page-casino-table-games-guide__game-image {
    min-width: 200px;
    min-height: 200px;
}