/* style/fishing-games-high-score-tips-strategies.css */

/* Base styles for the page content */
.page-fishing-games-high-score-tips-strategies {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #0a0a0a, so light text */
    background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

.page-fishing-games-high-score-tips-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games-high-score-tips-strategies__section-title {
    font-size: 2.5em;
    color: #FFFFFF; /* White for titles on dark background */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-fishing-games-high-score-tips-strategies__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

.page-fishing-games-high-score-tips-strategies__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-fishing-games-high-score-tips-strategies a {
    color: #017439; /* Brand color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games-high-score-tips-strategies a:hover {
    color: #00a04a; /* Slightly lighter green on hover */
    text-decoration: underline;
}

/* Hero Section */
.page-fishing-games-high-score-tips-strategies__hero-section {
    position: relative;
    padding: 100px 20px;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff;
}

.page-fishing-games-high-score-tips-strategies__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-fishing-games-high-score-tips-strategies__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
}

.page-fishing-games-high-score-tips-strategies__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games-high-score-tips-strategies__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-high-score-tips-strategies__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.page-fishing-games-high-score-tips-strategies__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games-high-score-tips-strategies__btn-primary {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-fishing-games-high-score-tips-strategies__btn-primary:hover {
    background-color: #00a04a;
    border-color: #00a04a;
    color: #ffffff;
    text-decoration: none;
}

.page-fishing-games-high-score-tips-strategies__btn-secondary {
    background-color: #ffffff;
    color: #017439; /* Brand primary color */
    border: 2px solid #017439;
}

.page-fishing-games-high-score-tips-strategies__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
    text-decoration: none;
}

/* Introduction Section */
.page-fishing-games-high-score-tips-strategies__introduction-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background */
    color: #f0f0f0;
}

.page-fishing-games-high-score-tips-strategies__introduction-section .page-fishing-games-high-score-tips-strategies__section-title {
    color: #FFFFFF;
}

/* Video Wrapper */
.page-fishing-games-high-score-tips-strategies__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 10px;
}

.page-fishing-games-high-score-tips-strategies__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Tips Section */
.page-fishing-games-high-score-tips-strategies__tips-section {
    padding: 60px 0;
    background-color: #017439; /* Brand primary color for section background */
    color: #ffffff;
}

.page-fishing-games-high-score-tips-strategies__tips-section .page-fishing-games-high-score-tips-strategies__section-title {
    color: #FFFFFF;
}

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

.page-fishing-games-high-score-tips-strategies__card {
    background-color: #ffffff; /* White background for cards */
    color: #333333; /* Dark text for cards */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-high-score-tips-strategies__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-high-score-tips-strategies__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-fishing-games-high-score-tips-strategies__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games-high-score-tips-strategies__card-text {
    font-size: 0.95em;
    color: #555555;
}

/* Strategies Section */
.page-fishing-games-high-score-tips-strategies__strategies-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background */
    color: #f0f0f0;
}

.page-fishing-games-high-score-tips-strategies__strategies-section .page-fishing-games-high-score-tips-strategies__section-title {
    color: #FFFFFF;
}

.page-fishing-games-high-score-tips-strategies__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games-high-score-tips-strategies__strategy-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly visible card on dark bg */
    border-left: 5px solid #017439;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-fishing-games-high-score-tips-strategies__strategy-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-fishing-games-high-score-tips-strategies__strategy-item-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games-high-score-tips-strategies__strategy-item-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Profit Section */
.page-fishing-games-high-score-tips-strategies__profit-section {
    padding: 60px 0;
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
}

.page-fishing-games-high-score-tips-strategies__profit-section .page-fishing-games-high-score-tips-strategies__section-title {
    color: #FFFFFF;
}

/* FAQ Section */
.page-fishing-games-high-score-tips-strategies__faq-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background */
    color: #f0f0f0;
}

.page-fishing-games-high-score-tips-strategies__faq-section .page-fishing-games-high-score-tips-strategies__section-title {
    color: #FFFFFF;
}

.page-fishing-games-high-score-tips-strategies__faq-list {
    margin-top: 40px;
}

.page-fishing-games-high-score-tips-strategies__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-high-score-tips-strategies__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-fishing-games-high-score-tips-strategies__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-fishing-games-high-score-tips-strategies__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #FFFFFF;
    font-weight: bold;
}

.page-fishing-games-high-score-tips-strategies__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #017439; /* Brand color for toggle */
    transition: transform 0.3s ease;
}

.page-fishing-games-high-score-tips-strategies__faq-item.active .page-fishing-games-high-score-tips-strategies__faq-toggle {
    transform: rotate(45deg); /* Change to X or rotate for minus */
    color: #FFFFFF;
}

.page-fishing-games-high-score-tips-strategies__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-fishing-games-high-score-tips-strategies__faq-item.active .page-fishing-games-high-score-tips-strategies__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 25px;
}