:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --card-bg: #10233F;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    background-color: var(--deep-navy); /* Body background is dark, so text should be light */
    color: var(--text-main); /* Default text color for the page */
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    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(--button-gradient);
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 17px;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-fishing-games__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

/* 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: var(--deep-navy);
    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;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__hero-description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

/* Intro Section */
.page-fishing-games__intro-section {
    background-color: var(--deep-navy);
    padding: 60px 0;
}

/* Features Section */
.page-fishing-games__features-section {
    background-color: var(--card-bg); /* Darker background for contrast */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.page-fishing-games__feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

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

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

/* Game Types Section */
.page-fishing-games__game-types-section {
    background-color: var(--deep-navy);
    padding: 80px 0;
}

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

.page-fishing-games__game-type-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
}

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

.page-fishing-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover;
    display: block;
}

.page-fishing-games__card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--gold-color);
    padding: 20px 15px 10px;
}

.page-fishing-games__card-description {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 0 15px 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
    background-color: var(--card-bg);
    padding: 80px 0;
}

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

.page-fishing-games__step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}

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

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

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

/* Strategies Section */
.page-fishing-games__strategies-section {
    background-color: var(--deep-navy);
    padding: 80px 0;
}

.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 {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
}

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

/* Promotions Section */
.page-fishing-games__promotions-section {
    background-color: var(--card-bg);
    padding: 80px 0;
}

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

.page-fishing-games__promo-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
}

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

/* Security Section */
.page-fishing-games__security-section {
    background-color: var(--deep-navy);
    padding: 80px 0;
}

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

.page-fishing-games__security-list li {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__security-list li strong {
    color: var(--gold-color);
    margin-right: 10px;
    font-size: 18px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    background-color: var(--card-bg);
    padding: 80px 0;
}

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

details.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

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;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-color);
}

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: rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    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: var(--card-bg);
    border-radius: 0 0 12px 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

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

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    background-color: var(--deep-navy);
    padding: 80px 0;
    text-align: center;
}

/* Global Image Responsive */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global Button Responsive */
.page-fishing-games__cta-button, 
.page-fishing-games a[class*="button"], 
.page-fishing-games a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(30px, 6vw, 50px);
    }
    .page-fishing-games__hero-description {
        font-size: clamp(16px, 2.8vw, 20px);
    }
    .page-fishing-games__section-title {
        font-size: 30px;
    }
    .page-fishing-games__text-block {
        font-size: 16px;
    }
    .page-fishing-games__feature-title, .page-fishing-games__step-title {
        font-size: 20px;
    }
    .page-fishing-games__card-title {
        font-size: 18px;
    }
    .page-fishing-games__security-list li,
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        font-size: 16px;
    }
}

@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__container {
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(28px, 8vw, 42px);
        margin-bottom: 15px;
    }
    .page-fishing-games__hero-description {
        font-size: clamp(15px, 3.5vw, 18px);
        margin-bottom: 20px;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        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-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-fishing-games__text-block {
        font-size: 15px;
    }
    .page-fishing-games__feature-grid, 
    .page-fishing-games__game-types-grid, 
    .page-fishing-games__guide-steps, 
    .page-fishing-games__strategy-grid, 
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__feature-item, 
    .page-fishing-games__game-type-card, 
    .page-fishing-games__step-item, 
    .page-fishing-games__strategy-item, 
    .page-fishing-games__promo-item {
        padding: 20px;
    }
    .page-fishing-games__feature-title, .page-fishing-games__step-title {
        font-size: 18px;
    }
    .page-fishing-games__card-title {
        font-size: 16px;
    }
    .page-fishing-games__card-description, 
    .page-fishing-games__feature-description, 
    .page-fishing-games__step-description {
        font-size: 14px;
    }
    .page-fishing-games__security-list li {
        font-size: 15px;
        padding: 15px 20px;
    }
    .page-fishing-games__security-list li strong {
        font-size: 16px;
    }
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 15px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 24px;
        width: 25px;
        height: 25px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 20px 20px;
    }

    /* Mobile specific image and container rules */
    .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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .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__hero-image {
        border-radius: 8px;
    }
    .page-fishing-games__feature-image {
        height: auto;
    }
    .page-fishing-games__card-image {
        height: 180px; /* Adjust height for smaller screens */
    }
}