.page-game-guides-roulette-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2463; /* Main dark blue background */
}

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

.page-game-guides-roulette-strategy__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2463 0%, #1A3A70 100%); /* Dark blue gradient */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-guides-roulette-strategy__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-game-guides-roulette-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-game-guides-roulette-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-game-guides-roulette-strategy__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides-roulette-strategy__hero-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-game-guides-roulette-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
  z-index: 0;
}

.page-game-guides-roulette-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-game-guides-roulette-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-game-guides-roulette-strategy__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides-roulette-strategy__introduction,
.page-game-guides-roulette-strategy__basics,
.page-game-guides-roulette-strategy__strategies,
.page-game-guides-roulette-strategy__tips,
.page-game-guides-roulette-strategy__conclusion {
  padding: 60px 0;
}

.page-game-guides-roulette-strategy__introduction p,
.page-game-guides-roulette-strategy__basics p,
.page-game-guides-roulette-strategy__strategies p,
.page-game-guides-roulette-strategy__tips p,
.page-game-guides-roulette-strategy__conclusion p,
.page-game-guides-roulette-strategy__tips li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-game-guides-roulette-strategy__introduction a,
.page-game-guides-roulette-strategy__strategies a,
.page-game-guides-roulette-strategy__conclusion a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides-roulette-strategy__introduction a:hover,
.page-game-guides-roulette-strategy__strategies a:hover,
.page-game-guides-roulette-strategy__conclusion a:hover {
  color: #FFFFFF;
}

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

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

.page-game-guides-roulette-strategy__card {
  background-color: #1A3A70; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette-strategy__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides-roulette-strategy__card ul {
  list-style: none;
  padding: 0;
}

.page-game-guides-roulette-strategy__card li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #E0E0E0;
}

.page-game-guides-roulette-strategy__strategy-item {
  background-color: #1A3A70;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette-strategy__strategy-image,
.page-game-guides-roulette-strategy__tips-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette-strategy__call-to-action-section {
  text-align: center;
  background-color: #0A2463;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-game-guides-roulette-strategy__call-to-action-section p {
  margin-bottom: 25px;
  font-size: 1.15em;
  color: #E0E0E0;
}

.page-game-guides-roulette-strategy__main-cta-button,
.page-game-guides-roulette-strategy__secondary-cta-button,
.page-game-guides-roulette-strategy__final-cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-game-guides-roulette-strategy__main-cta-button,
.page-game-guides-roulette-strategy__final-cta-button {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue */
}

.page-game-guides-roulette-strategy__main-cta-button:hover,
.page-game-guides-roulette-strategy__final-cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-game-guides-roulette-strategy__secondary-cta-button {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-game-guides-roulette-strategy__secondary-cta-button:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-game-guides-roulette-strategy__tips ul {
  list-style: disc;
  margin-left: 25px;
  color: #E0E0E0;
}

.page-game-guides-roulette-strategy__tips li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-guides-roulette-strategy__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .page-game-guides-roulette-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-roulette-strategy__section-title {
    font-size: 2em;
  }
  .page-game-guides-roulette-strategy__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-roulette-strategy__hero {
    padding: 60px 15px;
  }
  .page-game-guides-roulette-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-roulette-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-game-guides-roulette-strategy__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-roulette-strategy__sub-title {
    font-size: 1.4em;
  }
  .page-game-guides-roulette-strategy__introduction p,
  .page-game-guides-roulette-strategy__basics p,
  .page-game-guides-roulette-strategy__strategies p,
  .page-game-guides-roulette-strategy__tips p,
  .page-game-guides-roulette-strategy__conclusion p,
  .page-game-guides-roulette-strategy__tips li {
    font-size: 1em;
  }
  .page-game-guides-roulette-strategy__grid-2-col {
    grid-template-columns: 1fr;
  }
  .page-game-guides-roulette-strategy__card,
  .page-game-guides-roulette-strategy__strategy-item {
    padding: 20px;
  }
  .page-game-guides-roulette-strategy__main-cta-button,
  .page-game-guides-roulette-strategy__secondary-cta-button,
  .page-game-guides-roulette-strategy__final-cta-button {
    width: 100%;
    margin: 10px 0;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-guides-roulette-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-roulette-strategy__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-roulette-strategy__hero-button {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}