/* style/fishing-games.css */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is from shared.css */
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

/* Base container styling */
.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section Titles */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #ffffff; /* Default for dark sections */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__section-subtitle {
    font-size: 1.2em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    min-height: 600px;
    background-color: #017439; /* Brand color as background for hero */
    color: #ffffff;
    overflow: hidden;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin-right: 40px; /* Space for image */
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00; /* Custom color for important titles */
}

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

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

.page-fishing-games__hero-image-wrapper {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 50%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background-color: #C30808; /* Custom color for Register/Login */
    color: #FFFF00; /* Custom color for Register/Login font */
    border: 2px solid #C30808;
}

.page-fishing-games__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

.page-fishing-games__btn-link {
    background-color: transparent;
    color: #FFFF00;
    border: 1px solid #FFFF00;
    padding: 10px 20px;
    font-size: 1em;
}

.page-fishing-games__btn-link:hover {
    background-color: #FFFF00;
    color: #017439;
}

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

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

/* About Section */
.page-fishing-games__about-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* Light background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-fishing-games__about-section .page-fishing-games__section-title {
    color: #017439; /* Brand color on light background */
}

.page-fishing-games__about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-fishing-games__about-text {
    flex: 1;
}

.page-fishing-games__about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-fishing-games__about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 0;
    background-color: #017439; /* Brand color as background */
    color: #ffffff;
}

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

.page-fishing-games__feature-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-fishing-games__feature-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-fishing-games__games-showcase .page-fishing-games__section-title {
    color: #017439;
}

.page-fishing-games__games-showcase .page-fishing-games__section-subtitle {
    color: #555555;
}

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

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

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

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

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

.page-fishing-games__game-title a {
    color: #017439;
    text-decoration: none;
}

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

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px;
}

/* How To Play Section */
.page-fishing-games__how-to-play {
    padding: 80px 0;
    background-color: #017439;
    color: #ffffff;
}

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

.page-fishing-games__step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFFF00;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 3px solid #FFFF00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__step-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-fishing-games__step-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-fishing-games__promotions-section .page-fishing-games__section-title {
    color: #017439;
}

.page-fishing-games__promotions-section .page-fishing-games__section-subtitle {
    color: #555555;
}

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

.page-fishing-games__promo-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.page-fishing-games__promo-title {
    font-size: 1.4em;
    margin: 20px 15px 10px;
}

.page-fishing-games__promo-title a {
    color: #017439;
    text-decoration: none;
}

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

.page-fishing-games__promo-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px;
}


/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: #017439;
    color: #ffffff;
}

.page-fishing-games__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-fishing-games__faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}