.page-game-guides-roulette {
  --primary-color: #1A2A40;
  --secondary-color: #FFD700;
  --text-color-dark: #333;
  --text-color-light: #F8F8F8;
  --background-dark: #1A2A40;
  --background-light: #F0F2F5;
  --accent-color: #FFD700;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-game-guides-roulette__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a5c88 100%);
  color: var(--text-color-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--accent-color);
}

.page-game-guides-roulette__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-roulette__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-game-guides-roulette__hero-actions .page-game-guides-roulette__btn {
  margin: 0 15px;
}

.page-game-guides-roulette__section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-color-dark);
}

.page-game-guides-roulette__section--dark {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-game-guides-roulette__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-roulette__section--dark .page-game-guides-roulette__section-title {
  color: var(--accent-color);
}

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

.page-game-guides-roulette__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
  color: #555;
}

.page-game-guides-roulette__section--dark .page-game-guides-roulette__description {
  color: #D0D0D0;
}

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

.page-game-guides-roulette__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

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

.page-game-guides-roulette__image-wrapper--center {
  margin-top: 40px;
}

.page-game-guides-roulette__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides-roulette__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-game-guides-roulette__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
}

.page-game-guides-roulette__card-title {
  font-size: 1.8em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.page-game-guides-roulette__card-text {
  font-size: 1em;
  color: #E0E0E0;
}

.page-game-guides-roulette__subsection-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid var(--accent-color);
  padding-left: 15px;
}

.page-game-guides-roulette__section--dark .page-game-guides-roulette__subsection-title {
  color: var(--accent-color);
}

.page-game-guides-roulette__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.05em;
}

.page-game-guides-roulette__list li {
  margin-bottom: 10px;
}

.page-game-guides-roulette__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-guides-roulette__strategy-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-game-guides-roulette__strategy-title {
  font-size: 1.6em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.page-game-guides-roulette__strategy-item p {
  color: #E0E0E0;
}

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

.page-game-guides-roulette__tips-list li {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.8;
  position: relative;
  padding-left: 60px;
}

.page-game-guides-roulette__tips-list li::before {
  content: '✓';
  color: var(--accent-color);
  font-size: 1.8em;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.page-game-guides-roulette__cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffc107 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--primary-color);
}

.page-game-guides-roulette__cta-title {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette__cta-text {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #2a4a6d;
}

.page-game-guides-roulette__cta-actions .page-game-guides-roulette__btn {
  margin: 0 15px;
}

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

.page-game-guides-roulette__btn--primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides-roulette__btn--secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  box-shadow: none;
}

.page-game-guides-roulette__hero .page-game-guides-roulette__btn--secondary {
  color: var(--text-color-light);
  border-color: var(--text-color-light);
}

.page-game-guides-roulette__hero .page-game-guides-roulette__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-game-guides-roulette__btn--secondary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.page-game-guides-roulette__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-guides-roulette__faq {
  margin-top: 40px;
}

.page-game-guides-roulette__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-game-guides-roulette__faq-question {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-guides-roulette__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: var(--accent-color);
  font-weight: bold;
}

.page-game-guides-roulette__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-answer {
  display: block;
}

.page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-question::after {
  content: '-';
}

.page-game-guides-roulette__text-content .text-highlight,
.page-game-guides-roulette__hero-title .text-highlight,
.page-game-guides-roulette__cta-title .text-highlight {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-roulette__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-roulette__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-roulette__section-title {
    font-size: 2em;
  }
  .page-game-guides-roulette__content-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-roulette__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-game-guides-roulette__cta-title {
    font-size: 2.5em;
  }
  .page-game-guides-roulette__cta-text {
    font-size: 1.2em;
  }
  .page-game-guides-roulette__hero-actions,
  .page-game-guides-roulette__cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides-roulette__hero-actions .page-game-guides-roulette__btn,
  .page-game-guides-roulette__cta-actions .page-game-guides-roulette__btn {
    margin: 0;
    width: 100%;
    max-width: 300px;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .page-game-guides-roulette__hero {
    padding: 80px 0;
  }
  .page-game-guides-roulette__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-roulette__section {
    padding: 40px 0;
  }
  .page-game-guides-roulette__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-roulette__subsection-title {
    font-size: 1.6em;
  }
  .page-game-guides-roulette__card-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-roulette__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-roulette__cta-title {
    font-size: 2em;
  }
  .page-game-guides-roulette__faq-question {
    font-size: 1.2em;
  }
  .page-game-guides-roulette__tips-list li {
    padding-left: 50px;
  }
  .page-game-guides-roulette__tips-list li::before {
    left: 15px;
    font-size: 1.5em;
  }
}