:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --button-register-bg: #C30808;
    --button-register-text: #FFFF00;
    --background-color: #FFFFFF;
}

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

.page-fishing-games__section {
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
}

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

.page-fishing-games__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__section-title--light {
    color: var(--text-color-light);
}

.page-fishing-games__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__section-description--light {
    color: var(--text-color-light);
}

.page-fishing-games__sub-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    background: linear-gradient(135deg, var(--primary-color) 0%, #00994d 100%); /* Adjusted gradient for better look */
    overflow: hidden;
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-color-light);
}

.page-fishing-games__hero-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-color-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-register-bg);
    color: var(--button-register-text);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-fishing-games__cta-button:hover {
    background: #e00b0b; /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    background: #005f2e;
    transform: translateY(-1px);
}

.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.page-fishing-games__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.page-fishing-games__btn-register {
    background: var(--button-register-bg);
    color: var(--button-register-text);
}

.page-fishing-games__btn-register:hover {
    background: #e00b0b;
}

.page-fishing-games__btn-download {
    background: var(--primary-color);
    color: var(--text-color-light);
}

.page-fishing-games__btn-download:hover {
    background: #005f2e;
}

.page-fishing-games__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-fishing-games__text-block {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-fishing-games__text-block p {
    margin-bottom: 15px;
    font-size: 17px;
}

.page-fishing-games__text-block ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.page-fishing-games__text-block li {
    margin-bottom: 8px;
    font-size: 17px;
}

.page-fishing-games__image-block {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.page-fishing-games__image-block img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__dark-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

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

.page-fishing-games__game-card, .page-fishing-games__promo-card {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__game-card img, .page-fishing-games__promo-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-fishing-games__game-card .page-fishing-games__card-title,
.page-fishing-games__promo-card .page-fishing-games__card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 15px 10px;
}

.page-fishing-games__game-card p,
.page-fishing-games__promo-card p {
    font-size: 16px;
    color: var(--text-color-dark);
    margin: 0 15px 20px;
    flex-grow: 1;
}

.page-fishing-games__card-title--light {
    color: var(--text-color-light);
}

.page-fishing-games__card-text--light {
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
    margin-top: auto;
}

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

.page-fishing-games__step-item {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.page-fishing-games__step-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__step-item p {
    font-size: 16px;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

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

.page-fishing-games__promo-card {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color-light);
}

.page-fishing-games__promo-card img {
    height: 200px;
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
    color: var(--text-color-light);
}

.page-fishing-games__promo-card p {
    color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games__button-group {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    background: #f9f9f9;
    color: var(--text-color-dark);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    border-radius: 0 0 5px 5px;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-fishing-games__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-fishing-games__faq-question:active {
    background: #eeeeee;
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
    font-size: 16px;
}

.page-fishing-games__faq-btn {
    margin-top: 15px;
}

.page-fishing-games__cta-app-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00994d 100%);
    color: var(--text-color-light);
}

.page-fishing-games__cta-app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-fishing-games__cta-app-content .page-fishing-games__text-block {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__cta-app-content .page-fishing-games__image-block {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-fishing-games__app-features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-fishing-games__app-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--text-color-light);
}

.page-fishing-games__app-features-list li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 20px;
    line-height: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-title {
        font-size: 40px;
    }
    .page-fishing-games__section-title {
        font-size: 30px;
    }
    .page-fishing-games__game-card img, .page-fishing-games__promo-card img {
        height: 220px;
    }
    .page-fishing-games__step-item img {
        
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-image img {
        border-radius: 4px;
    }
    .page-fishing-games__hero-title {
        font-size: 32px;
    }
    .page-fishing-games__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .page-fishing-games__section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .page-fishing-games__section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .page-fishing-games__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-fishing-games__text-block, .page-fishing-games__image-block {
        min-width: unset;
        max-width: 100%;
        width: 100%;
    }
    .page-fishing-games__image-block img,
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-fishing-games__game-grid, .page-fishing-games__promo-grid, .page-fishing-games__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__game-card img, .page-fishing-games__promo-card img {
        height: 200px;
    }
    .page-fishing-games__step-item img {
        
    }
    .page-fishing-games__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-fishing-games__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-fishing-games__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 15px;
    }
    .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
        padding: 15px !important;
    }
    .page-fishing-games__cta-app-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-fishing-games__app-features-list li {
        font-size: 16px;
    }
    .page-fishing-games__container {
        padding: 0;
    }
    .page-fishing-games__section-description {
        padding: 0 15px;
    }
    .page-fishing-games__text-block p, .page-fishing-games__text-block li {
        font-size: 16px;
    }
    .page-fishing-games__game-card p, .page-fishing-games__promo-card p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-title {
        font-size: 28px;
    }
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__hero-description {
        font-size: 15px;
    }
}