:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000000; /* Black */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: #0d0d0d; /* Slightly off-black for sections */
    --background-light: #f5f5f5; /* Light grey for sections */
    --border-color: #e0e0e0;
    --spacing-lg: 80px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
}

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

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
}

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

.page-fishing-games__text-block {
    font-size: 17px;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color); /* Gold background, black text for contrast */
}

.page-fishing-games__btn-primary:hover {
    background: #e6c200; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color); /* Black background, gold text for contrast */
    border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
    background: #222222; /* Slightly lighter black */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-tertiary {
    background: #444444;
    color: var(--text-light);
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: none;
}

.page-fishing-games__btn-tertiary:hover {
    background: #666666;
    transform: translateY(-1px);
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    padding-bottom: var(--spacing-lg);
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-sm);
}

.page-fishing-games__main-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-description {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 1;
}

/* Intro Section */
.page-fishing-games__intro-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--secondary-color); /* Black background */
    color: var(--text-light); /* White text */
}

.page-fishing-games__intro-section .page-fishing-games__section-title {
    color: var(--primary-color); /* Gold title */
}

.page-fishing-games__intro-section .page-fishing-games__text-block {
    color: var(--text-light);
}

/* Highlights Section */
.page-fishing-games__highlights-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-light);
}

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

.page-fishing-games__feature-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: var(--spacing-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

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

.page-fishing-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 400px; /* Max width for feature icons */
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__card-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-fishing-games__feature-card p {
    font-size: 16px;
    color: var(--text-dark);
}

/* Game Types Section */
.page-fishing-games__game-types-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-fishing-games__game-types-section .page-fishing-games__section-title {
    color: var(--primary-color);
}

.page-fishing-games__game-types-section .page-fishing-games__text-block {
    color: var(--text-light);
}

.page-fishing-games__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.page-fishing-games__game-card {
    background: #1a1a1a; /* Darker background for cards in dark section */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: var(--spacing-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

.page-fishing-games__game-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Max width for game images */
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-fishing-games__game-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-fishing-games__game-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

/* Guide Section */
.page-fishing-games__guide-section {
    padding: var(--spacing-lg) 0;
    background-color: #ffffff;
}

.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__guide-list li {
    background: var(--background-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__list-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.page-fishing-games__guide-list p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-fishing-games__strategy-section .page-fishing-games__section-title {
    color: var(--primary-color);
}

.page-fishing-games__strategy-section .page-fishing-games__text-block {
    color: var(--text-light);
}

.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__strategy-list li {
    background: #1a1a1a;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-list p {
    font-size: 16px;
    color: #cccccc;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-light);
}

.page-fishing-games__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.page-fishing-games__promo-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: var(--spacing-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Max width for promo images */
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

/* Security Section */
.page-fishing-games__security-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-fishing-games__security-section .page-fishing-games__section-title {
    color: var(--primary-color);
}

.page-fishing-games__security-section .page-fishing-games__text-block {
    color: var(--text-light);
}

.page-fishing-games__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.page-fishing-games__security-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: var(--spacing-sm);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__security-item .page-fishing-games__list-title {
    color: var(--primary-color);
}

.page-fishing-games__security-item p {
    color: #cccccc;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    padding: var(--spacing-lg) 0;
    background-color: #ffffff;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: 48px;
    }
    .page-fishing-games__hero-description {
        font-size: 18px;
    }
    .page-fishing-games__section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
        padding-bottom: var(--spacing-md);
        min-height: 450px;
    }
    .page-fishing-games__main-title {
        font-size: 38px;
    }
    .page-fishing-games__hero-description {
        font-size: 16px;
    }
    .page-fishing-games__section-title {
        font-size: 28px;
    }
    .page-fishing-games__text-block {
        font-size: 16px;
    }
    .page-fishing-games__btn-primary,
    .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;
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-fishing-games__btn-tertiary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 10px 15px;
        font-size: 14px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
        padding: 0 var(--spacing-sm);
    }
    .page-fishing-games__container {
        padding: 0 var(--spacing-sm);
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-fishing-games img,
    .page-fishing-games__hero-image,
    .page-fishing-games__feature-icon,
    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min- /* Smaller min-height for mobile if needed */
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__promo-cards,
    .page-fishing-games__security-features {
        gap: var(--spacing-sm);
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__security-item {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 32px;
    }
    .page-fishing-games__section-title {
        font-size: 24px;
    }
    .page-fishing-games__hero-section {
        min-height: 350px;
    }
}