/* style/fishing-games.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

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

.page-fishing-games__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--gold-color);
    margin-bottom: 30px;
    font-weight: bold;
    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: var(--primary-color);
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px; /* Ensure image is not too small */
    max-height: 700px;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -150px; /* Pull content slightly over image, but not overlapping text on image */
    background: rgba(8, 22, 15, 0.85); /* Slightly transparent background for readability */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.page-fishing-games__main-title {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.page-fishing-games__description {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.page-fishing-games__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__dark-bg {
    background-color: var(--card-bg);
    color: var(--text-main);
}

.page-fishing-games__light-bg {
    background-color: var(--background-color);
    color: var(--text-main);
}

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

.page-fishing-games__feature-item {
    background-color: rgba(17, 41, 28, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-10px);
}

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

.page-fishing-games__feature-title {
    font-size: 24px;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-fishing-games__feature-description {
    font-size: 16px;
    color: var(--text-secondary);
}

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

.page-fishing-games__game-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__game-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__game-card-content {
    padding: 25px;
    text-align: left;
}

.page-fishing-games__game-card-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.page-fishing-games__game-card-title a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__game-card-title a:hover {
    color: var(--glow-color);
}

.page-fishing-games__game-card-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__game-card-button {
    background: var(--button-gradient);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.page-fishing-games__game-card-button:hover {
    opacity: 0.9;
}

/* How To Play Section */
.page-fishing-games__how-to-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__how-to-list li {
    position: relative;
    padding: 20px 0 20px 70px;
    margin-bottom: 20px;
    background-color: rgba(17, 41, 28, 0.7);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    font-size: 18px;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__how-to-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
}

.page-fishing-games__how-to-list li a {
    color: var(--glow-color);
    text-decoration: none;
}

.page-fishing-games__how-to-list li a:hover {
    text-decoration: underline;
}

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

.page-fishing-games__promo-card {
    background-color: rgba(17, 41, 28, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__promo-card-content {
    padding: 25px;
    text-align: left;
}

.page-fishing-games__promo-card-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.page-fishing-games__promo-card-title a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__promo-card-title a:hover {
    color: var(--glow-color);
}

.page-fishing-games__promo-card-description {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Security Section */
.page-fishing-games__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__security-list li {
    background-color: rgba(17, 41, 28, 0.7);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    font-size: 18px;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__security-list li strong {
    color: var(--gold-color);
}

/* Mobile App Section */
.page-fishing-games__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

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

.page-fishing-games__app-text .page-fishing-games__text-block {
    text-align: left;
}

.page-fishing-games__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__app-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-color);
}

/* Customer Support Section */
.page-fishing-games__support .page-fishing-games__text-block {
    max-width: 800px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-fishing-games__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: bold;
    color: var(--gold-color);
    cursor: pointer;
    background-color: var(--deep-green);
    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(10, 75, 44, 0.8);
}

.page-fishing-games__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 25px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.page-fishing-games__faq-answer a {
    color: var(--glow-color);
    text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

/* Conclusion Section */
.page-fishing-games__conclusion .page-fishing-games__text-block {
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -100px;
        padding: 30px 20px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(32px, 4.5vw, 50px);
    }
    .page-fishing-games__description {
        font-size: 18px;
    }
    .page-fishing-games__section {
        padding: 50px 15px;
    }
    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card {
        padding: 25px;
    }
    .page-fishing-games__how-to-list li {
        padding: 15px 0 15px 60px;
        font-size: 17px;
    }
    .page-fishing-games__how-to-list li::before {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        margin-top: -80px;
        padding: 25px 15px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 15px;
    }
    .page-fishing-games__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 20px;
    }
    .page-fishing-games__text-block {
        font-size: 16px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__promo-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card {
        padding: 20px;
    }
    .page-fishing-games__game-card-image,
    .page-fishing-games__promo-card-image {
        height: 180px;
    }
    .page-fishing-games__game-card-title,
    .page-fishing-games__promo-card-title {
        font-size: 20px;
    }
    .page-fishing-games__how-to-list li {
        padding: 15px 15px 15px 60px;
        font-size: 16px;
    }
    .page-fishing-games__how-to-list li::before {
        left: 10px;
    }
    .page-fishing-games__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__app-text,
    .page-fishing-games__app-image-wrapper {
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }
    .page-fishing-games__app-text .page-fishing-games__text-block {
        text-align: center;
    }
    .page-fishing-games__app-image {
        border-radius: 10px;
    }
    .page-fishing-games__faq-item summary {
        font-size: 18px;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        font-size: 16px;
        padding: 10px 20px 20px;
    }

    /* Mobile image and video responsive styles */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__hero-image,
    .page-fishing-games__feature-image,
    .page-fishing-games__game-card-image,
    .page-fishing-games__promo-card-image,
    .page-fishing-games__app-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-fishing-games__hero-section,
    .page-fishing-games__introduction,
    .page-fishing-games__why-choose,
    .page-fishing-games__popular-games,
    .page-fishing-games__how-to-play,
    .page-fishing-games__promotions,
    .page-fishing-games__security,
    .page-fishing-games__mobile-app,
    .page-fishing-games__support,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion,
    .page-fishing-games__container,
    .page-fishing-games__feature-item,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__app-image-wrapper,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important;
    }

    /* Ensure button text wraps */
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        white-space: normal !important;
        word-wrap: break-word !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 20px 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(24px, 7vw, 32px);
    }
    .page-fishing-games__description {
        font-size: 15px;
    }
    .page-fishing-games__section-title {
        font-size: clamp(22px, 6vw, 30px);
    }
    .page-fishing-games__how-to-list li {
        padding: 12px 10px 12px 50px;
        font-size: 15px;
    }
    .page-fishing-games__how-to-list li::before {
        width: 30px;
        height: 30px;
        font-size: 18px;
        left: 8px;
    }
    .page-fishing-games__faq-item summary {
        font-size: 16px;
        padding: 12px 15px;
    }
    .page-fishing-games__faq-answer {
        font-size: 15px;
        padding: 8px 15px 15px;
    }
}