.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: #121212; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 80px 20px;
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* For hero image */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Subtle darkening for text readability, NOT color change */
}

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

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-fishing-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
    background-color: #f0c200;
    color: #8B0000;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

/* Section Titles and Descriptions */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000;
    border-radius: 2px;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-fishing-games__section-outro {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

/* About Section */
.page-fishing-games__about-section {
    padding: 60px 0;
    background-color: #222222; /* Darker background for contrast */
    color: #ffffff;
}

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

.page-fishing-games__feature-item {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px; /* Adjust size for feature icons */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-fishing-games__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-fishing-games__feature-text {
    color: #e0e0e0;
}

/* Games Section */
.page-fishing-games__games-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.page-fishing-games__game-card {
    background-color: #333333;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
}

.page-fishing-games__game-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-fishing-games__game-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__game-title a:hover {
    color: #f0c200;
}

.page-fishing-games__game-text {
    color: #e0e0e0;
    padding: 0 15px 20px;
    flex-grow: 1; /* Allows text to take available space */
}

.page-fishing-games__game-btn {
    margin: 0 15px 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 60px 0;
    background-color: #222222;
    color: #ffffff;
}

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

.page-fishing-games__guide-item {
    background-color: #333333;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__guide-step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-fishing-games__guide-item p {
    color: #e0e0e0;
}

.page-fishing-games__guide-item a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__guide-item a:hover {
    color: #f0c200;
    text-decoration: underline;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.page-fishing-games__strategy-item {
    background-color: #333333;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-fishing-games__strategy-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__strategy-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games__strategy-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-fishing-games__strategy-text {
    color: #e0e0e0;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: #222222;
    color: #ffffff;
}

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

.page-fishing-games__promo-item {
    background-color: #333333;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-fishing-games__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-fishing-games__promo-text {
    color: #e0e0e0;
    flex-grow: 1;
}

/* Download Section */
.page-fishing-games__download-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-fishing-games__download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-fishing-games__download-item {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.page-fishing-games__download-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__download-icon {
    width: 100%;
    max-width: 200px; /* Adjust size for download icons */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-fishing-games__download-platform {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

/* Security and Support Section */
.page-fishing-games__security-support-section {
    padding: 60px 0;
    background-color: #222222;
    color: #ffffff;
}

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

.page-fishing-games__security-item {
    background-color: #333333;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-fishing-games__security-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-fishing-games__security-text {
    color: #e0e0e0;
    flex-grow: 1;
}

.page-fishing-games__security-text a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__security-text a:hover {
    color: #f0c200;
    text-decoration: underline;
}

/* Call to Action (CTA) */
.page-fishing-games__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(90deg, #8B0000 0%, #FFD700 100%);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}