/* style/fishing-games.css */

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

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

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

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

.page-fishing-games__card {
    background-color: var(--dp568-card-bg);
    border: 1px solid var(--dp568-border);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    color: var(--dp568-text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__section-title {
    font-size: 2.8em;
    color: var(--dp568-gold);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    color: var(--dp568-text-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-fishing-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--dp568-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 15px var(--dp568-glow);
}

.page-fishing-games__intro-text {
    font-size: 1.2em;
    color: var(--dp568-text-main);
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
    background-color: var(--dp568-deep-green);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    padding: 20px 15px;
    text-align: center;
    max-width: 1000px;
    margin-top: 20px;
}

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

.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: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

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

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--dp568-gold);
    border: 2px solid var(--dp568-gold);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* Why Choose Section */
.page-fishing-games__why-choose {
    background-color: var(--dp568-background);
}

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

.page-fishing-games__feature-item {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.page-fishing-games__feature-text {
    font-size: 1em;
    color: var(--dp568-text-secondary);
}

/* Game Highlights Section */
.page-fishing-games__game-highlights {
    background-color: var(--dp568-deep-green);
}

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

.page-fishing-games__game-card {
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-fishing-games__game-title {
    font-size: 1.5em;
    color: var(--dp568-gold);
    margin-bottom: 10px;
}

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: var(--dp568-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Play Section */
.page-fishing-games__how-to-play {
    background-color: var(--dp568-background);
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__step-item {
    text-align: left;
}

.page-fishing-games__step-title {
    font-size: 1.6em;
    color: var(--dp568-gold);
    margin-bottom: 15px;
}

.page-fishing-games__step-text {
    font-size: 1em;
    color: var(--dp568-text-secondary);
}

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

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

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

/* Strategies Section */
.page-fishing-games__strategies {
    background-color: var(--dp568-deep-green);
}

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

.page-fishing-games__strategy-item {
    padding: 25px;
}

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

.page-fishing-games__strategy-text {
    font-size: 1em;
    color: var(--dp568-text-secondary);
}

/* Promotions Section */
.page-fishing-games__promotions {
    background-color: var(--dp568-background);
}

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

.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
}

.page-fishing-games__promo-item {
    background-color: var(--dp568-card-bg);
    border: 1px solid var(--dp568-border);
    border-radius: 10px;
    padding: 25px;
}

.page-fishing-games__promo-title {
    font-size: 1.4em;
    color: var(--dp568-gold);
    margin-bottom: 10px;
}

.page-fishing-games__promo-text {
    font-size: 0.95em;
    color: var(--dp568-text-secondary);
}

/* Secure Access Section */
.page-fishing-games__secure-access {
    background-color: var(--dp568-deep-green);
}

.page-fishing-games__secure-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-fishing-games__secure-text {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__secure-subtitle {
    font-size: 2em;
    color: var(--dp568-gold);
    margin-bottom: 20px;
}

.page-fishing-games__secure-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--dp568-text-main);
    font-size: 1.05em;
    margin-bottom: 20px;
}

.page-fishing-games__secure-list li {
    margin-bottom: 10px;
}

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

.page-fishing-games__secure-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-fishing-games__secure-note {
    font-style: italic;
    color: var(--dp568-text-secondary);
    margin-bottom: 30px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: var(--dp568-background);
}

.page-fishing-games__faq-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-fishing-games__faq-item {
    text-align: left;
    padding: 0;
    border: 1px solid var(--dp568-border);
    border-radius: 12px;
    overflow: hidden;
}

.page-fishing-games__faq-item[open] {
    background-color: var(--dp568-card-bg);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--dp568-text-main);
    background-color: var(--dp568-card-bg);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
    border-bottom-color: var(--dp568-divider);
}

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

.page-fishing-games__faq-question:hover {
    background-color: rgba(var(--dp568-primary-color), 0.1);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--dp568-gold);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: var(--dp568-glow);
    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 30px 20px 30px;
    font-size: 1em;
    color: var(--dp568-text-secondary);
    line-height: 1.6;
}

/* Conclusion Section */
.page-fishing-games__conclusion {
    background-color: var(--dp568-deep-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-fishing-games__hero-image {
        height: auto;
    }
    .page-fishing-games__secure-content {
        flex-direction: column;
    }
    .page-fishing-games__secure-text,
    .page-fishing-games__secure-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 15px;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-fishing-games__intro-text,
    .page-fishing-games__section-description {
        font-size: 1em;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__steps-list,
    .page-fishing-games__strategy-grid,
    .page-fishing-games__promo-list {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__card {
        padding: 20px;
    }
    .page-fishing-games__game-image {
        height: 200px;
    }
    .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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
    }
    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }
}