/* style/fishing-games.css */

/* Custom Colors */
:root {
    --fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --fishing-games-card-bg: #11271B;
    --fishing-games-background: #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;
}

/* Base styles for the page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--fishing-games-text-main); /* Default text color for dark background */
    background-color: var(--fishing-games-background); /* Main page background */
}

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

/* Section styles */
.page-fishing-games__hero-section,
.page-fishing-games__intro-section,
.page-fishing-games__games-showcase,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-fishing-games__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__highlight {
    color: var(--fishing-games-deep-green);
}

/* 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;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 40px;
}

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

.page-fishing-games__hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.page-fishing-games__description {
    font-size: 1.2rem;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 30px;
}

/* Titles */
.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--fishing-games-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: var(--fishing-games-deep-green);
}

.page-fishing-games__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--fishing-games-gold);
}

.page-fishing-games__light-bg .page-fishing-games__sub-title {
    color: var(--fishing-games-deep-green);
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

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

.page-fishing-games__btn-primary {
    background: var(--fishing-games-button-gradient);
    color: var(--fishing-games-text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--fishing-games-gold);
    border: 2px solid var(--fishing-games-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--fishing-games-gold);
    color: var(--fishing-games-background);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-inline {
    margin-top: 30px;
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 5px;
}

/* Card styles */
.page-fishing-games__card {
    background-color: var(--fishing-games-card-bg);
    border: 1px solid var(--fishing-games-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--fishing-games-text-main);
}

.page-fishing-games__light-bg .page-fishing-games__card {
    background-color: #ffffff;
    border-color: #e0e0e0;
    color: #333333;
}

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

.page-fishing-games__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--fishing-games-gold);
}

.page-fishing-games__light-bg .page-fishing-games__card-title {
    color: var(--fishing-games-deep-green);
}

.page-fishing-games__card-text {
    font-size: 1rem;
    color: var(--fishing-games-text-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-fishing-games__light-bg .page-fishing-games__card-text {
    color: #555555;
}

/* Feature list */
.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-fishing-games__list-item {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__light-bg .page-fishing-games__list-item {
    color: #555555;
}

.page-fishing-games__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--fishing-games-glow);
}

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

/* 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__step-card {
    text-align: left;
}

/* Security features */
.page-fishing-games__security-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--fishing-games-card-bg);
    border: 1px solid var(--fishing-games-border);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: var(--fishing-games-text-main);
}

.page-fishing-games__light-bg .page-fishing-games__feature-item {
    background-color: #f9f9f9;
    border-color: #e0e0e0;
    color: #333333;
}

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

.page-fishing-games__feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--fishing-games-gold);
}

.page-fishing-games__light-bg .page-fishing-games__feature-title {
    color: var(--fishing-games-deep-green);
}

.page-fishing-games__feature-text {
    font-size: 0.95rem;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__light-bg .page-fishing-games__feature-text {
    color: #555555;
}

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

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--fishing-games-deep-green);
    color: var(--fishing-games-text-main);
    border-bottom: 1px solid var(--fishing-games-divider);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: var(--fishing-games-gold);
    color: var(--fishing-games-background);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    color: var(--fishing-games-background);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-qtext {
    color: var(--fishing-games-background);
}

.page-fishing-games__light-bg .page-fishing-games__faq-question {
    background-color: #f0f0f0;
    color: #333333;
    border-color: #e0e0e0;
}

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

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

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

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

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary);
    background-color: var(--fishing-games-card-bg);
    border-radius: 0 0 10px 10px;
    border: 1px solid var(--fishing-games-border);
    border-top: none;
}

.page-fishing-games__light-bg .page-fishing-games__faq-answer {
    background-color: #ffffff;
    color: #555555;
    border-color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body handles header offset */
        padding-bottom: 40px;
    }

    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 30px;
    }

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

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-fishing-games__description {
        font-size: 1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 20px;
    }

    .page-fishing-games__sub-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-top: 30px;
    }

    .page-fishing-games__text-block,
    .page-fishing-games__list-item,
    .page-fishing-games__card-text,
    .page-fishing-games__feature-text,
    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
    }

    .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__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__game-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__guide-steps,
    .page-fishing-games__security-features,
    .page-fishing-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games__feature-item {
        flex: 1 1 100%;
    }

    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .page-fishing-games__hero-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__games-showcase,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__security-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        padding: 40px 0;
    }
}