/* style/fishing-games-tips.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-register-color: #C30808;
  --button-login-color: #C30808;
  --background-color: #FFFFFF;
  --register-login-font-color: #FFFF00;
}

.page-fishing-games-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color);
}

.page-fishing-games-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: var(--primary-color);
  color: var(--text-color-light);
  overflow: hidden;
}

.page-fishing-games-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-fishing-games-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-fishing-games-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-top: -80px; /* Overlap image slightly */
}

.page-fishing-games-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-fishing-games-tips__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-register-color);
  color: var(--register-login-font-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
}

.page-fishing-games-tips__cta-button:hover {
  background: darken(var(--button-register-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__section {
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games-tips__dark-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-fishing-games-tips__dark-section .page-fishing-games-tips__section-title,
.page-fishing-games-tips__dark-section .page-fishing-games-tips__card-title a {
  color: var(--text-color-light);
}

.page-fishing-games-tips__dark-section .page-fishing-games-tips__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games-tips__dark-section .page-fishing-games-tips__card p {
  color: var(--text-color-light);
}

.page-fishing-games-tips__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-fishing-games-tips__dark-section .page-fishing-games-tips__section-title {
  color: var(--text-color-light);
}

.page-fishing-games-tips p {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.page-fishing-games-tips p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-tips p a:hover {
  text-decoration: underline;
}

.page-fishing-games-tips__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-tips__card {
  background: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips__card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.page-fishing-games-tips__card-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games-tips__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games-tips__card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games-tips__card p {
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-fishing-games-tips__content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

.page-fishing-games-tips__image-left {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
}

.page-fishing-games-tips__text-content {
  flex: 1;
}

.page-fishing-games-tips__text-content ul {
  list-style: disc inside;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games-tips__text-content li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-color-dark);
}

.page-fishing-games-tips__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  border: none;
}

.page-fishing-games-tips__btn-primary:hover {
  background: darken(var(--primary-color), 10%);
}

.page-fishing-games-tips__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-fishing-games-tips__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-fishing-games-tips__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-tips__bullet-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games-tips__point-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-fishing-games-tips__point-item img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  width: 100%;
  object-fit: cover;
}

.page-fishing-games-tips__point-item h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-fishing-games-tips__point-item p {
  font-size: 1em;
  color: var(--text-color-light);
}

.page-fishing-games-tips__download-cta {
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-fishing-games-tips__download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games-tips__download-content p {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: 1.15em;
}

.page-fishing-games-tips__download-image {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ styles */
.page-fishing-games-tips__faq-area {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.page-fishing-games-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-fishing-games-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: var(--text-color-dark);
}

.page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--secondary-color);
  border-radius: 0 0 5px 5px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-color-dark);
}

.page-fishing-games-tips__faq-question:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.page-fishing-games-tips__faq-question:active {
  background: #eeeeee;
}

.page-fishing-games-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-fishing-games-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  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-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change to X for active state */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-tips__main-title {
    font-size: 2.8em;
  }

  .page-fishing-games-tips__intro-text {
    font-size: 1.1em;
  }

  .page-fishing-games-tips__section-title {
    font-size: 2.2em;
  }

  .page-fishing-games-tips__content-with-image {
    flex-direction: column;
    align-items: center;
  }

  .page-fishing-games-tips__image-left {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-fishing-games-tips__text-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fishing-games-tips__hero-content {
    margin-top: -40px;
    padding: 15px;
  }

  .page-fishing-games-tips__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-fishing-games-tips__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-fishing-games-tips__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-tips__section {
    padding: 40px 15px;
  }

  .page-fishing-games-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games-tips__grid-layout,
  .page-fishing-games-tips__bullet-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-tips__card {
    padding: 20px;
  }

  .page-fishing-games-tips__card-title {
    font-size: 1.2em;
  }

  .page-fishing-games-tips p {
    font-size: 1em;
  }

  .page-fishing-games-tips__image-left {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-tips__text-content li {
    font-size: 1em;
  }

  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-tips__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-tips__point-item img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-tips__download-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-tips__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-fishing-games-tips__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-fishing-games-tips__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-fishing-games-tips__faq-answer {
    padding: 0 15px;
  }
  
  .page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-answer {
    padding: 15px !important;
  }

  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games-tips__section,
  .page-fishing-games-tips__card,
  .page-fishing-games-tips__container,
  .page-fishing-games-tips__download-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-tips__hero-image img,
  .page-fishing-games-tips__image-left,
  .page-fishing-games-tips__point-item img,
  .page-fishing-games-tips__download-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}