/* style/game-guides-roulette-betting.css */

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

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

/* Hero Section */
.page-game-guides-roulette-betting__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-game-guides-roulette-betting__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.page-game-guides-roulette-betting__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

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

.page-game-guides-roulette-betting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFC107;
}

.page-game-guides-roulette-betting__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-guides-roulette-betting__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides-roulette-betting__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  text-align: center;
  z-index: 1;
}

.page-game-guides-roulette-betting__hero-image {
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.2);
}

/* Content Section */
.page-game-guides-roulette-betting__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-game-guides-roulette-betting__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-game-guides-roulette-betting__section-title {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 30px;
  border-bottom: 3px solid #FFC107;
  padding-bottom: 10px;
  text-align: center;
}

.page-game-guides-roulette-betting__sub-section-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-game-guides-roulette-betting__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #495057;
}

.page-game-guides-roulette-betting__article ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-guides-roulette-betting__article ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #495057;
}

.page-game-guides-roulette-betting__article a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-roulette-betting__article a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-game-guides-roulette-betting__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides-roulette-betting__image-inline {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Group */
.page-game-guides-roulette-betting__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-game-guides-roulette-betting__cta-button--secondary {
  background-color: #007BFF;
  color: #fff;
}

.page-game-guides-roulette-betting__cta-button--secondary:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-roulette-betting__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-roulette-betting__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-roulette-betting__section-title {
    font-size: 2em;
  }
  .page-game-guides-roulette-betting__sub-section-title {
    font-size: 1.5em;
  }
  .page-game-guides-roulette-betting__article {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-game-guides-roulette-betting__hero-section {
    padding: 60px 15px;
  }
  .page-game-guides-roulette-betting__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-roulette-betting__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides-roulette-betting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-roulette-betting__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-roulette-betting__sub-section-title {
    font-size: 1.3em;
  }
  .page-game-guides-roulette-betting__article {
    padding: 20px;
  }
  .page-game-guides-roulette-betting__article p,
  .page-game-guides-roulette-betting__article ul li {
    font-size: 1em;
  }
  .page-game-guides-roulette-betting__cta-group {
    flex-direction: column;
    align-items: center;
  }
  .page-game-guides-roulette-betting__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-roulette-betting__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-roulette-betting__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-roulette-betting__sub-section-title {
    font-size: 1.2em;
  }
}