/* style/classic-table-games-guide.css */
:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000; /* Assuming body background from shared.css */
  --border-color: #e0e0e0;
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
}

.page-classic-table-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark);
}

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

.page-classic-table-games-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-classic-table-games-guide__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-classic-table-games-guide__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-classic-table-games-guide__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-classic-table-games-guide__list-item {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Hero Section */
.page-classic-table-games-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: var(--primary-color);
}

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