/* style/fishing-games.css */

/* Custom Colors */
:root {
    --page-fishing-games-card-bg: #11271B;
    --page-fishing-games-background: #08160F;
    --page-fishing-games-text-main: #F2FFF6;
    --page-fishing-games-text-secondary: #A7D9B8;
    --page-fishing-games-border: #2E7A4E;
    --page-fishing-games-glow: #57E38D;
    --page-fishing-games-gold: #F2C14E;
    --page-fishing-games-divider: #1E3A2A;
    --page-fishing-games-deep-green: #0A4B2C;
    --page-fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--page-fishing-games-text-main); /* Default text color for the page */
    background-color: var(--page-fishing-games-background); /* Body background from shared.css */
}

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

.page-fishing-games__section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--page-fishing-games-gold);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__text-block p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 1em;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__text-block p a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__text-block p a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    box-sizing: border-box;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: -100px; /* Overlap slightly with image for visual flow */
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__main-title {
    font-size: clamp(2.5em, 4vw, 3.8em); /* Responsive font size */
    color: var(--page-fishing-games-gold);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-btn-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--page-fishing-games-gold);
    border: 2px solid var(--page-fishing-games-gold);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--page-fishing-games-gold);
    color: var(--page-fishing-games-background);
    transform: translateY(-3px);
}

/* Introduction Section */
.page-fishing-games__introduction-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
}

.page-fishing-games__introduction-section .page-fishing-games__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-fishing-games__introduction-section .page-fishing-games__text-block {
    max-width: 800px;
    text-align: center;
}

.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__image-center {
    margin: 40px auto;
}

/* Advantages Section */
.page-fishing-games__advantages-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-card-bg);
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-gold);
}

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

.page-fishing-games__card {
    background: rgba(17, 40, 27, 0.8);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--page-fishing-games-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fishing-games__card p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__card p a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__card p a:hover {
    text-decoration: underline;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__game-card {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__game-title {
    font-size: 1.4em;
    color: var(--page-fishing-games-gold);
    padding: 15px 20px 5px;
    font-weight: 700;
}

.page-fishing-games__game-title a {
    color: inherit;
    text-decoration: none;
}

.page-fishing-games__game-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: var(--page-fishing-games-text-secondary);
    padding: 0 20px 20px;
    line-height: 1.6;
}

.page-fishing-games__game-description a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__game-description a:hover {
    text-decoration: underline;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__light-bg {
    background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: var(--page-fishing-games-gold);
}

.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-card {
    background: rgba(17, 40, 27, 0.8);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-fishing-games__step-number {
    font-size: 3em;
    font-weight: 800;
    color: rgba(242, 193, 78, 0.2);
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 0;
}

.page-fishing-games__step-card h3,
.page-fishing-games__step-card p {
    position: relative;
    z-index: 1;
}

.page-fishing-games__step-title {
    font-size: 1.6em;
    color: var(--page-fishing-games-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fishing-games__step-card p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__step-card p a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__step-card p a:hover {
    text-decoration: underline;
}

.page-fishing-games__btn-link {
    display: inline-block;
    background: var(--page-fishing-games-btn-gradient);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(34, 199, 104, 0.3);
}

.page-fishing-games__btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 199, 104, 0.5);
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__strategy-item {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
}

.page-fishing-games__strategy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__strategy-title {
    font-size: 1.4em;
    color: var(--page-fishing-games-gold);
    margin-bottom: 10px;
    font-weight: 700;
    padding: 0 15px;
}

.page-fishing-games__strategy-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--page-fishing-games-text-secondary);
    padding: 0 15px;
}

.page-fishing-games__strategy-item p a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__strategy-item p a:hover {
    text-decoration: underline;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__promo-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-fishing-games__promo-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 1.5em;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__promo-content p a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__promo-content p a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__faq-item {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-item[open] {
    background: rgba(17, 40, 27, 0.95);
    border-color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-fishing-games__faq-question:hover {
    color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__faq-answer p a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__faq-answer p a:hover {
    text-decoration: underline;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-deep-green);
    text-align: center;
}

.page-fishing-games__conclusion-section p {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__conclusion-section p a {
    color: var(--page-fishing-games-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__conclusion-section p a:hover {
    text-decoration: underline;
}

.page-fishing-games__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games__hero-content {
        margin-top: -80px;
        padding: 30px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games__grid-layout,
    .page-fishing-games__game-list,
    .page-fishing-games__steps-grid,
    .page-fishing-games__strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-fishing-games__hero-section {
        padding: 10px 15px 40px;
    }
    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 25px;
        max-width: 100%;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__grid-layout,
    .page-fishing-games__game-list,
    .page-fishing-games__steps-grid,
    .page-fishing-games__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__card,
    .page-fishing-games__game-card,
    .page-fishing-games__step-card,
    .page-fishing-games__strategy-item {
        padding: 20px;
    }
    .page-fishing-games__game-image,
    .page-fishing-games__strategy-image {
        height: auto; /* Allow height to adjust */
    }
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__advantages-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__hero-image-wrapper {
        padding: 0;
    }
    .page-fishing-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
    }
    .page-fishing-games__btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-fishing-games__hero-description {
        font-size: 0.9em;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
    }
}