/* style/fishing-games.css */

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

.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for page content */
    background-color: var(--bg-page);
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__main-title {
    color: var(--text-main);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 font size */
}

.page-fishing-games__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.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,
.page-fishing-games__btn-play,
.page-fishing-games__btn-view,
.page-fishing-games__btn-contact {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--color-primary);
    color: var(--text-main);
}

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

.page-fishing-games__section-title--centered {
    text-align: center;
}

.page-fishing-games__section-description {
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__tips-section,
.page-fishing-games__promotions-section,
.page-fishing-games__mobile-section,
.page-fishing-games__security-section,
.page-fishing-games__support-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section,
.page-fishing-games__video-showcase {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

.page-fishing-games__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-fishing-games__text-block {
    flex: 1;
    line-height: 1.7;
    color: var(--text-secondary);
}

.page-fishing-games__image-left,
.page-fishing-games__image-right {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__promotion-card,
.page-fishing-games__game-card,
.page-fishing-games__channel-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__promotion-card:hover,
.page-fishing-games__game-card:hover,
.page-fishing-games__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__card-title,
.page-fishing-games__game-title,
.page-fishing-games__channel-title,
.page-fishing-games__security-title,
.page-fishing-games__tip-title,
.page-fishing-games__step-title {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__card-description,
.page-fishing-games__game-description,
.page-fishing-games__channel-description,
.page-fishing-games__security-description,
.page-fishing-games__tip-description,
.page-fishing-games__step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.page-fishing-games__btn-play,
.page-fishing-games__btn-view,
.page-fishing-games__btn-contact {
    margin-top: 20px;
    background: var(--color-primary);
    color: var(--text-main);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.page-fishing-games__btn-play:hover,
.page-fishing-games__btn-view:hover,
.page-fishing-games__btn-contact:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.page-fishing-games__steps-list,
.page-fishing-games__tips-list,
.page-fishing-games__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__step-item,
.page-fishing-games__tip-item,
.page-fishing-games__security-item {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-item:last-child,
.page-fishing-games__tip-item:last-child,
.page-fishing-games__security-item:last-child {
    margin-bottom: 0;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-fishing-games__channel-card {
    padding: 25px;
}

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

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

.page-fishing-games__faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-secondary);
}

.page-fishing-games__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    outline: none;
}

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-primary);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: "−";
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.page-fishing-games__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-fishing-games a {
    color: var(--color-secondary);
    text-decoration: none;
}

.page-fishing-games a:hover {
    text-decoration: underline;
    color: var(--color-glow);
}

.page-fishing-games__video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    width: 100%; /* Desktop width */
    max-width: 100%; /* Desktop max-width */
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    cursor: pointer;
}

.page-fishing-games__video-description {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games__section-title {
        font-size: 1.8rem;
    }
    .page-fishing-games__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__image-left,
    .page-fishing-games__image-right {
        max-width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__about-section,
    .page-fishing-games__features-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__mobile-section,
    .page-fishing-games__security-section,
    .page-fishing-games__support-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section,
    .page-fishing-games__video-showcase {
        padding: 40px 15px; /* Adjust padding for mobile */
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-fishing-games__subtitle {
        font-size: 1rem;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-play,
    .page-fishing-games__btn-view,
    .page-fishing-games__btn-contact {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__hero-image,
    .page-fishing-games__image-left,
    .page-fishing-games__image-right,
    .page-fishing-games__card-image,
    .page-fishing-games__game-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__content-wrapper,
    .page-fishing-games__features-grid,
    .page-fishing-games__promotions-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__support-channels {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__promotion-card,
    .page-fishing-games__game-card,
    .page-fishing-games__channel-card,
    .page-fishing-games__step-item,
    .page-fishing-games__tip-item,
    .page-fishing-games__security-item,
    .page-fishing-games__faq-item {
        padding: 20px;
    }

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

    .page-fishing-games__video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 1.5rem;
    }
    .page-fishing-games__card-title,
    .page-fishing-games__game-title,
    .page-fishing-games__channel-title,
    .page-fishing-games__security-title,
    .page-fishing-games__tip-title,
.page-fishing-games__step-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__faq-item summary {
        font-size: 1rem;
    }
}