.page-resources-online-betting-guide {
  font-family: 'Arial', sans-serif;
  color: #f8f9fa; /* Light text for dark body background */
  background: var(--dark-bg-1); /* Inherit from shared.css, assumed dark */
  line-height: 1.6;
}

.page-resources-online-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-online-betting-guide__heading {
  font-size: 36px;
  color: #FFD700; /* Accent color for headings */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-online-betting-guide__text-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-online-betting-guide__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-online-betting-guide__section:last-of-type {
  border-bottom: none;
}

/* Hero Section */
.page-resources-online-betting-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Adjust based on shared.css padding-top on body */
  margin-top: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-resources-online-betting-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-online-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-online-betting-guide__hero-title {
  font-size: 48px;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-online-betting-guide__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.5;
}

.page-resources-online-betting-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-online-betting-guide__btn-primary,
.page-resources-online-betting-guide__btn-secondary,
.page-resources-online-betting-guide__btn-tertiary,
.page-resources-online-betting-guide__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-online-betting-guide__btn-primary {
  background: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-resources-online-betting-guide__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-resources-online-betting-guide__btn-primary--large {
  padding: 18px 40px;
  font-size: 20px;
}

.page-resources-online-betting-guide__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-online-betting-guide__btn-secondary:hover {
  background: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-resources-online-betting-guide__btn-tertiary {
  background: #8B0000;
  color: #ffffff;
  border: 2px solid #8B0000;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

.page-resources-online-betting-guide__btn-tertiary:hover {
  background: #a00000;
  border-color: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(139, 0, 0, 0.3);
}

.page-resources-online-betting-guide__btn-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  font-size: 16px;
  padding: 0;
  border: none;
  background: none;
  display: inline;
}

.page-resources-online-betting-guide__btn-link:hover {
  color: #e6c200;
  text-decoration: none;
}

/* Feature Grid */
.page-resources-online-betting-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-online-betting-guide__feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-online-betting-guide__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-online-betting-guide__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-online-betting-guide__feature-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-online-betting-guide__feature-description {
  font-size: 16px;
  color: #c0c0c0;
  line-height: 1.6;
}

/* Step Grid */
.page-resources-online-betting-guide__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-online-betting-guide__step-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-online-betting-guide__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-online-betting-guide__step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-online-betting-guide__step-title {
  font-size: 26px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-resources-online-betting-guide__step-description {
  font-size: 16px;
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Game Type Grid */
.page-resources-online-betting-guide__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-online-betting-guide__game-type-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-online-betting-guide__game-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-online-betting-guide__game-type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-online-betting-guide__game-type-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-online-betting-guide__game-type-description {
  font-size: 15px;
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tip List */
.page-resources-online-betting-guide__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-guide__tip-item {
  background: rgba(255, 255, 255, 0.07);
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-online-betting-guide__tip-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-guide__tip-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-online-betting-guide__tip-item p {
  font-size: 16px;
  color: #c0c0c0;
  line-height: 1.6;
}

.page-resources-online-betting-guide__tip-item a {
  color: #8B0000;
  text-decoration: underline;
}

.page-resources-online-betting-guide__tip-item a:hover {
  color: #a00000;
}

/* FAQ Section */
.page-resources-online-betting-guide__faq-list {
  margin-top: 50px;
}

.page-resources-online-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-online-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-online-betting-guide__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-resources-online-betting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-resources-online-betting-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-online-betting-guide__faq-item.active .page-resources-online-betting-guide__faq-toggle {
  color: #8B0000;
  transform: rotate(45deg); /* Changed to rotate for - */
}

.page-resources-online-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}