.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
}

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background);
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: var(--text-main);
    padding: 20px;
    background: rgba(8, 22, 15, 0.7);
    border-radius: 10px;
}

.page-fishing-games__main-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.8);
}

.page-fishing-games__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

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

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--deep-green);
    color: #ffffff;
    border-color: var(--deep-green);
}

.page-fishing-games__video-section {
    background-color: var(--background);
    padding-top: 10px;
    padding-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: var(--card-b-g);
    border-radius: 10px;
}

.page-fishing-games__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-fishing-games__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.page-fishing-games__video-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
    max-width: 80%;
}

.page-fishing-games__video-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-fishing-games__video-description {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-fishing-games__section {
    padding: 60px 20px;
    background-color: var(--background);
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-fishing-games__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__image-content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-fishing-games__image-content-block--reversed {
    flex-direction: row-reverse;
}

.page-fishing-games__image-content-block img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__image-content-block .page-fishing-games__text-block {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: var(--card-b-g);
    border-radius: 10px;
}

.page-fishing-games__sub-title {
    font-size: 1.8em;
    color: var(--text-main);
    margin-bottom: 15px;
}

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

.page-fishing-games__list-item {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    text-align: justify;
}

.page-fishing-games__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--glow);
    font-weight: bold;
    font-size: 1.2em;
}

.page-fishing-games__popular-games .page-fishing-games__text-block {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__card {
    background-color: var(--card-b-g);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.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;
}

.page-fishing-games__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-fishing-games__card-description {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: flex-start;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__btn-small:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-fishing-games__text-center {
    text-align: center;
}

.page-fishing-games__cta-buttons--centered {
    margin-top: 30px;
}

.page-fishing-games__numbered-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-fishing-games__numbered-list .page-fishing-games__list-item {
    counter-increment: step-counter;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 45px;
    text-align: justify;
}

.page-fishing-games__numbered-list .page-fishing-games__list-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--gold);
    color: #08160F;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(242, 193, 78, 0.4);
}

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

.page-fishing-games__strategy-item {
    background-color: var(--card-b-g);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-fishing-games__strategy-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__strategy-title {
    font-size: 1.6em;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-fishing-games__strategy-description {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: justify;
}

.page-fishing-games__faq-section {
    background-color: var(--deep-green);
    padding: 60px 20px;
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
    color: var(--text-main);
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-fishing-games__faq-item {
    background-color: var(--card-b-g);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item summary:hover {
    background-color: rgba(34, 199, 104, 0.1);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    color: var(--glow);
    margin-left: 15px;
    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: 1.05em;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: justify;
}

.page-fishing-games__cta-final {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--background);
    border-top: 1px solid var(--divider);
}

.page-fishing-games__cta-content {
    max-width: 900px;
}

.page-fishing-games__cta-final .page-fishing-games__section-title {
    margin-bottom: 25px;
}

.page-fishing-games__cta-final .page-fishing-games__text-block {
    margin-bottom: 40px;
    font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 2.8em;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__video-title {
        font-size: 2em;
    }
    .page-fishing-games__image-content-block,
    .page-fishing-games__image-content-block--reversed {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 40px 15px;
    }
    .page-fishing-games__main-title {
        font-size: 2.2em;
        line-height: 1.3;
    }
    .page-fishing-games__intro-text {
        font-size: 1em;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-small {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-fishing-games__video-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }
    .page-fishing-games__video-title {
        font-size: 1.8em;
    }
    .page-fishing-games__video-description {
        font-size: 0.95em;
    }

    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-fishing-games__text-block {
        font-size: 0.95em;
    }
    .page-fishing-games__sub-title {
        font-size: 1.5em;
    }
    .page-fishing-games__list-item,
    .page-fishing-games__numbered-list .page-fishing-games__list-item {
        font-size: 0.95em;
        padding-left: 25px;
    }
    .page-fishing-games__numbered-list .page-fishing-games__list-item::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-fishing-games__game-cards {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__strategy-item {
        padding: 20px;
    }
    .page-fishing-games__strategy-title {
        font-size: 1.4em;
    }
    .page-fishing-games__strategy-description {
        font-size: 0.9em;
    }
    .page-fishing-games__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        font-size: 0.95em;
        padding: 0 20px 15px 20px;
    }
    .page-fishing-games__cta-final {
        padding: 50px 15px;
    }
    .page-fishing-games__cta-final .page-fishing-games__text-block {
        font-size: 1.05em;
    }

    /* Mobile image and video responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games video {
        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__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper,
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__video-container {
        padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
    }
    .page-fishing-games__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-fishing-games__hero-content {
        padding: 15px;
    }
    .page-fishing-games__image-content-block .page-fishing-games__text-block {
        padding: 15px;
    }
    .page-fishing-games__card-content {
        padding: 15px;
    }
    .page-fishing-games__strategy-item {
        padding: 15px;
    }
    .page-fishing-games__faq-list {
        padding-left: 0;
        padding-right: 0;
    }
    .page-fishing-games__faq-item summary {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__video-text-overlay {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.8em;
    }
    .page-fishing-games__section-title {
        font-size: 1.6em;
    }
    .page-fishing-games__video-title {
        font-size: 1.5em;
    }
    .page-fishing-games__intro-text,
    .page-fishing-games__text-block,
    .page-fishing-games__list-item,
    .page-fishing-games__numbered-list .page-fishing-games__list-item,
    .page-fishing-games__strategy-description,
    .page-fishing-games__faq-answer {
        font-size: 0.9em;
    }
    .page-fishing-games__sub-title,
    .page-fishing-games__card-title,
    .page-fishing-games__strategy-title {
        font-size: 1.2em;
    }
    .page-fishing-games__faq-item summary {
        font-size: 1em;
    }
}