/* style/resources-tt88-fishing-blast-tips.css */

/* Base styles for the page content */
.page-resources-tt88-fishing-blast-tips {
  color: #ffffff; /* Light text for dark body background */
  background-color: #121212; /* Matches body background for consistency */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-resources-tt88-fishing-blast-tips__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffc107; /* Gold/bright yellow for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-resources-tt88-fishing-blast-tips__paragraph {
  font-size: 17px;
  margin-bottom: 15px;
  color: #f0f0f0;
  text-align: justify;
}

.page-resources-tt88-fishing-blast-tips strong {
  color: #ffc107;
}

/* Hero Banner Section */
.page-resources-tt88-fishing-blast-tips__hero-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Space for fixed header */
}

.page-resources-tt88-fishing-blast-tips__hero-banner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-tt88-fishing-blast-tips__hero-banner-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.page-resources-tt88-fishing-blast-tips__hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-tt88-fishing-blast-tips__hero-title {
  font-size: 48px;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-tt88-fishing-blast-tips__hero-description {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-resources-tt88-fishing-blast-tips__hero-cta-button {
  display: inline-block;
  background: #007bff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #007bff;
}

.page-resources-tt88-fishing-blast-tips__hero-cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  border-color: #0056b3;
}

/* General Content Sections */
.page-resources-tt88-fishing-blast-tips__introduction-section,
.page-resources-tt88-fishing-blast-tips__game-overview-section,
.page-resources-tt88-fishing-blast-tips__fish-types-section,
.page-resources-tt88-fishing-blast-tips__strategy-section,
.page-resources-tt88-fishing-blast-tips__advanced-tips-section,
.page-resources-tt88-fishing-blast-tips__cta-section,
.page-resources-tt88-fishing-blast-tips__faq-section,
.page-resources-tt88-fishing-blast-tips__related-articles-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-tt88-fishing-blast-tips__game-overview-section,
.page-resources-tt88-fishing-blast-tips__advanced-tips-section {
  background-color: #0d0d0d; /* Darker background for alternating sections */
}

.page-resources-tt88-fishing-blast-tips__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-resources-tt88-fishing-blast-tips__content-grid--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  direction: rtl; /* Reverse order for content and image */
}

.page-resources-tt88-fishing-blast-tips__content-text {
  direction: ltr;
}

.page-resources-tt88-fishing-blast-tips__content-image {
  text-align: center;
  direction: ltr;
}

.page-resources-tt88-fishing-blast-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
}

/* Card Grid for Fish Types */
.page-resources-tt88-fishing-blast-tips__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-tt88-fishing-blast-tips__card {
  background-color: #222222;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-tt88-fishing-blast-tips__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-tt88-fishing-blast-tips__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-tt88-fishing-blast-tips__card-title {
  font-size: 24px;
  color: #ffc107;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-tt88-fishing-blast-tips__card-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
}

/* Strategy Items */
.page-resources-tt88-fishing-blast-tips__strategy-item {
  background-color: #222222;
  border-left: 5px solid #007bff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-tt88-fishing-blast-tips__strategy-subtitle {
  font-size: 22px;
  color: #ffc107;
  margin-top: 0;
  margin-bottom: 15px;
}

/* CTA Section */
.page-resources-tt88-fishing-blast-tips__cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
}

.page-resources-tt88-fishing-blast-tips__cta-section .page-resources-tt88-fishing-blast-tips__section-title {
  color: #ffffff;
}

.page-resources-tt88-fishing-blast-tips__cta-section .page-resources-tt88-fishing-blast-tips__paragraph {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-tt88-fishing-blast-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-tt88-fishing-blast-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-resources-tt88-fishing-blast-tips__button--primary {
  background: #ffc107;
  color: #121212; /* Dark text for bright background */
  border-color: #ffc107;
}

.page-resources-tt88-fishing-blast-tips__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-resources-tt88-fishing-blast-tips__button--secondary {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}

.page-resources-tt88-fishing-blast-tips__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* FAQ Section */
.page-resources-tt88-fishing-blast-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #222222;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-tt88-fishing-blast-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2c2c2c;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.page-resources-tt88-fishing-blast-tips__faq-item.active .page-resources-tt88-fishing-blast-tips__faq-question {
  background: #3a3a3a;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-resources-tt88-fishing-blast-tips__faq-question:hover {
  background: #3a3a3a;
}

.page-resources-tt88-fishing-blast-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}