.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
}

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    padding-bottom: 40px;
    background-color: #08160F;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.page-fishing-games__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 1px;
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-button {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #57E38D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__section {
    padding: 60px 0;
    background-color: #08160F;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-fishing-games__heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2AD16F;
    border-radius: 2px;
}

.page-fishing-games__sub-heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #2AD16F;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-fishing-games__paragraph,
.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li,
.page-fishing-games__card-text,
.page-fishing-games__feature-text,
.page-fishing-games__faq-answer p {
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-fishing-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-fishing-games__text-block {
    flex: 1;
}

.page-fishing-games__image-right,
.page-fishing-games__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__image-right {
    flex: 0 0 40%;
    max-width: 40%;
}

.page-fishing-games__image-full-width {
    margin-bottom: 40px;
}

.page-fishing-games__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__card-title {
    font-size: 1.3rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__card-text {
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-fishing-games__card-button {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.page-fishing-games__card-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li {
    margin-bottom: 10px;
}

.page-fishing-games__ordered-list li strong {
    color: #F2FFF6; /* Text Main */
}

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

.page-fishing-games__feature-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-fishing-games__feature-title {
    font-size: 1.25rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__faq-list {
    margin-top: 30px;
}

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #2E7A4E; /* Border */
    overflow: hidden;
}

.page-fishing-games__faq-item summary {
    list-style: none;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #2AD16F;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

.page-fishing-games__cta-buttons--bottom {
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-image {
        max-height: 500px;
    }
    .page-fishing-games__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__image-right {
        max-width: 80%;
        margin-top: 30px;
    }
    .page-fishing-games__hero-content {
        padding: 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-fishing-games__heading {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    .page-fishing-games__sub-heading {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-image {
        max-height: 400px;
    }
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__card-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 15px !important;
        box-sizing: border-box !important;
        font-size: 0.95rem;
    }

    /* Images responsive */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__hero-content,
    .page-fishing-games__content-wrapper,
    .page-fishing-games__text-block,
    .page-fishing-games__game-cards,
    .page-fishing-games__features,
    .page-fishing-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-fishing-games__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-fishing-games__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__introduction .page-fishing-games__text-block,
    .page-fishing-games__introduction .page-fishing-games__image-right {
        padding-left: 0;
        padding-right: 0;
    }
    .page-fishing-games__image-right {
        max-width: 100%;
    }
    .page-fishing-games__card-image {
        height: 180px;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-fishing-games__feature-icon {
        width: 80px;
        height: 80px;
    }
    .page-fishing-games__feature-title {
        font-size: 1.1rem;
    }
    .page-fishing-games__ordered-list,
    .page-fishing-games__unordered-list {
        padding-left: 15px;
    }
    .page-fishing-games__paragraph,
    .page-fishing-games__ordered-list li,
    .page-fishing-games__unordered-list li,
    .page-fishing-games__card-text,
    .page-fishing-games__feature-text,
    .page-fishing-games__faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-image {
        max-height: 300px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-fishing-games__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    .page-fishing-games__heading {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    .page-fishing-games__sub-heading {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    .page-fishing-games__card-image {
        height: 150px;
    }
}