/* style/resources-fishing-game-strategy.css */
:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a;
    --bg-light: #f1f3f5;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
}

.page-resources-fishing-game-strategy {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark); /* Ensure body background is dark */
    line-height: 1.6;
}

.page-resources-fishing-game-strategy a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-fishing-game-strategy a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.page-resources-fishing-game-strategy__hero-banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 120px; /* Adjust for fixed header */
    background: linear-gradient(135deg, var(--primary-color), #0A2463);
    color: var(--text-light);
    overflow: hidden;
}

.page-resources-fishing-game-strategy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-resources-fishing-game-strategy__main-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-resources-fishing-game-strategy__main-title a {
    color: var(--secondary-color);
}

.page-resources-fishing-game-strategy__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-fishing-game-strategy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-strategy__cta-button:hover {
    background: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-strategy__cta-button--primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-fishing-game-strategy__cta-button--large {
    font-size: 1.2em;
    padding: 18px 45px;
}

.page-resources-fishing-game-strategy__hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-radius: 12px;
    overflow: hidden;
}

.page-resources-fishing-game-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-resources-fishing-game-strategy__section {
    padding: 60px 20px;
    text-align: center;
}

.page-resources-fishing-game-strategy__intro-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-fishing-game-strategy__strategy-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-fishing-game-strategy__platform-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-fishing-game-strategy__faq-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-fishing-game-strategy__cta-final {
    padding: 0;
}

.page-resources-fishing-game-strategy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-fishing-game-strategy__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-fishing-game-strategy__section-title a {
    color: var(--secondary-color);
}

.page-resources-fishing-game-strategy__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.page-resources-fishing-game-strategy__text-block a {
    color: var(--secondary-color);
}

.page-resources-fishing-game-strategy__content-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    display: block;
}

.page-resources-fishing-game-strategy__strategy-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-fishing-game-strategy__card-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-fishing-game-strategy__strategy-card p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
}

.page-resources-fishing-game-strategy__strategy-card ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #cccccc;
}

.page-resources-fishing-game-strategy__strategy-card li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-resources-fishing-game-strategy__strategy-card strong {
    color: var(--secondary-color);
}

.page-resources-fishing-game-strategy__card-image {
    width: 100%;
    height: auto;
    max-width: 700px;
    margin: 20px auto 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

.page-resources-fishing-game-strategy__dark-bg {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin-top: 40px;
}

.page-resources-fishing-game-strategy__dark-bg .page-resources-fishing-game-strategy__section-title {
    color: var(--secondary-color);
}

.page-resources-fishing-game-strategy__dark-bg .page-resources-fishing-game-strategy__text-block {
    color: #e0e0e0;
}

/* FAQ Styles */
.page-resources-fishing-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-fishing-game-strategy__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 15px;
  opacity: 0;
}

.page-resources-fishing-game-strategy__faq-item.active .page-resources-fishing-game-strategy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
}

.page-resources-fishing-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-fishing-game-strategy__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-resources-fishing-game-strategy__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-resources-fishing-game-strategy__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(--secondary-color);
}

.page-resources-fishing-game-strategy__faq-answer p {
    color: #cccccc;
    font-size: 1em;
}

.page-resources-fishing-game-strategy__faq-answer p a {
    color: var(--secondary-color);
}

.page-resources-fishing-game-strategy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-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-resources-fishing-game-strategy__faq-item.active .page-resources-fishing-game-strategy__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-fishing-game-strategy__main-title {
        font-size: 2.8em;
    }
    .page-resources-fishing-game-strategy__hero-description {
        font-size: 1.1em;
    }
    .page-resources-fishing-game-strategy__section-title {
        font-size: 2em;
    }
    .page-resources-fishing-game-strategy__text-block {
        font-size: 1em;
    }
    .page-resources-fishing-game-strategy__strategy-card {
        padding: 25px;
    }
    .page-resources-fishing-game-strategy__card-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-fishing-game-strategy {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-fishing-game-strategy__hero-banner {
        padding-top: 100px !important; /* Mobile fixed header adjustment */
        padding-bottom: 40px;
    }
    .page-resources-fishing-game-strategy__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-resources-fishing-game-strategy__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-resources-fishing-game-strategy__cta-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    .page-resources-fishing-game-strategy__cta-button--large {
        font-size: 1em;
        padding: 15px 30px;
    }
    .page-resources-fishing-game-strategy__section {
        padding: 40px 15px;
    }
    .page-resources-fishing-game-strategy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-fishing-game-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-fishing-game-strategy__text-block {
        font-size: 0.95em;
    }
    .page-resources-fishing-game-strategy__strategy-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-resources-fishing-game-strategy__card-title {
        font-size: 1.3em;
    }
    .page-resources-fishing-game-strategy__strategy-card p,
    .page-resources-fishing-game-strategy__strategy-card li {
        font-size: 0.9em;
    }
    .page-resources-fishing-game-strategy__content-image,
    .page-resources-fishing-game-strategy__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }

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