/* style/fishing-games-free-play.css */

:root {
    --page-fishing-games-free-play-primary-color: #0A2342;
    --page-fishing-games-free-play-accent-color: #FFD700;
    --page-fishing-games-free-play-text-light: #FFFFFF;
    --page-fishing-games-free-play-text-dark: #0A2342;
    --page-fishing-games-free-play-bg-light: #F8F8F8;
    --page-fishing-games-free-play-bg-dark: #0A2342;
    --page-fishing-games-free-play-border-color: #E0E0E0;
}

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

.page-fishing-games-free-play__hero {
    background: linear-gradient(135deg, var(--page-fishing-games-free-play-primary-color) 0%, #1A3B69 100%);
    color: var(--page-fishing-games-free-play-text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-fishing-games-free-play__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-fishing-games-free-play__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-fishing-games-free-play-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-free-play__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
}

.page-fishing-games-free-play__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    opacity: 0.3;
    z-index: 0;
}

.page-fishing-games-free-play__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-fishing-games-free-play__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-fishing-games-free-play__section-title {
    font-size: 2.5em;
    color: var(--page-fishing-games-free-play-primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games-free-play__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-fishing-games-free-play-accent-color);
    border-radius: 2px;
}

.page-fishing-games-free-play__why-free-play p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

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

.page-fishing-games-free-play__benefit-item {
    background-color: var(--page-fishing-games-free-play-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-free-play__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-free-play__benefit-title {
    font-size: 1.5em;
    color: var(--page-fishing-games-free-play-accent-color);
    margin-bottom: 15px;
}

.page-fishing-games-free-play__benefit-item p {
    font-size: 1em;
    color: #333;
}

.page-fishing-games-free-play__how-to-play p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-fishing-games-free-play__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.page-fishing-games-free-play__step-item {
    background-color: var(--page-fishing-games-free-play-primary-color);
    color: var(--page-fishing-games-free-play-text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-free-play__step-title {
    font-size: 1.4em;
    color: var(--page-fishing-games-free-play-accent-color);
    margin-bottom: 15px;
}

.page-fishing-games-free-play__step-item p {
    font-size: 1em;
    color: var(--page-fishing-games-free-play-text-light);
}

.page-fishing-games-free-play__image-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-free-play__image {
    width: 100%;
    height: auto;
    display: block;
}

.page-fishing-games-free-play__popular-games {
    background-color: #F0F5F9; /* Slightly different light background */
}

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

.page-fishing-games-free-play__game-card {
    background-color: var(--page-fishing-games-free-play-text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games-free-play__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-free-play__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games-free-play__game-title {
    font-size: 1.8em;
    color: var(--page-fishing-games-free-play-primary-color);
    margin-bottom: 15px;
}

.page-fishing-games-free-play__game-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games-free-play__debet-commitment {
    background-color: var(--page-fishing-games-free-play-primary-color);
    color: var(--page-fishing-games-free-play-text-light);
}

.page-fishing-games-free-play__debet-commitment .page-fishing-games-free-play__section-title {
    color: var(--page-fishing-games-free-play-accent-color);
}

.page-fishing-games-free-play__debet-commitment .page-fishing-games-free-play__section-title::after {
    background-color: var(--page-fishing-games-free-play-text-light);
}

.page-fishing-games-free-play__debet-commitment p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.7;
}

.page-fishing-games-free-play__commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games-free-play__commitment-title {
    font-size: 1.6em;
    color: var(--page-fishing-games-free-play-accent-color);
    margin-bottom: 10px;
}

.page-fishing-games-free-play__commitment-points p {
    font-size: 1em;
    color: #CCC;
    margin-bottom: 0;
}

.page-fishing-games-free-play__call-to-action {
    background-color: var(--page-fishing-games-free-play-bg-light);
}

.page-fishing-games-free-play__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-fishing-games-free-play__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games-free-play__faq {
    background-color: #F0F5F9;
}

.page-fishing-games-free-play__faq-item {
    background-color: var(--page-fishing-games-free-play-text-light);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-fishing-games-free-play__faq-question {
    font-size: 1.4em;
    color: var(--page-fishing-games-free-play-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-fishing-games-free-play__faq-answer {
    font-size: 1em;
    color: #444;
    line-height: 1.7;
    padding-top: 10px;
    border-top: 1px solid var(--page-fishing-games-free-play-border-color);
    margin-top: 15px;
}

.page-fishing-games-free-play__conclusion {
    background-color: var(--page-fishing-games-free-play-primary-color);
    color: var(--page-fishing-games-free-play-text-light);
    padding: 80px 20px;
}

.page-fishing-games-free-play__conclusion .page-fishing-games-free-play__section-title {
    color: var(--page-fishing-games-free-play-accent-color);
}

.page-fishing-games-free-play__conclusion .page-fishing-games-free-play__section-title::after {
    background-color: var(--page-fishing-games-free-play-text-light);
}

.page-fishing-games-free-play__conclusion p {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Buttons */
.page-fishing-games-free-play__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-fishing-games-free-play__button--primary {
    background-color: var(--page-fishing-games-free-play-accent-color);
    color: var(--page-fishing-games-free-play-primary-color);
    border: 2px solid var(--page-fishing-games-free-play-accent-color);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-fishing-games-free-play__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-fishing-games-free-play__button--secondary {
    background-color: var(--page-fishing-games-free-play-primary-color);
    color: var(--page-fishing-games-free-play-accent-color);
    border: 2px solid var(--page-fishing-games-free-play-accent-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-free-play__button--secondary:hover {
    background-color: #1A3B69;
    border-color: #FFD700;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games-free-play__hero {
        padding: 60px 20px;
    }
    .page-fishing-games-free-play__hero-title {
        font-size: 2.5em;
    }
    .page-fishing-games-free-play__hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games-free-play__hero-image-wrapper {
        width: 80%;
        max-width: 600px;
    }
    .page-fishing-games-free-play__section-title {
        font-size: 2em;
    }
    .page-fishing-games-free-play__section {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-free-play__hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 15px;
    }
    .page-fishing-games-free-play__hero-title {
        font-size: 2em;
    }
    .page-fishing-games-free-play__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-free-play__hero-image-wrapper {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin-top: 30px;
        opacity: 0.8;
    }
    .page-fishing-games-free-play__benefits-grid, 
    .page-fishing-games-free-play__steps-container, 
    .page-fishing-games-free-play__game-grid, 
    .page-fishing-games-free-play__commitment-points {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-free-play__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-free-play__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-fishing-games-free-play__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-free-play__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games-free-play__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-free-play__benefit-title,
    .page-fishing-games-free-play__step-title,
    .page-fishing-games-free-play__game-title,
    .page-fishing-games-free-play__commitment-title,
    .page-fishing-games-free-play__faq-question {
        font-size: 1.2em;
    }
    .page-fishing-games-free-play__hero-image-wrapper {
        display: none; /* Hide hero image on very small screens if it obstructs content */
    }
}