/* style/resources-online-betting-guide.css */

/* Base Styles */
.page-resources-online-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000000; /* Assuming body background is black */
}

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

.page-resources-online-betting-guide__section {
  padding: 60px 0;
  margin-bottom: 0;
}

.page-resources-online-betting-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold brand color for titles */
}

.page-resources-online-betting-guide__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-resources-online-betting-guide__intro-text,
.page-resources-online-betting-guide__description,
.page-resources-online-betting-guide__card-text,
.page-resources-online-betting-guide__step-description,
.page-resources-online-betting-guide__tip-description,
.page-resources-online-betting-guide__outro-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-online-betting-guide__text-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-online-betting-guide__text-link:hover {
  color: #fff;
}

/* Buttons */
.page-resources-online-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-online-betting-guide__btn-primary,
.page-resources-online-betting-guide__btn-secondary,
.page-resources-online-betting-guide__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-online-betting-guide__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text for contrast */
}

.page-resources-online-betting-guide__btn-primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-resources-online-betting-guide__btn-secondary {
  background-color: #8B0000; /* Dark Red */
  color: #ffffff; /* White text */
  border-color: #8B0000;
}

.page-resources-online-betting-guide__btn-secondary:hover {
  background-color: #6a0000;
  color: #ffffff;
  border-color: #6a0000;
}

.page-resources-online-betting-guide__btn-tertiary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
  padding: 10px 20px;
  font-size: 16px;
}

.page-resources-online-betting-guide__btn-tertiary:hover {
  background-color: #FFD700;
  color: #000000;
}

/* Hero Intro Section */
.page-resources-online-betting-guide__hero-intro-section {
  padding-top: 120px; /* Account for fixed header on desktop */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #000000 0%, #8B0000 100%);
  text-align: center;
}

.page-resources-online-betting-guide__main-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Benefits Section */
.page-resources-online-betting-guide__benefits-section {
  background-color: #1a1a1a;
}

.page-resources-online-betting-guide__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-guide__benefit-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-resources-online-betting-guide__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

/* Registration Guide Section */
.page-resources-online-betting-guide__registration-guide {
  background-color: #000000;
}

.page-resources-online-betting-guide__step-list {
  list-style: none;
  padding: 0;
}

.page-resources-online-betting-guide__list-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-guide__step-title {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-online-betting-guide__sub-list {
  list-style: disc;
  margin-left: 25px;
  color: #f0f0f0;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-resources-online-betting-guide__sub-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Game Types Section */
.page-resources-online-betting-guide__game-types {
  background-color: #1a1a1a;
}

.page-resources-online-betting-guide__game-type-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-resources-online-betting-guide__game-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 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;
}

/* Tips & Strategies Section */
.page-resources-online-betting-guide__tips-strategies {
  background-color: #000000;
}

.page-resources-online-betting-guide__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-online-betting-guide__tips-list {
  list-style: none;
  padding: 0;
}

.page-resources-online-betting-guide__tip-title {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
}

/* Payment Methods Section */
.page-resources-online-betting-guide__payment-methods {
  background-color: #1a1a1a;
}

.page-resources-online-betting-guide__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-guide__payment-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-resources-online-betting-guide__payment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Support Section */
.page-resources-online-betting-guide__support-section {
  background-color: #000000;
}

.page-resources-online-betting-guide__support-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-resources-online-betting-guide__support-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-online-betting-guide__support-text {
  flex: 1;
  min-width: 300px;
}

.page-resources-online-betting-guide__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-resources-online-betting-guide__contact-list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-resources-online-betting-guide__contact-list strong {
  color: #FFD700;
}

/* Responsible Gaming Section */
.page-resources-online-betting-guide__responsible-gaming {
  background-color: #1a1a1a;
}

.page-resources-online-betting-guide__responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-guide__responsible-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* FAQ Section */
.page-resources-online-betting-guide__faq-section {
  background-color: #000000;
}

.page-resources-online-betting-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-online-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a;
}

.page-resources-online-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #333333;
  border: 1px solid #444444;
  border-radius: 8px;
  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: #444444;
  border-color: #555555;
}

.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: 28px;
  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: 32px;
  height: 32px;
}

.page-resources-online-betting-guide__faq-item.active .page-resources-online-betting-guide__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.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 25px;
  opacity: 0;
  color: #f0f0f0;
}

.page-resources-online-betting-guide__faq-item.active .page-resources-online-betting-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 0 0 8px 8px;
  border: 1px solid #444444;
  border-top: none;
}

.page-resources-online-betting-guide__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Conclusion Section */
.page-resources-online-betting-guide__conclusion-section {
  background-color: #8B0000;
  text-align: center;
  padding-bottom: 80px;
}

.page-resources-online-betting-guide__conclusion-section .page-resources-online-betting-guide__section-title {
  color: #FFD700;
}

.page-resources-online-betting-guide__conclusion-section .page-resources-online-betting-guide__description {
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-online-betting-guide__main-title {
    font-size: 40px;
  }

  .page-resources-online-betting-guide__section-title {
    font-size: 32px;
  }

  .page-resources-online-betting-guide__support-content {
    flex-direction: column;
  }

  .page-resources-online-betting-guide__support-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-online-betting-guide__hero-intro-section {
    padding-top: 100px !important; /* Account for fixed header on mobile */
    padding-bottom: 40px;
  }

  .page-resources-online-betting-guide__section {
    padding: 40px 0;
  }

  .page-resources-online-betting-guide__main-title {
    font-size: 32px;
  }

  .page-resources-online-betting-guide__description {
    font-size: 16px;
  }

  .page-resources-online-betting-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-resources-online-betting-guide__sub-title {
    font-size: 20px;
  }

  .page-resources-online-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-online-betting-guide__btn-primary,
  .page-resources-online-betting-guide__btn-secondary,
  .page-resources-online-betting-guide__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-online-betting-guide__grid-layout,
  .page-resources-online-betting-guide__payment-grid,
  .page-resources-online-betting-guide__responsible-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-online-betting-guide__benefit-card,
  .page-resources-online-betting-guide__payment-card,
  .page-resources-online-betting-guide__responsible-card {
    padding: 25px;
  }

  .page-resources-online-betting-guide__game-type-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-resources-online-betting-guide__game-type-image {
    height: 200px;
  }

  .page-resources-online-betting-guide__section-image {
    margin-bottom: 30px;
  }

  .page-resources-online-betting-guide__faq-question {
    padding: 15px 20px;
  }

  .page-resources-online-betting-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-resources-online-betting-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-resources-online-betting-guide__faq-answer {
    padding: 0 20px;
  }

  .page-resources-online-betting-guide__faq-item.active .page-resources-online-betting-guide__faq-answer {
    padding: 15px 20px !important;
  }

  /* Ensure all images are responsive */
  .page-resources-online-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-online-betting-guide__container,
  .page-resources-online-betting-guide__cta-buttons {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-online-betting-guide__support-image {
    width: 100% !important;
    max-width: 100% !important;
  }
}