/* style/fishing-games.css */

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

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--fishing-games-text-main); /* Default text color for the page, assuming dark body bg */
    background-color: var(--fishing-games-bg-main); /* Assuming this is the body background */
}

/* Sections */
.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__dark-bg {
    background-color: var(--fishing-games-bg-main);
    color: var(--fishing-games-text-main);
}

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

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

/* Hero Section */
.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--fishing-games-bg-main);
    position: relative;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Adjust based on typical screen sizes */
    margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fishing-games-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--fishing-games-glow);
}

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

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-btn-gradient);
    color: var(--fishing-games-text-main);
    border: 2px solid var(--fishing-games-glow);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(87, 227, 141, 0.8);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--fishing-games-glow);
    border: 2px solid var(--fishing-games-glow);
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--fishing-games-glow);
    color: var(--fishing-games-bg-main);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(87, 227, 141, 0.6);
}

.page-fishing-games__btn-card {
    background: var(--fishing-games-btn-gradient);
    color: var(--fishing-games-text-main);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-fishing-games__cta-center {
    margin-top: 40px;
}

/* General Text & Titles */
.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--fishing-games-gold);
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__highlight {
    color: var(--fishing-games-glow);
    font-weight: 600;
}

.page-fishing-games__inline-link {
    color: var(--fishing-games-glow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-fishing-games__inline-link:hover {
    color: var(--fishing-games-gold);
    text-decoration: underline;
}

/* Game Cards Grid */
.page-fishing-games__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__card {
    background-color: var(--fishing-games-bg-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--fishing-games-text-main);
    border: 1px solid var(--fishing-games-border);
}

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

.page-fishing-games__card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 400px; /* Ensure images are not too small */
    min-width: 200px;
    min-height: 200px;
    display: block;
}

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

.page-fishing-games__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary);
}

/* Guide Steps */
.page-fishing-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__guide-item {
    background-color: var(--fishing-games-bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--fishing-games-border);
}

.page-fishing-games__guide-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fishing-games-glow);
    margin-bottom: 15px;
}

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

.page-fishing-games__strategy-card {
    background-color: var(--fishing-games-bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--fishing-games-border);
}

.page-fishing-games__strategy-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fishing-games-gold);
    margin-bottom: 15px;
}

/* Promotions Section */
.page-fishing-games__promotions-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__promotion-item {
    background-color: var(--fishing-games-bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--fishing-games-border);
}

.page-fishing-games__promotion-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fishing-games-glow);
    margin-bottom: 15px;
}

/* Mobile App Section */
.page-fishing-games__app-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.page-fishing-games__app-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.page-fishing-games__app-image-wrapper {
    flex: 1;
    max-width: 400px;
}

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

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: var(--fishing-games-bg-card);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--fishing-games-border);
}

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

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--fishing-games-gold);
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--fishing-games-glow);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-fishing-games__hero-description {
        font-size: 1.05rem;
    }
    .page-fishing-games__app-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-fishing-games__app-text,
    .page-fishing-games__app-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-fishing-games__hero-description {
        font-size: 1rem;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__guide-steps,
    .page-fishing-games__strategy-grid,
    .page-fishing-games__promotions-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile image responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure content containers don't overflow */
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__app-content,
    .page-fishing-games__cta-buttons,
    .page-fishing-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__app-text {
        padding-left: 0;
        padding-right: 0;
    }
    .page-fishing-games__faq-question,
    .page-fishing-games__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }
    .page-fishing-games__hero-description,
    .page-fishing-games__text-block {
        font-size: 0.95rem;
    }
    .page-fishing-games__faq-question {
        font-size: 1rem;
    }
}