/* style/fishing-games.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-color-light: #f9f9f9;
    --bg-color-white: #ffffff;
    --border-color: #e0e0e0;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--bg-color-white);
}

.page-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

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

.page-fishing-games__section-title {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-fishing-games__paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color-dark);
    line-height: 1.8;
    text-align: left;
}

.page-fishing-games__highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* 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: var(--header-offset, 120px);
    background-color: #0a0a0a;
    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%;
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 12px;
    margin-top: -80px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-title {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
    font-size: 22px;
    color: var(--text-color-light);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-color), #FFC107);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    background: linear-gradient(135deg, #FFC107, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.6);
}

.page-fishing-games__cta-button--large {
    padding: 22px 60px;
    font-size: 24px;
    margin-top: 40px;
}

/* Intro Section */
.page-fishing-games__intro-section {
    background-color: var(--bg-color-light);
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    background-color: var(--bg-color-white);
}

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

.page-fishing-games__feature-item {
    background: var(--bg-color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-item img {
    width: 100%; /* Ensure images are not small icons */
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-fishing-games__feature-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase-section {
    background-color: var(--bg-color-light);
}

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

.page-fishing-games__game-card {
    background: var(--bg-color-white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

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

.page-fishing-games__game-title {
    font-size: 26px;
    color: var(--secondary-color);
    margin: 25px 15px 10px;
    font-weight: bold;
}

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

.page-fishing-games__game-title a:hover {
    color: var(--primary-color);
}

.page-fishing-games__game-description {
    font-size: 16px;
    color: var(--text-color-dark);
    padding: 0 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.page-fishing-games__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), #FFC107);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(135deg, #FFC107, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Guide Section */
.page-fishing-games__guide-section {
    background-color: var(--bg-color-white);
}

.page-fishing-games__guide-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-fishing-games__guide-steps {
    flex: 2;
    text-align: left;
}

.page-fishing-games__guide-item {
    margin-bottom: 30px;
}

.page-fishing-games__guide-title {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__guide-item .page-fishing-games__paragraph {
    font-size: 17px;
}

.page-fishing-games__guide-item .page-fishing-games__paragraph a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-fishing-games__guide-item .page-fishing-games__paragraph a:hover {
    color: var(--primary-color);
}

.page-fishing-games__guide-image {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__guide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.page-fishing-games__promo-item {
    background: var(--bg-color-white);
    border-radius: 12px;
    padding-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-fishing-games__promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__promo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
}

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

.page-fishing-games__promo-description {
    font-size: 16px;
    color: var(--text-color-dark);
    padding: 0 20px;
    margin-bottom: 20px;
}

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

.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--bg-color-white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
}

.page-fishing-games__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-color-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__faq-list {
    margin-top: 40px;
    text-align: left;
    flex: 2;
}

.page-fishing-games__faq-section .page-fishing-games__container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-fishing-games__faq-image {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__faq-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-fishing-games__faq-item.active {
    border-color: var(--primary-color);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--bg-color-white);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-fishing-games__faq-question:hover {
    background: var(--bg-color-light);
}

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

.page-fishing-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    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: 30px;
    height: 30px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg); /* Change to X for active */
}

.page-fishing-games__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.3s ease;
    padding: 0 25px;
    opacity: 0;
    background: var(--bg-color-light);
    border-top: 1px solid var(--border-color);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
}

.page-fishing-games__faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color-dark);
    text-align: left;
}

.page-fishing-games__faq-answer a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: var(--primary-color);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    background: linear-gradient(135deg, var(--secondary-color), #a00000);
    color: var(--text-color-light);
    padding: 80px 0;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
    color: var(--primary-color);
}

.page-fishing-games__conclusion-section .page-fishing-games__paragraph {
    color: var(--text-color-light);
    font-size: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: 44px;
    }
    .page-fishing-games__hero-description {
        font-size: 20px;
    }
    .page-fishing-games__section-title {
        font-size: 32px;
    }
    .page-fishing-games__guide-content,
    .page-fishing-games__faq-section .page-fishing-games__container {
        flex-direction: column;
        align-items: center;
    }
    .page-fishing-games__guide-image, .page-fishing-games__faq-image {
        min-width: unset;
        width: 80%;
        margin-top: 40px;
    }
    .page-fishing-games__faq-list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 20px;
    }
    .page-fishing-games__hero-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .page-fishing-games__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__cta-button--large {
        padding: 15px 40px;
        font-size: 18px;
        margin-top: 30px;
    }
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-fishing-games__paragraph {
        font-size: 15px;
        text-align: left;
    }
    .page-fishing-games__feature-item {
        padding: 20px;
    }
    .page-fishing-games__feature-title {
        font-size: 20px;
    }
    .page-fishing-games__game-card img {
        height: 200px;
    }
    .page-fishing-games__game-title {
        font-size: 22px;
    }
    .page-fishing-games__game-description {
        font-size: 14px;
    }
    .page-fishing-games__btn-primary {
        max-width: 100% !important;
        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__guide-image, .page-fishing-games__faq-image {
        width: 100%;
    }
    .page-fishing-games__promo-item img {
        
    }
    .page-fishing-games__promo-title {
        font-size: 20px;
    }
    .page-fishing-games__btn-secondary {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        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__faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games__faq-question h3 {
        font-size: 16px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 24px;
        width: 25px;
        height: 25px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px;
    }
    .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
        padding: 15px 20px !important;
    }
    .page-fishing-games__faq-answer p {
        font-size: 15px;
    }

    /* Mobile image responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__container,
    .page-fishing-games__hero-container,
    .page-fishing-games__features-grid,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__guide-content,
    .page-fishing-games__faq-list,
    .page-fishing-games__faq-section .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__features-grid, .page-fishing-games__game-cards-grid, .page-fishing-games__promo-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .page-fishing-games__guide-steps {
        width: 100%;
    }
    .page-fishing-games__guide-image, .page-fishing-games__faq-image {
        order: -1; /* Move image above text on mobile */
        margin-bottom: 30px;
        margin-top: 0;
    }
}

/* Ensure all image containers handle responsive images */
.page-fishing-games__hero-image,
.page-fishing-games__feature-item,
.page-fishing-games__game-card,
.page-fishing-games__guide-image,
.page-fishing-games__promo-item,
.page-fishing-games__faq-image {
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure no filter on images */
.page-fishing-games img {
    filter: none !important;
}