.page-fishing-games-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-fishing-games-tips__hero-section {
  position: relative;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

.page-fishing-games-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-right: 40px;
  text-align: left;
  flex: 1 1 50%; /* Flexible width */
  min-width: 300px;
}

.page-fishing-games-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-fishing-games-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-tips__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-fishing-games-tips__hero-image-wrapper {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  flex: 1 1 40%; /* Flexible width */
  min-width: 400px;
}

.page-fishing-games-tips__hero-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0a0a0a; /* Inherit body background */
  color: #ffffff;
}

.page-fishing-games-tips__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-fishing-games-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games-tips__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-fishing-games-tips__image--center {
  text-align: center;
}

.page-fishing-games-tips__card-grid,
.page-fishing-games-tips__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-fishing-games-tips__card,
.page-fishing-games-tips__strategy-card {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-fishing-games-tips__card-title,
.page-fishing-games-tips__strategy-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-fishing-games-tips__card-image,
.page-fishing-games-tips__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-fishing-games-tips__card-description,
.page-fishing-games-tips__strategy-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-fishing-games-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games-tips__list-item strong {
  color: #26A9E0;
}

.page-fishing-games-tips__fish-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games-tips__fish-table th,
.page-fishing-games-tips__fish-table td {
  border: 1px solid rgba(38, 169, 224, 0.3);
  padding: 15px;
  text-align: left;
  color: #ffffff;
}

.page-fishing-games-tips__fish-table th {
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.1em;
  text-transform: uppercase;
}

.page-fishing-games-tips__fish-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.page-fishing-games-tips__faq-section {
  margin-top: 60px;
}

.page-fishing-games-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-tips__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(38, 169, 224, 0.3);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games-tips__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-tips__faq-item summary:hover {
  background-color: rgba(38, 169, 224, 0.1);
}

.page-fishing-games-tips__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games-tips__faq-item[open] .page-fishing-games-tips__faq-toggle {
  content: '−';
}

.page-fishing-games-tips__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-fishing-games-tips__cta-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 60px;
}

.page-fishing-games-tips__cta-title {
  font-size: 3em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-fishing-games-tips__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-fishing-games-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-tips__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

.page-fishing-games-tips__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-tips__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-tips__hero-content {
    margin-right: 20px;
  }

  .page-fishing-games-tips__hero-title {
    font-size: 3em;
  }

  .page-fishing-games-tips__hero-image-wrapper {
    min-width: 350px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games-tips__hero-content {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
    flex: 1 1 100%;
  }

  .page-fishing-games-tips__hero-title {
    font-size: 2.5em;
  }

  .page-fishing-games-tips__hero-description {
    font-size: 1em;
  }

  .page-fishing-games-tips__hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

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

  .page-fishing-games-tips__hero-image-wrapper {
    min-width: unset;
    flex: 1 1 100%;
  }

  .page-fishing-games-tips__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

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

  .page-fishing-games-tips__paragraph,
  .page-fishing-games-tips__list-item,
  .page-fishing-games-tips__card-description,
  .page-fishing-games-tips__strategy-description,
  .page-fishing-games-tips__faq-answer p {
    font-size: 0.95em;
  }

  .page-fishing-games-tips__card-grid,
  .page-fishing-games-tips__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-fishing-games-tips__card-title,
  .page-fishing-games-tips__strategy-title {
    font-size: 1.4em;
  }

  .page-fishing-games-tips__fish-table th,
  .page-fishing-games-tips__fish-table td {
    padding: 10px;
    font-size: 0.9em;
  }

  .page-fishing-games-tips__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }

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

  .page-fishing-games-tips__cta-description {
    font-size: 1em;
  }

  .page-fishing-games-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Force responsive for all images */
  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-tips__section,
  .page-fishing-games-tips__card,
  .page-fishing-games-tips__container,
  .page-fishing-games-tips__hero-section,
  .page-fishing-games-tips__content-area,
  .page-fishing-games-tips__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-fishing-games-tips__fish-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .page-fishing-games-tips__fish-table thead, .page-fishing-games-tips__fish-table tbody, .page-fishing-games-tips__fish-table th, .page-fishing-games-tips__fish-table td, .page-fishing-games-tips__fish-table tr {
    display: block;
  }
  .page-fishing-games-tips__fish-table th,
  .page-fishing-games-tips__fish-table td {
    width: 100%;
    box-sizing: border-box;
  }
  .page-fishing-games-tips__fish-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .page-fishing-games-tips__fish-table tr {
    margin-bottom: 15px;
    border: 1px solid rgba(38, 169, 224, 0.3);
    border-radius: 8px;
  }
  .page-fishing-games-tips__fish-table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 10px;
    color: #26A9E0;
  }
}