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

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

.page-game-guides-roulette-tips__hero {
  background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-game-guides-roulette-tips__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: page-game-guides-roulette-tips__float 10s ease-in-out infinite;
}

.page-game-guides-roulette-tips__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: page-game-guides-roulette-tips__float 12s reverse ease-in-out infinite;
}

@keyframes page-game-guides-roulette-tips__float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

.page-game-guides-roulette-tips__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff; /* Ensure high contrast with gradient background */
}

.page-game-guides-roulette-tips__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #eee;
}

.page-game-guides-roulette-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-game-guides-roulette-tips__btn--primary {
  background-color: #FFD700;
  color: #333; /* Dark text on gold for high contrast */
  border: 2px solid #FFD700;
}

.page-game-guides-roulette-tips__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette-tips__btn--secondary {
  background-color: #00BFFF;
  color: #fff; /* White text on deep sky blue for high contrast */
  border: 2px solid #00BFFF;
  margin-left: 15px;
}

.page-game-guides-roulette-tips__btn--secondary:hover {
  background-color: #0099cc;
  border-color: #0099cc;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides-roulette-tips__section:nth-of-type(even) {
  background-color: #fff;
}

.page-game-guides-roulette-tips__section-title {
  font-size: 2.5em;
  color: #00BFFF; /* Deep sky blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-game-guides-roulette-tips__section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-game-guides-roulette-tips__sub-title {
  font-size: 1.8em;
  color: #333;
  margin-top: 30px;
  margin-bottom: 20px;
}

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

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

.page-game-guides-roulette-tips__content-grid--reverse .page-game-guides-roulette-tips__text-content {
  order: 2;
}

.page-game-guides-roulette-tips__content-grid--reverse .page-game-guides-roulette-tips__image-wrapper {
  order: 1;
}

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

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

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

.page-game-guides-roulette-tips__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-game-guides-roulette-tips__list li {
  background-color: #e0f7fa; /* Light blue background for list items */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #00BFFF;
  font-size: 1.1em;
  color: #333;
}

.page-game-guides-roulette-tips__list li strong {
  color: #00BFFF;
}

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

.page-game-guides-roulette-tips__strategy-card:last-child {
  margin-bottom: 0;
}

.page-game-guides-roulette-tips__strategy-card .page-game-guides-roulette-tips__sub-title {
  color: #FFD700; /* Gold for strategy titles */
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 2em;
}

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

.page-game-guides-roulette-tips__tip-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid #00BFFF;
}

.page-game-guides-roulette-tips__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides-roulette-tips__tip-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-guides-roulette-tips__tip-item .page-game-guides-roulette-tips__sub-title {
  font-size: 1.5em;
  color: #00BFFF;
  margin-top: 0;
  margin-bottom: 15px;
}

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

.page-game-guides-roulette-tips__cta-banner {
  background: linear-gradient(90deg, #00BFFF 0%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-guides-roulette-tips__cta-banner .page-game-guides-roulette-tips__container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.page-game-guides-roulette-tips__cta-content {
  max-width: 600px;
  text-align: left;
  margin-bottom: 30px;
}

.page-game-guides-roulette-tips__cta-content .page-game-guides-roulette-tips__section-title {
  color: #fff;
  text-align: left;
}

.page-game-guides-roulette-tips__cta-content .page-game-guides-roulette-tips__section-title::after {
  background-color: #fff;
  left: 0;
  transform: translateX(0);
}

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

.page-game-guides-roulette-tips__cta-buttons .page-game-guides-roulette-tips__btn {
  margin: 0 10px 10px 0;
}

.page-game-guides-roulette-tips__cta-image {
  max-width: 400px;
  text-align: center;
}

.page-game-guides-roulette-tips__cta-image .page-game-guides-roulette-tips__image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.page-game-guides-roulette-tips__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
}

.page-game-guides-roulette-tips__faq-question {
  font-size: 1.3em;
  color: #00BFFF;
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-guides-roulette-tips__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-guides-roulette-tips__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-guides-roulette-tips__faq-answer {
  font-size: 1.1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.page-game-guides-roulette-tips__faq-answer.active {
  display: block;
}

.page-game-guides-roulette-tips__faq-answer a {
  color: #00BFFF;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-roulette-tips__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-roulette-tips__title {
    font-size: 2.8em;
  }
  .page-game-guides-roulette-tips__subtitle {
    font-size: 1.3em;
  }
  .page-game-guides-roulette-tips__section-title {
    font-size: 2em;
  }
  .page-game-guides-roulette-tips__content-grid,
  .page-game-guides-roulette-tips__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-game-guides-roulette-tips__content-grid--reverse .page-game-guides-roulette-tips__text-content {
    order: unset;
  }
  .page-game-guides-roulette-tips__content-grid--reverse .page-game-guides-roulette-tips__image-wrapper {
    order: unset;
  }
  .page-game-guides-roulette-tips__cta-banner .page-game-guides-roulette-tips__container {
    flex-direction: column;
  }
  .page-game-guides-roulette-tips__cta-content {
    text-align: center;
  }
  .page-game-guides-roulette-tips__cta-content .page-game-guides-roulette-tips__section-title,
  .page-game-guides-roulette-tips__cta-content .page-game-guides-roulette-tips__section-title::after {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-game-guides-roulette-tips__cta-buttons .page-game-guides-roulette-tips__btn {
    margin: 0 5px 10px 5px;
  }
}

@media (max-width: 768px) {
  .page-game-guides-roulette-tips__title {
    font-size: 2.2em;
  }
  .page-game-guides-roulette-tips__subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-roulette-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-roulette-tips__hero {
    padding: 80px 0;
  }
  .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__sub-title {
    font-size: 1.4em;
  }
  .page-game-guides-roulette-tips__strategy-card {
    padding: 30px;
  }
  .page-game-guides-roulette-tips__tip-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-roulette-tips__title {
    font-size: 1.8em;
  }
  .page-game-guides-roulette-tips__subtitle {
    font-size: 1em;
  }
  .page-game-guides-roulette-tips__btn {
    display: block;
    margin: 10px auto;
  }
  .page-game-guides-roulette-tips__btn--secondary {
    margin-left: 0;
  }
  .page-game-guides-roulette-tips__cta-buttons .page-game-guides-roulette-tips__btn {
    margin: 10px auto;
  }
  .page-game-guides-roulette-tips__faq-question {
    font-size: 1.1em;
  }
  .page-game-guides-roulette-tips__faq-answer {
    font-size: 0.95em;
  }
}