/* style/game-guides-roulette-tips.css */
.page-game-guides-roulette-tips {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A1A2E; /* Dark background for contrast */
}

.page-game-guides-roulette-tips__hero {
  background: linear-gradient(135deg, #0A2463, #3E2B87); /* Dark blue to purple gradient */
  padding: 100px 20px;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-game-guides-roulette-tips__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-guides-roulette-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-game-guides-roulette-tips__section {
  padding: 60px 20px;
  background-color: #1A1A2E;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-guides-roulette-tips__section:last-of-type {
  border-bottom: none;
}

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

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

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

.page-game-guides-roulette-tips__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-guides-roulette-tips__highlight {
  color: #FFD700;
  font-weight: bold;
}

.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;
  font-size: 1.1em;
  margin-top: 20px;
}

.page-game-guides-roulette-tips__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-game-guides-roulette-tips__btn--primary:hover {
  background-color: #0A2463;
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-game-guides-roulette-tips__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides-roulette-tips__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-game-guides-roulette-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

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

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

.page-game-guides-roulette-tips__card {
  background-color: #0A2463;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-game-guides-roulette-tips__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-game-guides-roulette-tips__card ul {
  list-style: none;
  padding: 0;
}

.page-game-guides-roulette-tips__card li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #E0E0E0;
  position: relative;
  padding-left: 25px;
}

.page-game-guides-roulette-tips__card li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-game-guides-roulette-tips__strategy-item {
  background-color: #0A2463;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette-tips__strategy-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.5);
  padding-bottom: 10px;
}

.page-game-guides-roulette-tips__strategy-item h4 {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-game-guides-roulette-tips__strategy-item ol,
.page-game-guides-roulette-tips__strategy-item ul {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-game-guides-roulette-tips__strategy-item ul {
  list-style-type: disc;
}

.page-game-guides-roulette-tips__strategy-item li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #C0C0C0;
}

.page-game-guides-roulette-tips__section--management ul {
  list-style: none;
  padding: 0;
}

.page-game-guides-roulette-tips__section--management li {
  background-color: #0A2463;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px;
}

.page-game-guides-roulette-tips__section--management li::before {
  content: '💡';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-game-guides-roulette-tips__section--nohu65-tips ul {
  list-style: none;
  padding: 0;
}

.page-game-guides-roulette-tips__section--nohu65-tips li {
  background-color: #0A2463;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px;
}

.page-game-guides-roulette-tips__section--nohu65-tips li::before {
  content: '⭐';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-game-guides-roulette-tips__small-text {
  font-size: 0.9em;
  color: #A0A0A0;
  margin-top: 20px;
  text-align: center;
}

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

  .page-game-guides-roulette-tips__hero-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-game-guides-roulette-tips__card {
    padding: 20px;
  }

  .page-game-guides-roulette-tips__strategy-item {
    padding: 20px;
  }

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

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

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

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

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

  .page-game-guides-roulette-tips__section p,
  .page-game-guides-roulette-tips__card li,
  .page-game-guides-roulette-tips__strategy-item li,
  .page-game-guides-roulette-tips__section--management li,
  .page-game-guides-roulette-tips__section--nohu65-tips li {
    font-size: 0.95em;
  }

  .page-game-guides-roulette-tips__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}