/* style/games-fishing-games.css */
.page-games-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-games-fishing-games__hero {
    background: linear-gradient(135deg, #003366, #FFD700);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-games-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-games-fishing-games__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-games-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-games-fishing-games__btn--primary {
    background-color: #FFD700;
    color: #003366;
}

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

.page-games-fishing-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-games-fishing-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
}

.page-games-fishing-games__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-games-fishing-games__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.3;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.page-games-fishing-games__hero-image {
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.page-games-fishing-games__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-games-fishing-games__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-games-fishing-games__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-games-fishing-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-games-fishing-games__subsection-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-games-fishing-games__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-games-fishing-games__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

.page-games-fishing-games__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #003366;
    font-weight: bold;
    font-size: 1.2em;
}

.page-games-fishing-games__image {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-games-fishing-games__image--left {
    float: left;
    margin-right: 30px;
    width: 40%;
}

.page-games-fishing-games__image--right {
    float: right;
    margin-left: 30px;
    width: 40%;
}

.page-games-fishing-games__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.page-games-fishing-games__cta {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-games__cta-inner {
    position: relative;
    z-index: 2;
}

.page-games-fishing-games__cta-title {
    color: #FFD700;
    font-size: 3em;
    margin-bottom: 20px;
}

.page-games-fishing-games__cta-title::after {
    background-color: #ffffff;
}

.page-games-fishing-games__cta-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-fishing-games__cta-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-games-fishing-games__image--bottom {
    position: absolute;
    bottom: -50px;
    left: -50px;
    opacity: 0.2;
    width: 300px;
    height: auto;
    object-fit: contain;
    transform: rotate(-15deg);
    z-index: 1;
}

/* Clearfix for floated images */
.page-games-fishing-games__introduction::after,
.page-games-fishing-games__rules::after,
.page-games-fishing-games__special-fish::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-games-fishing-games__hero-description {
        font-size: 1.1em;
    }
    .page-games-fishing-games__section-title {
        font-size: 2em;
    }
    .page-games-fishing-games__subsection-title {
        font-size: 1.5em;
    }
    .page-games-fishing-games__image--left,
    .page-games-fishing-games__image--right {
        float: none;
        margin: 20px auto;
        width: 80%;
        display: block;
    }
    .page-games-fishing-games__image--center {
        width: 90%;
    }
    .page-games-fishing-games__cta-title {
        font-size: 2.5em;
    }
    .page-games-fishing-games__cta-description {
        font-size: 1.2em;
    }
    .page-games-fishing-games__cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-games-fishing-games__hero {
        padding: 60px 0;
    }
    .page-games-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-games-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-games-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-fishing-games__btn {
        width: 80%;
    }
    .page-games-fishing-games__section {
        padding: 40px 0;
    }
    .page-games-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__subsection-title {
        font-size: 1.3em;
    }
    .page-games-fishing-games__list li {
        font-size: 1em;
    }
    .page-games-fishing-games__cta {
        padding: 60px 0;
    }
    .page-games-fishing-games__cta-title {
        font-size: 2em;
    }
    .page-games-fishing-games__cta-description {
        font-size: 1em;
    }
    .page-games-fishing-games__btn--lg {
        width: 90%;
    }
    .page-games-fishing-games__hero-image {
        max-width: 400px;
    }
    .page-games-fishing-games__image--bottom {
        width: 200px;
        bottom: -30px;
        left: -30px;
    }
}

@media (max-width: 480px) {
    .page-games-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-games-fishing-games__subsection-title {
        font-size: 1.2em;
    }
    .page-games-fishing-games__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-games-fishing-games__btn--lg {
        padding: 15px 25px;
        font-size: 1em;
    }
    .page-games-fishing-games__hero-image {
        max-width: 300px;
    }
}