/* style/game-guides-roulette-odds.css */
.page-game-guides-roulette-odds {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0A2239; /* Deep blue main background */
  line-height: 1.6;
}

.page-game-guides-roulette-odds__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0A2239, #1a3a5c);
  position: relative;
  overflow: hidden;
  color: #F0F0F0;
}

.page-game-guides-roulette-odds__hero-content {
  max-width: 900px;
  z-index: 10;
}

.page-game-guides-roulette-odds__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F0F0F0;
  line-height: 1.2;
}

.page-game-guides-roulette-odds__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #D0D0D0;
}

.page-game-guides-roulette-odds__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-game-guides-roulette-odds__btn--primary {
  background-color: #E0B400; /* Bright gold accent */
  color: #0A2239; /* Deep blue text */
  border: 2px solid #E0B400;
}

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

.page-game-guides-roulette-odds__btn--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-game-guides-roulette-odds__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2239;
  transform: translateY(-3px);
}

.page-game-guides-roulette-odds__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 5;
}

.page-game-guides-roulette-odds__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-game-guides-roulette-odds__section-title {
  font-size: 2.5em;
  color: #E0B400; /* Accent color for titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-guides-roulette-odds__sub-title {
  font-size: 1.8em;
  color: #F0F0F0;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #E0B400;
  padding-left: 15px;
}

.page-game-guides-roulette-odds__intro p, 
.page-game-guides-roulette-odds__how-to-play li, 
.page-game-guides-roulette-odds__betting-odds p,
.page-game-guides-roulette-odds__strategies p,
.page-game-guides-roulette-odds__why-ku68 li,
.page-game-guides-roulette-odds__responsible-gambling p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #D0D0D0;
}

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

.page-game-guides-roulette-odds__type-card {
  background-color: #1a3a5c; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-guides-roulette-odds__type-card:hover {
  transform: translateY(-10px);
}

.page-game-guides-roulette-odds__type-card h3 {
  font-size: 1.5em;
  color: #E0B400;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-guides-roulette-odds__type-card p {
  color: #D0D0D0;
}

.page-game-guides-roulette-odds__type-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.page-game-guides-roulette-odds__steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-game-guides-roulette-odds__steps li {
  background-color: #1a3a5c;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
}

.page-game-guides-roulette-odds__steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E0B400;
  color: #0A2239;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-game-guides-roulette-odds__steps li strong {
  color: #E0B400;
}

.page-game-guides-roulette-odds__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: #1a3a5c;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette-odds__table th,
.page-game-guides-roulette-odds__table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #0A2239;
  color: #D0D0D0;
}

.page-game-guides-roulette-odds__table th {
  background-color: #0A2239;
  color: #E0B400;
  font-weight: bold;
  text-transform: uppercase;
}

.page-game-guides-roulette-odds__table tbody tr:nth-child(odd) {
  background-color: #2c4b6d;
}

.page-game-guides-roulette-odds__table tbody tr:hover {
  background-color: #3d5e80;
}

.page-game-guides-roulette-odds__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides-roulette-odds__list li {
  background-color: #1a3a5c;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 40px;
  color: #D0D0D0;
}

.page-game-guides-roulette-odds__list li::before {
  content: '✓';
  color: #E0B400;
  position: absolute;
  left: 15px;
  font-weight: bold;
  font-size: 1.2em;
}

.page-game-guides-roulette-odds__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-game-guides-roulette-odds__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-roulette-odds__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 40%;
}

.page-game-guides-roulette-odds__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  max-width: 40%;
}

.page-game-guides-roulette-odds__link {
  color: #E0B400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides-roulette-odds__link:hover {
  color: #f0c830;
  text-decoration: underline;
}

.highlight {
  color: #E0B400;
  font-weight: bold;
}

/* Floating Ad */
.page-game-guides-roulette-odds__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0A2239;
  border: 2px solid #E0B400;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  z-index: 1000;
  display: none; /* Hidden by default, shown by JS */
  max-width: 300px;
  text-align: center;
  animation: slideIn 0.5s forwards;
}

.page-game-guides-roulette-odds__floating-ad-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #E0B400;
  cursor: pointer;
  line-height: 1;
}

.page-game-guides-roulette-odds__floating-ad-close:hover {
  color: #f0c830;
}

.page-game-guides-roulette-odds__floating-ad-content {
  margin-top: 10px;
}

.page-game-guides-roulette-odds__floating-ad-text {
  color: #F0F0F0;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-game-guides-roulette-odds__btn--floating {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #E0B400;
  color: #0A2239;
  border: none;
}

.page-game-guides-roulette-odds__btn--floating:hover {
  background-color: #f0c830;
  transform: translateY(-2px);
}

@keyframes slideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-roulette-odds__hero {
    padding: 60px 15px;
  }

  .page-game-guides-roulette-odds__title {
    font-size: 2.5em;
  }

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

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

  .page-game-guides-roulette-odds__sub-title {
    font-size: 1.5em;
  }

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

  .page-game-guides-roulette-odds__table th,
  .page-game-guides-roulette-odds__table td {
    padding: 10px;
    font-size: 0.9em;
  }
  
  .page-game-guides-roulette-odds__image--right,
  .page-game-guides-roulette-odds__image--left {
    float: none;
    margin: 30px auto;
    max-width: 90%;
  }

  .page-game-guides-roulette-odds__floating-ad {
    bottom: 10px;
    right: 10px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 480px) {
  .page-game-guides-roulette-odds__title {
    font-size: 2em;
  }

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

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

  .page-game-guides-roulette-odds__sub-title {
    font-size: 1.3em;
  }

  .page-game-guides-roulette-odds__steps li {
    padding-left: 50px;
  }

  .page-game-guides-roulette-odds__steps li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }

  .page-game-guides-roulette-odds__intro p, 
  .page-game-guides-roulette-odds__how-to-play li, 
  .page-game-guides-roulette-odds__betting-odds p,
  .page-game-guides-roulette-odds__strategies p,
  .page-game-guides-roulette-odds__why-ku68 li,
  .page-game-guides-roulette-odds__responsible-gambling p {
    font-size: 1em;
  }
}