/* style/fishing-games.css */

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

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

.page-fishing-games__section {
    padding: 60px 0;
    background-color: var(--background-color);
}

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

.page-fishing-games__section-title {
    font-size: 38px;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--button-gradient);
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-secondary-color);
}

.page-fishing-games__highlight-text {
    color: var(--gold-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: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-green-color);
    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;
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

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

.page-fishing-games__hero-description {
    font-size: 20px;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6), 0 0 15px var(--glow-color);
}

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

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

.page-fishing-games__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
}

.page-fishing-games__feature-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 250px; /* Or a fixed size like 150px, but minimum 200px requirement means this needs to be larger */
    height: auto;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.page-fishing-games__feature-description {
    font-size: 16px;
    color: var(--text-secondary-color);
    line-height: 1.7;
}

/* Game List */
.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-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__game-title {
    font-size: 22px;
    color: var(--gold-color);
    padding: 20px 15px 10px;
    font-weight: bold;
}

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

/* How to Play Section */
.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__step-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

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

.page-fishing-games__step-description {
    font-size: 16px;
    color: var(--text-secondary-color);
    line-height: 1.7;
}

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

/* Strategy Section */
.page-fishing-games__strategy-image {
    width: 100%;
    height: auto;
    max-width: 900px;
    display: block;
    margin: 40px auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
}

.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__strategy-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-fishing-games__strategy-sub-title {
    font-size: 22px;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__strategy-description {
    font-size: 16px;
    color: var(--text-secondary-color);
    line-height: 1.7;
}

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

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

.page-fishing-games__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
}

.page-fishing-games__promotion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__promotion-title {
    font-size: 22px;
    color: var(--gold-color);
    padding: 20px 15px 10px;
    font-weight: bold;
}

.page-fishing-games__promotion-description {
    font-size: 15px;
    color: var(--text-secondary-color);
    padding: 0 15px 20px;
    line-height: 1.7;
}

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

.page-fishing-games__security-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-fishing-games__security-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 200px; /* Or larger, minimum 200px */
    height: auto;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.page-fishing-games__security-description {
    font-size: 16px;
    color: var(--text-secondary-color);
    line-height: 1.7;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
}

details.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
    background: rgba(var(--primary-color), 0.1);
}

.page-fishing-games__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}

.page-fishing-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 25px 25px;
    background: var(--deep-green-color);
    border-radius: 0 0 12px 12px;
    color: var(--text-secondary-color);
    font-size: 16px;
}

.page-fishing-games__faq-answer p {
    margin: 0;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 34px;
    }
    .page-fishing-games__hero-title {
        font-size: 42px;
    }
    .page-fishing-games__hero-description {
        font-size: 18px;
    }
    .page-fishing-games__cta-button {
        padding: 15px 40px;
        font-size: 20px;
    }
    .page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__promotion-title, .page-fishing-games__security-title {
        font-size: 20px;
    }
    .page-fishing-games__step-title, .page-fishing-games__strategy-sub-title {
        font-size: 22px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body handles header offset */
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-fishing-games__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 18px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__container, .page-fishing-games__hero-container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__hero-image img,
    .page-fishing-games__feature-icon,
    .page-fishing-games__game-image,
    .page-fishing-games__strategy-image,
    .page-fishing-games__promotion-image,
    .page-fishing-games__security-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    .page-fishing-games__game-image {
        height: 180px; /* Adjust for mobile */
    }

    .page-fishing-games__promotion-image {
        height: 150px; /* Adjust for mobile */
    }

    .page-fishing-games__text-block {
        font-size: 15px;
    }
    .page-fishing-games__feature-card, .page-fishing-games__game-card, .page-fishing-games__promotion-card, .page-fishing-games__security-item, .page-fishing-games__step-item, .page-fishing-games__strategy-item {
        padding: 20px;
    }
    .page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__promotion-title, .page-fishing-games__security-title {
        font-size: 18px;
    }
    .page-fishing-games__step-title, .page-fishing-games__strategy-sub-title {
        font-size: 20px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 15px;
    }
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px 20px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: 28px;
    }
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__cta-button {
        font-size: 16px;
        padding: 10px 25px;
    }
    .page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__promotion-title, .page-fishing-games__security-title {
        font-size: 16px;
    }
    .page-fishing-games__step-title, .page-fishing-games__strategy-sub-title {
        font-size: 18px;
    }
    .page-fishing-games__text-block, .page-fishing-games__feature-description, .page-fishing-games__game-description, .page-fishing-games__promotion-description, .page-fishing-games__security-description, .page-fishing-games__step-description, .page-fishing-games__strategy-description, .page-fishing-games__faq-answer p {
        font-size: 14px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 14px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 24px;
    }
}