/* style/resources-latest-fishing-game-reviews.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1E90FF; /* Dodger Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light-gray: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-resources-latest-fishing-game-reviews {
    color: var(--text-dark);
    background-color: var(--dark-bg-1); /* Assuming --dark-bg-1 is defined in shared.css and is a dark color */
    font-family: 'Arial', sans-serif;
}

.page-resources-latest-fishing-game-reviews__light-bg {
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
}

.page-resources-latest-fishing-game-reviews__dark-bg {
    background-color: #1a1a1a; /* A specific dark background for sections to ensure contrast */
    color: var(--text-light);
}

.page-resources-latest-fishing-game-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Header Spacing */
.page-resources-latest-fishing-game-reviews__intro-section {
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
    padding-bottom: 60px;
    text-align: center;
}

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

.page-resources-latest-fishing-game-reviews__description-text {
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-resources-latest-fishing-game-reviews__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-resources-latest-fishing-game-reviews__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.page-resources-latest-fishing-game-reviews__btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-resources-latest-fishing-game-reviews__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-fishing-game-reviews__btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.page-resources-latest-fishing-game-reviews__btn-secondary:hover {
    background: #1a7ad9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-fishing-game-reviews__game-types-section,
.page-resources-latest-fishing-game-reviews__promotions-section,
.page-resources-latest-fishing-game-reviews__blog-section,
.page-resources-latest-fishing-game-reviews__faq-section {
    padding: 60px 0;
}

.page-resources-latest-fishing-game-reviews__game-types-grid,
.page-resources-latest-fishing-game-reviews__promo-grid,
.page-resources-latest-fishing-game-reviews__blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-latest-fishing-game-reviews__game-type-card,
.page-resources-latest-fishing-game-reviews__promo-card,
.page-resources-latest-fishing-game-reviews__blog-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-latest-fishing-game-reviews__game-type-card:hover,
.page-resources-latest-fishing-game-reviews__promo-card:hover,
.page-resources-latest-fishing-game-reviews__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-fishing-game-reviews__game-type-image,
.page-resources-latest-fishing-game-reviews__promo-image,
.page-resources-latest-fishing-game-reviews__blog-image {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-resources-latest-fishing-game-reviews__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-resources-latest-fishing-game-reviews__card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-latest-fishing-game-reviews__card-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-latest-fishing-game-reviews__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-latest-fishing-game-reviews__card-button {
    margin-top: auto; /* Push button to the bottom */
    padding: 12px 25px;
    font-size: 1em;
}

.page-resources-latest-fishing-game-reviews__load-more-btn {
    margin-top: 40px;
}

.page-resources-latest-fishing-game-reviews__post-date {
    font-size: 0.9em;
    color: #777777;
    margin-top: 10px;
    display: block;
}

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

.page-resources-latest-fishing-game-reviews__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-latest-fishing-game-reviews__faq-item.active .page-resources-latest-fishing-game-reviews__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-latest-fishing-game-reviews__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  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;
}

.page-resources-latest-fishing-game-reviews__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-latest-fishing-game-reviews__faq-question:active {
  background: #eeeeee;
}

.page-resources-latest-fishing-game-reviews__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-latest-fishing-game-reviews__main-title {
        font-size: 2.8em;
    }
    .page-resources-latest-fishing-game-reviews__section-title {
        font-size: 2em;
    }
    .page-resources-latest-fishing-game-reviews__game-type-card,
    .page-resources-latest-fishing-game-reviews__promo-card,
    .page-resources-latest-fishing-game-reviews__blog-card {
        padding: 25px;
    }
    .page-resources-latest-fishing-game-reviews__game-type-image,
    .page-resources-latest-fishing-game-reviews__promo-image,
    .page-resources-latest-fishing-game-reviews__blog-image {
        height: 200px;
    }
    .page-resources-latest-fishing-game-reviews__card-title {
        font-size: 1.3em;
    }
    .page-resources-latest-fishing-game-reviews__card-description {
        font-size: 0.95em;
    }
}

@media (max-width: 768px) {
    .page-resources-latest-fishing-game-reviews {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-latest-fishing-game-reviews__intro-section {
        padding-top: 160px !important; /* Mobile: Adjust based on mobile fixed header height */
        padding-bottom: 40px;
    }
    .page-resources-latest-fishing-game-reviews__container {
        padding: 0 15px;
    }
    .page-resources-latest-fishing-game-reviews__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-resources-latest-fishing-game-reviews__description-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-resources-latest-fishing-game-reviews__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-latest-fishing-game-reviews__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-resources-latest-fishing-game-reviews__game-types-grid,
    .page-resources-latest-fishing-game-reviews__promo-grid,
    .page-resources-latest-fishing-game-reviews__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-resources-latest-fishing-game-reviews__game-type-card,
    .page-resources-latest-fishing-game-reviews__promo-card,
    .page-resources-latest-fishing-game-reviews__blog-card {
        padding: 20px;
    }
    .page-resources-latest-fishing-game-reviews__game-type-image,
    .page-resources-latest-fishing-game-reviews__promo-image,
    .page-resources-latest-fishing-game-reviews__blog-image {
        height: 180px;
        margin-bottom: 15px;
    }
    .page-resources-latest-fishing-game-reviews__card-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    .page-resources-latest-fishing-game-reviews__card-description {
        font-size: 0.9em;
        margin-bottom: 15px;
    }
    .page-resources-latest-fishing-game-reviews__card-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-latest-fishing-game-reviews__load-more-btn {
        margin-top: 30px;
    }

    /* Mobile FAQ specific styles */
    .page-resources-latest-fishing-game-reviews__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-resources-latest-fishing-game-reviews__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-resources-latest-fishing-game-reviews__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-resources-latest-fishing-game-reviews__faq-answer {
        padding: 0 15px;
    }
    
    .page-resources-latest-fishing-game-reviews__faq-item.active .page-resources-latest-fishing-game-reviews__faq-answer {
        padding: 15px !important;
    }

    /* Ensure all images and containers are responsive on mobile */
    .page-resources-latest-fishing-game-reviews img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-resources-latest-fishing-game-reviews__section,
    .page-resources-latest-fishing-game-reviews__card,
    .page-resources-latest-fishing-game-reviews__container,
    .page-resources-latest-fishing-game-reviews__game-type-card,
    .page-resources-latest-fishing-game-reviews__promo-card,
    .page-resources-latest-fishing-game-reviews__blog-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-latest-fishing-game-reviews__game-types-section .page-resources-latest-fishing-game-reviews__container,
    .page-resources-latest-fishing-game-reviews__promotions-section .page-resources-latest-fishing-game-reviews__container,
    .page-resources-latest-fishing-game-reviews__blog-section .page-resources-latest-fishing-game-reviews__container,
    .page-resources-latest-fishing-game-reviews__faq-section .page-resources-latest-fishing-game-reviews__container {
        padding-left: 0;
        padding-right: 0;
    }
}