/* style/resources-fishing-games-faq-tips.css */

:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-dark-text: #333333;
  --page-light-text: #ffffff;
  --page-login-color: #EA7C07;
  --page-background-color: #1a1a2e; /* From body background */
}

.page-resources-fishing-games-faq-tips {
  font-family: 'Arial', sans-serif;
  color: var(--page-light-text); /* Dark body background, so light text */
  line-height: 1.6;
  background-color: var(--page-background-color);
}

.page-resources-fishing-games-faq-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-fishing-games-faq-tips__section-title {
  font-size: 2.5em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-fishing-games-faq-tips__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--page-light-text);
}

/* Hero Section */
.page-resources-fishing-games-faq-tips__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--page-light-text);
  padding-top: var(--header-offset, 120px);
}

.page-resources-fishing-games-faq-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-fishing-games-faq-tips__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--page-secondary-color);
}

.page-resources-fishing-games-faq-tips__description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--page-secondary-color);
}

.page-resources-fishing-games-faq-tips__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}