/* style/resources-mobile-betting-guide.css */
.page-resources-mobile-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A1A1A; /* Dark Grey */
  background-color: #F5F5F5; /* Light Grey for contrast */
}

.page-resources-mobile-betting-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient background */
  color: #FFFFFF; /* White text for contrast */
  text-align: center;
  gap: 40px;
}

.page-resources-mobile-betting-guide__hero-content {
  max-width: 800px;
}

.page-resources-mobile-betting-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-resources-mobile-betting-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-resources-mobile-betting-guide__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-mobile-betting-guide__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-resources-mobile-betting-guide__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A; /* Dark Grey */
  border: 2px solid #FFD700;
}

.page-resources-mobile-betting-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-resources-mobile-betting-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A; /* Dark Grey */
  transform: translateY(-2px);
}

.page-resources-mobile-betting-guide__hero-image-wrapper {
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
}

.page-resources-mobile-betting-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-mobile-betting-guide__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-resources-mobile-betting-guide__section--advantages {
  background-color: #FFFFFF;
}

.page-resources-mobile-betting-guide__section--guide {
  background-color: #F5F5F5;
}

.page-resources-mobile-betting-guide__section--tips {
  background-color: #FFFFFF;
}

.page-resources-mobile-betting-guide__section--faq {
  background-color: #F5F5F5;
}

.page-resources-mobile-betting-guide__section--cta {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  color: #1A1A1A; /* Dark Grey text */
  padding: 100px 20px;
}

.page-resources-mobile-betting-guide__section-title {
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #1A1A1A;
}

.page-resources-mobile-betting-guide__section--cta .page-resources-mobile-betting-guide__section-title {
  color: #1A1A1A;
}

.page-resources-mobile-betting-guide__section--cta .page-resources-mobile-betting-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-resources-mobile-betting-guide__section--cta .page-resources-mobile-betting-guide__btn--primary {
  background-color: #1A1A1A;
  color: #FFD700;
  border-color: #1A1A1A;
}

.page-resources-mobile-betting-guide__section--cta .page-resources-mobile-betting-guide__btn--primary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-mobile-betting-guide .highlight {
  color: #FFD700;
}

.page-resources-mobile-betting-guide__section-title .highlight {
  color: #FFD700;
}

.page-resources-mobile-betting-guide__hero-title .highlight {
  color: #FFD700;
}

/* Advantages Grid */
.page-resources-mobile-betting-guide__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mobile-betting-guide__advantage-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-mobile-betting-guide__advantage-item:hover {
  transform: translateY(-10px);
}

.page-resources-mobile-betting-guide__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-resources-mobile-betting-guide__advantage-title {
  font-size: 1.5em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-resources-mobile-betting-guide__advantage-description {
  font-size: 1em;
  color: #444444;
}

/* Guide Steps */
.page-resources-mobile-betting-guide__guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 40px;
}

.page-resources-mobile-betting-guide__step-item {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-resources-mobile-betting-guide__step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #FFD700;
  color: #1A1A1A;
  font-size: 3em;
  font-weight: bold;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: rotate(-15deg);
  z-index: 1;
}

.page-resources-mobile-betting-guide__step-title {
  font-size: 1.8em;
  color: #1A1A1A;
  margin-bottom: 20px;
  padding-top: 30px; /* Space for number */
}

.page-resources-mobile-betting-guide__step-description {
  font-size: 1.05em;
  color: #444444;
  margin-bottom: 25px;
}

.page-resources-mobile-betting-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tips Grid */
.page-resources-mobile-betting-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mobile-betting-guide__tip-item {
  background-color: #F9F9F9;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border-left: 5px solid #FFD700; /* Gold accent */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-mobile-betting-guide__tip-title {
  font-size: 1.4em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-resources-mobile-betting-guide__tip-description {
  font-size: 1em;
  color: #444444;
}

/* FAQ List */
.page-resources-mobile-betting-guide__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-resources-mobile-betting-guide__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-resources-mobile-betting-guide__faq-question {
  font-size: 1.2em;
  color: #1A1A1A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-mobile-betting-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-mobile-betting-guide__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-resources-mobile-betting-guide__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-resources-mobile-betting-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-resources-mobile-betting-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #1A1A1A;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-resources-mobile-betting-guide__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-resources-mobile-betting-guide__hero-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-resources-mobile-betting-guide__hero-actions {
    justify-content: flex-start;
  }

  .page-resources-mobile-betting-guide__hero-title {
    font-size: 3.5em;
  }

  .page-resources-mobile-betting-guide__hero-image-wrapper {
    margin-top: 0;
  }

  .page-resources-mobile-betting-guide__guide-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-resources-mobile-betting-guide__step-item {
    padding: 50px;
  }

  .page-resources-mobile-betting-guide__step-number {
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    font-size: 3.5em;
  }

  .page-resources-mobile-betting-guide__step-title {
    padding-top: 40px;
  }
}

@media (min-width: 1024px) {
  .page-resources-mobile-betting-guide__guide-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}