/* style/casino.css */

/* Base styles for the page-casino scope */
.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main on Body BG #0A0A0A */
  background-color: #0A0A0A; /* Body BG (from shared.css but ensuring consistency) */
}

.page-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-casino__section {
  padding: 60px 0;
  overflow: hidden; /* Prevent content overflow */
}

.page-casino__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size for H2 */
  color: #F2C14E; /* Main accent color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-casino__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-casino__sub-title {
  font-size: clamp(1.5em, 3vw, 2em); /* Responsive font size for H3 */
  color: #FFD36B; /* Auxiliary accent color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-casino__text-block p,
.page-casino__text-block li {
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-casino__keyword-highlight {
  color: #F2C14E;
  font-weight: bold;
}