:root {
    --primary-color: #C61F1F; /* Main brand color */
    --secondary-color: #E53030; /* Auxiliary brand color */
    --button-gradient-start: #FFB04A;
    --button-gradient-end: #D86A14;
    --card-bg: #2A1212;
    --site-bg-dark: #140C0C; /* Overall background */
    --text-main: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
    --text-dark: #333333; /* For elements with light backgrounds */
    --text-light: #ffffff; /* For elements with dark backgrounds */
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for dark background */
    background-color: var(--site-bg-dark); /* Overall dark background */
    padding-bottom: 50px;
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3,
.page-fishing-games h4,
.page-fishing-games h5,
.page-fishing-games h6 {
    color: var(--gold-color); /* Headings in gold for visibility */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-fishing-games h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 */
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(243, 197, 77, 0.5);
}

.page-fishing-games h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
}

.page-fishing-games h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-main);
}

.page-fishing-games p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-fishing-games ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-fishing-games ul li {
    margin-bottom: 8px;
    color: var(--text-main);
}

.page-fishing-games ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-fishing-games ol li {
    margin-bottom: 8px;
    color: var(--text-main);
}

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

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

/* 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: linear-gradient(180deg, var(--deep-red-color) 0%, var(--site-bg-dark) 100%);
    overflow: hidden; /* Ensure no image overflow */
}

.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%; /* Ensure width 100% for flex item */
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    filter: none; /* No image filter */
}

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

.page-fishing-games__hero-content h1 {
    color: var(--gold-color);
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 5vw, 4rem); /* Larger H1 for hero */
}

.page-fishing-games__hero-content p {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* For responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-fishing-games__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
}

.page-fishing-games__game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none; /* No image filter */
}

.page-fishing-games__game-card-content {
    padding: 20px;
    flex-grow: 1;
}

.page-fishing-games__game-card-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gold-color);
}

.page-fishing-games__game-card-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-fishing-games__game-card-content ul li {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: var(--text-main);
}

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

.page-fishing-games__feature-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-main);
}

.page-fishing-games__feature-item h3 {
    color: var(--gold-color);
    margin-top: 0;
    font-size: 1.4rem;
}

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

details.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--text-main);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main);
}
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.2); /* Lighter hover for dark background */
}
.page-fishing-games__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}
.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    background: rgba(var(--card-bg), 0.8); /* Slightly lighter background for answer */
    border-radius: 0 0 8px 8px;
    color: var(--text-main);
}
.page-fishing-games__faq-answer p {
    margin-bottom: 0;
}


/* Responsive styles */
@media (max-width: 1024px) {
    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .page-fishing-games__hero-content h1 {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }
    .page-fishing-games__hero-content p {
        font-size: 1rem;
    }
}

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

    .page-fishing-games__hero-image img {
        border-radius: 8px;
    }

    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        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-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
    }

    .page-fishing-games__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 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-fishing-games__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 1rem;
    }
    .page-fishing-games__faq-toggle {
        font-size: 20px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 15px 15px;
    }
}