/* style/game-guides-roulette-tips.css */
.page-game-guides-roulette-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-game-guides-roulette-tips__hero {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 50%, #FFD700 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Adjust as needed */
}

.page-game-guides-roulette-tips__hero-content {
  max-width: 800px;
}

.page-game-guides-roulette-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-game-guides-roulette-tips__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  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;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette-tips__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-guides-roulette-tips__section {
  padding: 60px 0;
}

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

.page-game-guides-roulette-tips__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-guides-roulette-tips__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-tips__content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-game-guides-roulette-tips__content-block h3 {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-game-guides-roulette-tips__image--small {
  max-width: 600px;
}

.page-game-guides-roulette-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-roulette-tips__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-roulette-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-roulette-tips__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-game-guides-roulette-tips__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-game-guides-roulette-tips__card p {
  font-size: 1em;
  color: #666;
}

.page-game-guides-roulette-tips__content-block ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-game-guides-roulette-tips__content-block ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-game-guides-roulette-tips__strategy-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
}

.page-game-guides-roulette-tips__strategy-item h3 {
  font-size: 2em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-guides-roulette-tips__strategy-item p {
  margin-bottom: 10px;
  color: #555;
  font-size: 1.1em;
}

.page-game-guides-roulette-tips__sub-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette-tips__list {
  list-style-type: decimal;
  margin-left: 30px;
  margin-bottom: 30px;
}

.page-game-guides-roulette-tips__list li {
  margin-bottom: 15px;
  font-size: 1.15em;
  color: #444;
  line-height: 1.7;
}

.page-game-guides-roulette-tips__list li strong {
  color: #0A2463;
}

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

.page-game-guides-roulette-tips__cta .page-game-guides-roulette-tips__section-title {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-game-guides-roulette-tips__cta .page-game-guides-roulette-tips__section-title::after {
  background-color: #fff;
}

.page-game-guides-roulette-tips__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-game-guides-roulette-tips__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-game-guides-roulette-tips__cta-note {
  margin-top: 25px;
  font-size: 1em;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-roulette-tips__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-roulette-tips__hero-description {
    font-size: 1.1em;
  }

  .page-game-guides-roulette-tips__section-title {
    font-size: 2em;
  }

  .page-game-guides-roulette-tips__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-guides-roulette-tips__hero {
    padding: 80px 15px;
  }

  .page-game-guides-roulette-tips__hero-title {
    font-size: 2em;
  }

  .page-game-guides-roulette-tips__hero-description {
    font-size: 1em;
  }

  .page-game-guides-roulette-tips__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-roulette-tips__section {
    padding: 40px 0;
  }

  .page-game-guides-roulette-tips__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-roulette-tips__content-block p,
  .page-game-guides-roulette-tips__content-block ul li,
  .page-game-guides-roulette-tips__list li {
    font-size: 1em;
  }

  .page-game-guides-roulette-tips__strategy-item h3 {
    font-size: 1.6em;
  }

  .page-game-guides-roulette-tips__sub-title {
    font-size: 1.8em;
  }

  .page-game-guides-roulette-tips__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}