/* style/fishing-games.css */
:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --text-main-color: #1F2D3D;
    --card-bg-color: #FFFFFF;
    --background-color: #F4F7FB;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Body background is light (#F4F7FB), so use dark text */
    background-color: var(--background-color);
    line-height: 1.6;
}

.page-fishing-games__section {
    padding: 60px 20px;
    margin-bottom: 20px;
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-fishing-games__description {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

/* HERO Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #e0f2f7;
    overflow: hidden;
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width on desktop */
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-content .page-fishing-games__description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #333;
    max-width: 800px;
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%; /* Ensure full width for button container */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background-color: var(--card-bg-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-contact {
    background-color: #f0f0f0;
    color: var(--text-main-color);
    border: 1px solid #ccc;
}

.page-fishing-games__btn-contact:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-fishing-games__introduction {
    background-color: var(--card-bg-color);
    border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-fishing-games__text-block {
    flex: 1;
    font-size: 17px;
    line-height: 1.7;
}

.page-fishing-games__text-block p {
    margin-bottom: 20px;
    color: #444;
}

.page-fishing-games__image-block {
    flex: 1;
    min-width: 400px;
}

.page-fishing-games__image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__text-block .page-fishing-games__btn-primary {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
}

/* Game Types Section */
.page-fishing-games__game-types {
    background-color: var(--background-color);
}

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

.page-fishing-games__game-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-fishing-games__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-fishing-games__card-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    padding: 0 20px;
}

.page-fishing-games__btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Strategy Guide Section */
.page-fishing-games__strategy-guide {
    background-color: var(--card-bg-color);
    border-bottom: 1px solid var(--border-color);
}

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

.page-fishing-games__strategy-item {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__strategy-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__strategy-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Promotions Section */
.page-fishing-games__promotions {
    background-color: var(--background-color);
}

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

.page-fishing-games__promo-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

/* Platform Features Section */
.page-fishing-games__platform-features {
    background-color: var(--card-bg-color);
    border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-fishing-games__feature-item {
    padding: 30px 20px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__feature-item img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter changes image color */
    display: block;
    margin-left: auto;
    margin-right: auto;
    min- /* Enforce min-size for features */
    min-
}

.page-fishing-games__feature-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-fishing-games__feature-item p {
    font-size: 15px;
    color: #666;
}

/* Registration Guide Section */
.page-fishing-games__registration-guide {
    background-color: var(--background-color);
}

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

.page-fishing-games__step-item {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__step-icon {
    width: 60px;
    height: 60px;
    background: var(--button-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 25px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__step-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: var(--card-bg-color);
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: #f5f5f5;
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}
.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Latest Blog Section */
.page-fishing-games__latest-blog {
    background-color: var(--background-color);
}

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

.page-fishing-games__blog-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__blog-card .page-fishing-games__card-title {
    font-size: 20px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 0 20px;
}

.page-fishing-games__blog-card .page-fishing-games__card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__blog-card .page-fishing-games__card-title a:hover {
    color: var(--secondary-color);
}

.page-fishing-games__blog-card .page-fishing-games__card-description {
    font-size: 15px;
    text-align: left;
    color: #666;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-fishing-games__post-date {
    display: block;
    font-size: 14px;
    color: #999;
    text-align: left;
    padding: 0 20px 20px;
}

/* Contact CTA Section */
.page-fishing-games__contact-cta {
    background: var(--button-gradient);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-fishing-games__section-title--light {
    color: #ffffff;
}

.page-fishing-games__section-title--light::after {
    background-color: var(--glow-color);
}

.page-fishing-games__description--light {
    color: #f0f0f0;
}

.page-fishing-games__contact-cta .page-fishing-games__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__image-block {
        min-width: unset;
        margin-top: 30px;
    }

    .page-fishing-games__section-title {
        font-size: 30px;
    }

    .page-fishing-games__description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__hero-image img {
        border-radius: 8px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-fishing-games__hero-content .page-fishing-games__description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-contact,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-fishing-games__container,
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__content-wrapper,
    .page-fishing-games__game-grid,
    .page-fishing-games__strategy-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__blog-grid,
    .page-fishing-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-fishing-games__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .page-fishing-games__description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .page-fishing-games__game-card img,
    .page-fishing-games__promo-card img,
    .page-fishing-games__blog-card img {
        
    }

    .page-fishing-games__card-title {
        font-size: 20px;
    }

    .page-fishing-games__strategy-title {
        font-size: 19px;
    }

    .page-fishing-games__feature-item img {
        
        
        min-
        min-
    }

    .page-fishing-games__feature-title {
        font-size: 18px;
    }

    .page-fishing-games__step-icon {
        width: 50px;
        height: 50px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .page-fishing-games__step-title {
        font-size: 20px;
    }

    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question { padding: 15px; }
    .page-fishing-games__faq-qtext { font-size: 15px; }
    .page-fishing-games__faq-toggle { font-size: 24px; width: 24px; }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer { padding: 0 15px 15px; }

    .page-fishing-games__blog-card .page-fishing-games__card-title {
        font-size: 18px;
    }

    .page-fishing-games__contact-cta {
        padding: 60px 15px;
    }

    .page-fishing-games__contact-cta .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 24px;
    }

    .page-fishing-games__description {
        font-size: 14px;
    }

    .page-fishing-games__hero-image img {
        border-radius: 4px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }

    .page-fishing-games__game-card img,
    .page-fishing-games__promo-card img,
    .page-fishing-games__blog-card img {
        
    }
}