/* style/arcade-fishing-games-guide.css */

/* Base styles for the page content */
.page-arcade-fishing-games-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default light body background */
    background-color: #f8f8f8; /* Slightly off-white background for sections */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-arcade-fishing-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-arcade-fishing-games-guide__hero-section {
    background: linear-gradient(135deg, #003366, #1a4a7a); /* Gradient background with primary color */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-arcade-fishing-games-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-arcade-fishing-games-guide__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-arcade-fishing-games-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-arcade-fishing-games-guide__hero-image {
    position: relative;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

.page-arcade-fishing-games-guide__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* Section titles */
.page-arcade-fishing-games-guide__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-arcade-fishing-games-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* Paragraphs and links */
.page-arcade-fishing-games-guide p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-arcade-fishing-games-guide__text-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-arcade-fishing-games-guide__text-link:hover {
    color: #FFD700;
}

/* CTA Buttons */
.page-arcade-fishing-games-guide__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #003366;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
    margin: 10px;
}

.page-arcade-fishing-games-guide__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-arcade-fishing-games-guide__cta-button--secondary {
    background-color: #003366;
    color: #FFD700;
    border-color: #003366;
}

.page-arcade-fishing-games-guide__cta-button--secondary:hover {
    background-color: #1a4a7a;
    border-color: #1a4a7a;
    color: #FFD700;
}

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

.page-arcade-fishing-games-guide__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-arcade-fishing-games-guide__feature-card:hover {
    transform: translateY(-5px);
}

.page-arcade-fishing-games-guide__feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-arcade-fishing-games-guide__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

/* Lists */
.page-arcade-fishing-games-guide__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-arcade-fishing-games-guide__list li {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.page-arcade-fishing-games-guide__list-title {
    font-size: 1.2em;
    color: #003366;
    margin: 0;
    padding-left: 10px;
}

/* Strategy Grid */
.page-arcade-fishing-games-guide__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-arcade-fishing-games-guide__strategy-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-arcade-fishing-games-guide__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-arcade-fishing-games-guide__strategy-card .page-arcade-fishing-games-guide__card-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
}

.page-arcade-fishing-games-guide__content-area img,
.page-arcade-fishing-games-guide__gameplay-basics img,
.page-arcade-fishing-games-guide__advanced-strategies img,
.page-arcade-fishing-games-guide__maximizing-winnings img,
.page-arcade-fishing-games-guide__get-started img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

/* Call to action buttons group */
.page-arcade-fishing-games-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-arcade-fishing-games-guide__hero-section {
        padding: 60px 15px;
    }

    .page-arcade-fishing-games-guide__main-title {
        font-size: 2.2em;
    }

    .page-arcade-fishing-games-guide__hero-description {
        font-size: 1em;
    }

    .page-arcade-fishing-games-guide__section-title {
        font-size: 1.8em;
    }

    .page-arcade-fishing-games-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-arcade-fishing-games-guide__feature-grid,
    .page-arcade-fishing-games-guide__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-arcade-fishing-games-guide__container {
        padding: 15px;
    }

    .page-arcade-fishing-games-guide__list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .page-arcade-fishing-games-guide__list-title {
        padding-left: 0;
        margin-bottom: 5px;
    }

    /* Ensure content images are responsive and do not overflow */
    .page-arcade-fishing-games-guide img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-arcade-fishing-games-guide__main-title {
        font-size: 1.8em;
    }

    .page-arcade-fishing-games-guide__section-title {
        font-size: 1.5em;
    }

    .page-arcade-fishing-games-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}