/* style/fishing-games.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A1A; /* Dark Grey */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #000;
    --bg-light: #f8f9fa;
    --border-color: #333;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --card-bg-light: #ffffff;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Body background is dark, so text is light */
    background-color: var(--bg-dark);
    line-height: 1.6;
    padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__section-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
}

.page-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:98win_club,fishing_games,hero_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-fishing-games__hero-section > .page-fishing-games__container {
    position: relative;
    z-index: 1;
}

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

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

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

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

.page-fishing-games__btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-fishing-games__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
    display: block;
    object-fit: cover;
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 0;
    background-color: #050505;
    text-align: center;
}

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

.page-fishing-games__feature-card {
    background: var(--card-bg-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(1.2); /* Allowed for icons to make them pop, not changing original color hue */
}

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

.page-fishing-games__feature-text {
    font-size: 16px;
    opacity: 0.8;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

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

.page-fishing-games__game-card {
    background: var(--card-bg-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 20px 10px;
}

.page-fishing-games__game-card p {
    font-size: 16px;
    padding: 0 20px 20px;
    flex-grow: 1;
    opacity: 0.8;
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 80px 0;
    background-color: #050505;
    text-align: center;
}

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

.page-fishing-games__step-item {
    background: var(--card-bg-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(1.2);
}

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

.page-fishing-games__step-text {
    font-size: 15px;
    opacity: 0.8;
}

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

/* Tips Section */
.page-fishing-games__tips-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

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

.page-fishing-games__tip-card {
    background: var(--card-bg-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__tip-text {
    font-size: 16px;
    opacity: 0.8;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: #050505;
    text-align: center;
}

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

.page-fishing-games__promo-card {
    background: var(--card-bg-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

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

.page-fishing-games__promo-text {
    font-size: 16px;
    padding: 0 20px 20px;
    flex-grow: 1;
    opacity: 0.8;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

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

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    color: var(--text-light);
}

.page-fishing-games__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    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 {
    transform: rotate(45deg);
    color: var(--text-light);
}

.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.4s ease;
    padding: 0 25px;
    opacity: 0;
    text-align: left;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.03);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain any content */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-fishing-games__faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 44px;
    }
    .page-fishing-games__hero-description {
        font-size: 20px;
    }
    .page-fishing-games__section-title {
        font-size: 32px;
    }
    .page-fishing-games__section-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        padding-top: 100px !important; /* Adjust for fixed header on mobile */
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games__container {
        padding: 0 15px;
    }

    .page-fishing-games__hero-section {
        padding: 40px 0;
    }

    .page-fishing-games__main-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

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

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-fishing-games__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 25px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .page-fishing-games__hero-image {
        border-radius: 8px;
        margin-top: 20px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-fishing-games__features-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section {
        padding: 50px 0;
    }

    .page-fishing-games__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

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

    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__guide-steps,
    .page-fishing-games__tips-grid,
    .page-fishing-games__promo-cards {
        gap: 20px;
        margin-top: 30px;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__step-item,
    .page-fishing-games__tip-card,
    .page-fishing-games__promo-card {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__feature-icon,
    .page-fishing-games__step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .page-fishing-games__feature-title,
    .page-fishing-games__step-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__promo-title {
        font-size: 18px;
    }

    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        height: 150px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-fishing-games__game-card .page-fishing-games__btn-primary {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
    }

    .page-fishing-games__cta-center .page-fishing-games__btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 25px;
        font-size: 16px;
    }

    .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;
        margin-left: 15px;
    }

    .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;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 30px;
    }
    .page-fishing-games__hero-description {
        font-size: 15px;
    }
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__cta-buttons {
        padding: 0 10px;
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__step-item,
    .page-fishing-games__tip-card,
    .page-fishing-games__promo-card {
        padding: 15px;
    }
    .page-fishing-games__feature-icon,
    .page-fishing-games__step-icon {
        width: 60px;
        height: 60px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__step-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__promo-title {
        font-size: 16px;
    }
    .page-fishing-games__feature-text,
    .page-fishing-games__step-text,
    .page-fishing-games__tip-text,
    .page-fishing-games__promo-text {
        font-size: 14px;
    }
    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        height: 120px;
    }
    .page-fishing-games__faq-question {
        padding: 12px 15px;
    }
    .page-fishing-games__faq-question h3 {
        font-size: 14px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 20px;
        width: 20px;
        height: 20px;
        margin-left: 10px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 15px;
    }
    .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
        padding: 12px 15px !important;
    }
    .page-fishing-games__faq-answer p {
        font-size: 14px;
    }
}