/* style/casino-roulette.css */

:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f4f4f4; /* body background from shared.css */
  --bg-dark-section: #1A202C;
  --bg-card-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-casino-roulette {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--bg-light); /* Inherit from body or set explicitly */
}

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

.page-casino-roulette__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-casino-roulette__sub-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-casino-roulette__section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

.page-casino-roulette__intro-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-casino-roulette__intro-section .page-casino-roulette__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-casino-roulette__intro-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-casino-roulette__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-casino-roulette__intro-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-align: left;
}

.page-casino-roulette__intro-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
}

.page-casino-roulette__intro-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block; /* Important for responsive images */
}