.page-casino-table-games-guide {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-casino-table-games-guide__hero-section {
  position: relative;
  background-color: #000000;
  color: #FFFFFF;
  overflow: hidden;
  padding: 0;
}

.page-casino-table-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-casino-table-games-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

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

.page-casino-table-games-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-casino-table-games-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-casino-table-games-guide__button--register {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-casino-table-games-guide__button--register:hover {
  background-color: #e0a53b;
}

.page-casino-table-games-guide__button--login {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-casino-table-games-guide__button--login:hover {
  background-color: #333333;
}

.page-casino-table-games-guide__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-casino-table-games-guide__introduction,
.page-casino-table-games-guide__game-section,
.page-casino-table-games-guide__other-games,
.page-casino-table-games-guide__faq-section,
.page-casino-table-games-guide__resources {
  padding: 60px 0;
}

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

.page-casino-table-games-guide__game-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-casino-table-games-guide__game-content--reversed {
  flex-direction: row-reverse;
}

.page-casino-table-games-guide__game-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  width: 800px; /* Ensuring min 200px display size */
  height: 600px; /* Ensuring min 200px display size */
  object-fit: cover;
}

.page-casino-table-games-guide__game-details {
  flex: 1;
  max-width: 50%;
}

.page-casino-table-games-guide__game-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino-table-games-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-casino-table-games-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-casino-table-games-guide__list-item strong {
  color: #000000;
}

.page-casino-table-games-guide__game-section--alt-bg {
  background-color: #f8f8f8;
}

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

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

.page-casino-table-games-guide__card:hover {
  transform: translateY(-5px);
}

.page-casino-table-games-guide__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  width: 600px; /* Ensuring min 200px display size */
  height: 400px; /* Ensuring min 200px display size */
}

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

.page-casino-table-games-guide__card-title a {
  color: #000000;
  text-decoration: none;
}

.page-casino-table-games-guide__card-title a:hover {
  color: #FCBC45;
}

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

.page-casino-table-games-guide__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FCBC45;
  border-color: #000000;
}

.page-casino-table-games-guide__button--small:hover {
  background-color: #333333;
}

.page-casino-table-games-guide__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-casino-table-games-guide__cta-section--dark-bg {
  background-color: #000000;
  color: #FFFFFF;
}

.page-casino-table-games-guide__cta-section--dark-bg .page-casino-table-games-guide__section-title {
  color: #FFFFFF;
}

.page-casino-table-games-guide__cta-section--dark-bg .page-casino-table-games-guide__paragraph {
  color: #f0f0f0;
}

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

.page-casino-table-games-guide__button--transparent {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-casino-table-games-guide__button--transparent:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino-table-games-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-casino-table-games-guide__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino-table-games-guide__faq-answer {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-casino-table-games-guide__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-casino-table-games-guide__faq-answer a:hover {
  text-decoration: underline;
}

.page-casino-table-games-guide__resource-list {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-casino-table-games-guide__resource-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px 25px;
  flex: 1 1 auto;
  max-width: 300px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-casino-table-games-guide__resource-item:hover {
  background-color: #ededed;
}

.page-casino-table-games-guide__resource-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
}

.page-casino-table-games-guide__resource-item a:hover {
  color: #FCBC45;
}

@media (max-width: 992px) {
  .page-casino-table-games-guide__hero-title {
    font-size: 2.8em;
  }
  .page-casino-table-games-guide__hero-description {
    font-size: 1.1em;
  }
  .page-casino-table-games-guide__section-title {
    font-size: 2em;
  }
  .page-casino-table-games-guide__game-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-casino-table-games-guide__game-content--reversed {
    flex-direction: column;
  }
  .page-casino-table-games-guide__game-image,
  .page-casino-table-games-guide__game-details {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-casino-table-games-guide {
    padding-top: var(--header-offset, 80px);
  }
  .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-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-table-games-guide__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino-table-games-guide__game-image,
  .page-casino-table-games-guide__card-image,
  .page-casino-table-games-guide__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-casino-table-games-guide__game-image { width: 400px; height: 300px; } /* Example: ensuring min 200px display size */
  .page-casino-table-games-guide__card-image { width: 300px; height: 200px; } /* Example: ensuring min 200px display size */
  .page-casino-table-games-guide__card-image { height: 200px; }
  .page-casino-table-games-guide__game-cards {
    grid-template-columns: 1fr;
  }
  .page-casino-table-games-guide__resource-item {
    max-width: 100%;
  }
  /* Ensuring content area images don't overflow */
  .page-casino-table-games-guide img {
    max-width: 100%;
    height: auto;
  }
}

@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.8em;
  }
  .page-casino-table-games-guide__button {
    width: 100%;
  }
  .page-casino-table-games-guide__game-image { width: 250px; height: 187px; } /* Example: ensuring min 200px display size */
  .page-casino-table-games-guide__card-image { width: 250px; height: 166px; } /* Example: ensuring min 200px display size */
}