/* style/fishing-games.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --button-register-color: #C30808;
    --button-login-color: #C30808;
    --button-font-color: #FFFF00;
    --body-bg-color: #0d0d0d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --card-bg-light: #ffffff;
    --border-light: #e0e0e0;
}

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

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-fishing-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: var(--text-light);
}

.page-fishing-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--button-font-color); /* Yellow for impact */
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background-color: var(--button-register-color); /* Red for Register/Login */
    color: var(--button-font-color); /* Yellow for font */
    border: 2px solid var(--button-register-color);
}

.page-fishing-games__btn-primary:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--button-font-color); /* Yellow for font */
    border: 2px solid var(--button-register-color); /* Red border */
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--button-register-color); /* Red background on hover */
    color: var(--button-font-color); /* Yellow font on hover */
    transform: translateY(-2px);
}

.page-fishing-games__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    color: var(--text-light); /* Default text color for content areas */
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--button-font-color); /* Yellow for section titles */
}

.page-fishing-games__section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-light);
}

.page-fishing-games__introduction-section .page-fishing-games__section-title,
.page-fishing-games__guide-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-title,
.page-fishing-games__faq-section .page-fishing-games__section-title {
    color: var(--primary-color); /* Green for titles in light sections */
}

.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
    background-color: var(--secondary-color); /* White background for these sections */
    color: var(--text-dark); /* Dark text on light background */
}

.page-fishing-games__introduction-section .page-fishing-games__section-text,
.page-fishing-games__guide-section .page-fishing-games__section-text,
.page-fishing-games__promotions-section .page-fishing-games__section-text,
.page-fishing-games__faq-section .page-fishing-games__faq-answer p {
    color: var(--text-dark);
}

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

.page-fishing-games__game-card,
.page-fishing-games__strategy-card,
.page-fishing-games__promo-card,
.page-fishing-games__feature-item {
    background: var(--card-bg-dark); /* Semi-transparent white on dark background */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light);
}

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

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--button-font-color); /* Yellow for card titles */
}

.page-fishing-games__card-description {
    font-size: 1em;
    color: var(--text-light);
}

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

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

.page-fishing-games__guide-image {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__guide-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-fishing-games__guide-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-fishing-games__guide-list li strong {
    color: var(--primary-color);
}

.page-fishing-games__promo-cta {
    margin-top: 40px;
    text-align: center;
}

.page-fishing-games__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-fishing-games__feature-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--button-font-color); /* Yellow for feature titles */
}

.page-fishing-games__feature-description {
    font-size: 1em;
    color: var(--text-light);
}

.page-fishing-games__faq-list {
    margin-top: 30px;
}

.page-fishing-games__faq-item {
    background: var(--card-bg-light); /* White background for FAQ items */
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-fishing-games__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    color: var(--primary-color); /* Green for FAQ questions */
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-fishing-games__conclusion-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

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

.page-fishing-games__conclusion-section .page-fishing-games__section-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games__hero-description {
        font-size: 1.2em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__guide-content {
        flex-direction: column;
        align-items: center;
    }
    .page-fishing-games__guide-image {
        margin-top: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    }
    .page-fishing-games__hero-title {
        font-size: 2em;
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-fishing-games__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__content-area {
        padding: 40px 15px;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-text {
        font-size: 1em;
    }
    .page-fishing-games__game-grid,
    .page-fishing-games__strategy-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__card-image {
        height: 180px;
    }
    .page-fishing-games__guide-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__game-card,
    .page-fishing-games__strategy-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__feature-item,
    .page-fishing-games__faq-item,
    .page-fishing-games__introduction-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section,
    .page-fishing-games__dark-bg {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
        font-size: 1em;
    }
}