.page-game-guides-roulette-rules {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-game-guides-roulette-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-roulette-rules__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-roulette-rules__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette-rules__hero-title .highlight {
  color: #fff;
}

.page-game-guides-roulette-rules__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-game-guides-roulette-rules__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-game-guides-roulette-rules__section:nth-of-type(even) {
  background-color: #f0f5fa;
}

.page-game-guides-roulette-rules__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-roulette-rules__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-guides-roulette-rules__sub-title {
  font-size: 1.6em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-guides-roulette-rules__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-game-guides-roulette-rules__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-game-guides-roulette-rules__content-grid:nth-child(even) .page-game-guides-roulette-rules__image-wrapper {
    order: -1;
  }
}

.page-game-guides-roulette-rules__text-content p {
  margin-bottom: 15px;
  color: #555;
}

.page-game-guides-roulette-rules__text-content .highlight {
  color: #003366;
  font-weight: bold;
}

.page-game-guides-roulette-rules__image-wrapper {
  text-align: center;
}

.page-game-guides-roulette-rules__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-roulette-rules__image--full-width {
  margin-top: 30px;
  width: 100%;
}

.page-game-guides-roulette-rules__image-wrapper--center {
  margin-top: 30px;
}

.page-game-guides-roulette-rules__grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-game-guides-roulette-rules__grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-game-guides-roulette-rules__card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-roulette-rules__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides-roulette-rules__card-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-game-guides-roulette-rules__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-game-guides-roulette-rules__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
}

.page-game-guides-roulette-rules__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

.page-game-guides-roulette-rules__list li ul {
  margin-top: 10px;
  margin-left: 20px;
  list-style: disc;
  color: #666;
}

.page-game-guides-roulette-rules__list li ul li::before {
  content: '';
}

.page-game-guides-roulette-rules__numbered-list {
  list-style: none;
  padding-left: 0;
}

.page-game-guides-roulette-rules__numbered-list li {
  margin-bottom: 25px;
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
  color: #555;
}

.page-game-guides-roulette-rules__numbered-list li h3 {
  font-size: 1.5em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-guides-roulette-rules__numbered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette-rules__cta {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-game-guides-roulette-rules__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-game-guides-roulette-rules__cta-subtitle {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-game-guides-roulette-rules__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette-rules__btn--primary {
  background-color: #FFD700;
  color: #003366;
}

.page-game-guides-roulette-rules__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-guides-roulette-rules__btn--secondary {
  background-color: #0056b3; /* A slightly lighter blue for contrast */
  color: #fff;
}

.page-game-guides-roulette-rules__btn--secondary:hover {
  background-color: #004494;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .page-game-guides-roulette-rules__hero-title {
    font-size: 2em;
  }
  .page-game-guides-roulette-rules__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-roulette-rules__sub-title {
    font-size: 1.4em;
  }
  .page-game-guides-roulette-rules__card-title {
    font-size: 1.2em;
  }
  .page-game-guides-roulette-rules__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-roulette-rules__cta-title {
    font-size: 2em;
  }
  .page-game-guides-roulette-rules__cta-subtitle {
    font-size: 1em;
  }
}