:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --bg-dark: #0D0E12;
  --card-bg: #17191F;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-casino-table-games-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

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

.page-casino-table-games-guide__section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--bg-dark);
}

.page-casino-table-games-guide__section-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-casino-table-games-guide__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--text-main);
}

/* HERO Section */
.page-casino-table-games-guide__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, main offset from body */
  background-color: var(--bg-dark);
}

.page-casino-table-games-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width on desktop too */
}

.page-casino-table-games-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,140,26,0.5);
}

.page-casino-table-games-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-casino-table-games-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-casino-table-games-guide__hero-content h1 {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255,165,58,0.7);
}

.page-casino-table-games-guide__hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-main);
}

.page-casino-table-games-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255,140,26,0.4);
  border: none;
  cursor: pointer;
}

.page-casino-table-games-guide__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,140,26,0.6);
}

/* Game Cards Section */
.page-casino-table-games-guide__game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-casino-table-games-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,140,26,0.3);
}

.page-casino-table-games-guide__game-title {
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255,165,58,0.3);
}

.page-casino-table-games-guide__game-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-casino-table-games-guide__game-card p {
  font-size: 1em;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-casino-table-games-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.page-casino-table-games-guide__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--bg-dark);
  box-shadow: 0 2px 10px rgba(255,165,58,0.4);
}

/* Registration Guide Section */
.page-casino-table-games-guide__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-table-games-guide__step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
}

.page-casino-table-games-guide__step-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255,165,58,0.3);
}

.page-casino-table-games-guide__step-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-casino-table-games-guide__small-button {
  padding: 10px 20px;
  font-size: 1em;
}

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

.page-casino-table-games-guide__promo-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-table-games-guide__promo-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(255,165,58,0.2);
}

.page-casino-table-games-guide__promo-card p {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-main);
}

.page-casino-table-games-guide__btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255,140,26,0.3);
  border: none;
  cursor: pointer;
}

.page-casino-table-games-guide__btn-primary:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,140,26,0.5);
}

.page-casino-table-games-guide__all-promos-cta {
  margin-top: 50px;
}

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

.page-casino-table-games-guide__feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-table-games-guide__feature-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(255,165,58,0.2);
}

.page-casino-table-games-guide__feature-card p {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-main);
}

.page-casino-table-games-guide__feature-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* FAQ Section */
.page-casino-table-games-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

details.page-casino-table-games-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-casino-table-games-guide__faq-item summary.page-casino-table-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}