/* style/fishing-games.css */
:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B;
    --light-bg-text: #333333; /* For body background #f8f9fa */
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--light-bg-text); /* Default text color for light body background */
    line-height: 1.6;
}

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

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

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

.page-fishing-games__section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
    color: var(--gold-color);
}

.page-fishing-games__section-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.page-fishing-games__dark-bg .page-fishing-games__section-description {
    color: var(--text-secondary);
}

/* Hero Section */
.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: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-navy);
}

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

.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: 12px;
    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-main);
}

.page-fishing-games__main-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--glow-color);
}

/* Features Grid */
.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: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

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

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

.page-fishing-games__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    color: var(--light-bg-text);
}

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

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

.page-fishing-games__game-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-fishing-games__game-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

/* Steps Grid */
.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-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-fishing-games__step-icon {
    width: 60px;
    height: 60px;
    background: var(--button-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 auto 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold-color);
}

.page-fishing-games__step-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__btn-link {
    display: inline-block;
    color: var(--glow-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-link:hover {
    color: var(--gold-color);
}

/* Features List Alt */
.page-fishing-games__features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-fishing-games__feature-item-alt {
    display: flex;
    align-items: center;
    text-align: left;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    color: var(--light-bg-text);
}

.page-fishing-games__feature-item-alt:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.page-fishing-games__feature-item-alt img {
    width: 300px;
    height: 200px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 30px;
    flex-shrink: 0;
}

.page-fishing-games__feature-item-alt:nth-child(even) img {
    margin-right: 0;
    margin-left: 30px;
}

.page-fishing-games__feature-item-alt .page-fishing-games__feature-content {
    flex-grow: 1;
}

.page-fishing-games__feature-item-alt .page-fishing-games__feature-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.page-fishing-games__feature-item-alt .page-fishing-games__feature-text {
    font-size: 16px;
    line-height: 1.7;
}

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

.page-fishing-games__security-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

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

.page-fishing-games__security-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* App Download */
.page-fishing-games__app-download {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    text-align: left;
    color: var(--light-bg-text);
}

.page-fishing-games__app-download img {
    width: 400px;
    height: 267px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-fishing-games__app-content {
    flex-grow: 1;
}

.page-fishing-games__app-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-fishing-games__app-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

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

details.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--primary-color);
    font-weight: 600;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
    background: #f0f0f0;
}

.page-fishing-games__faq-qtext {
    flex: 1;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
}

.page-fishing-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

details.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 25px 25px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-bg-text);
}

/* Bottom CTA Section */
.page-fishing-games__cta-bottom-section {
    padding: 80px 20px;
}

.page-fishing-games__cta-bottom-section .page-fishing-games__section-title {
    color: var(--gold-color);
}

.page-fishing-games__cta-bottom-section .page-fishing-games__section-description {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 42px;
    }
    .page-fishing-games__intro-text {
        font-size: 18px;
    }
    .page-fishing-games__section-title {
        font-size: 32px;
    }
    .page-fishing-games__section-description {
        font-size: 16px;
    }
    .page-fishing-games__feature-item-alt img {
        width: 250px;
        
        margin-right: 20px;
    }
    .page-fishing-games__feature-item-alt:nth-child(even) img {
        margin-left: 20px;
    }
    .page-fishing-games__app-download img {
        width: 300px;
        height: 200px;
    }
    .page-fishing-games__app-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-image img {
        border-radius: 8px;
    }
    .page-fishing-games__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-fishing-games__intro-text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-fishing-games__cta-button {
        padding: 15px 35px;
        font-size: 18px;
        max-width: 100% !important;
        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: 28px;
    }
    .page-fishing-games__section-description {
        font-size: 15px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__steps-grid,
    .page-fishing-games__security-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-fishing-games__feature-item img,
    .page-fishing-games__game-card img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games__feature-item-alt {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .page-fishing-games__feature-item-alt:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__feature-item-alt img {
        margin: 0 auto 20px auto;
        width: 100%;
        height: auto;
    }
    .page-fishing-games__feature-item-alt:nth-child(even) img {
        margin: 0 auto 20px auto;
    }
    .page-fishing-games__feature-item-alt .page-fishing-games__feature-title {
        font-size: 20px;
    }
    .page-fishing-games__feature-item-alt .page-fishing-games__feature-text {
        font-size: 15px;
    }
    .page-fishing-games__app-download {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .page-fishing-games__app-download img {
        margin-bottom: 25px;
        width: 100%;
        height: auto;
    }
    .page-fishing-games__app-title {
        font-size: 24px;
    }
    .page-fishing-games__app-text {
        font-size: 16px;
    }
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 16px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 24px;
        margin-left: 15px;
        width: 25px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 20px 20px;
    }
    /* Global image and container responsive styles for mobile */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .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;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 28px;
    }
    .page-fishing-games__cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__game-title,
    .page-fishing-games__step-title,
    .page-fishing-games__security-title,
    .page-fishing-games__app-title {
        font-size: 20px;
    }
    .page-fishing-games__feature-text,
    .page-fishing-games__game-description,
    .page-fishing-games__step-text,
    .page-fishing-games__security-text,
    .page-fishing-games__app-text,
    .page-fishing-games__faq-qtext,
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer p {
        font-size: 14px;
    }
    .page-fishing-games__step-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .page-fishing-games__btn-secondary {
        font-size: 14px;
        padding: 10px 20px;
    }
}