/* style/fishing-games.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

/* Container for consistent content width */
.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px; /* Adjust padding for content */
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
    background-color: #000080; /* Dark blue background for hero */
    overflow: hidden;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-fishing-games__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability */
    /* No filter to change color */
}

/* General Section Styles */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    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-color: #FFD700;
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

.page-fishing-games__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Card Styles */
.page-fishing-games__card {
    background-color: rgba(0, 0, 128, 0.7); /* Semi-transparent dark blue */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff; /* Light text on card background */
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Button Styles */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text for contrast */
    border: 2px solid #FFD700;
}

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

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

.page-fishing-games__btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
}

.page-fishing-games__btn-large {
    font-size: 1.3em;
    padding: 18px 35px;
}

/* Specific Section Styles */
.page-fishing-games__intro-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__video-section {
    padding: 60px 20px;
}

.page-fishing-games__intro-section {
    background-color: #000080; /* Dark blue section */
}

.page-fishing-games__dark-bg {
    background-color: #000080; /* Consistent dark background for sections */
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 60px 20px;
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

.page-fishing-games__feature-item {
    text-align: center;
}

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

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

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

.page-fishing-games__game-card {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1); /* Lighter card for dark section */
}

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

.page-fishing-games__game-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-fishing-games__game-title a {
    color: #FFD700; /* Gold link for game titles */
    text-decoration: none;
}

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

.page-fishing-games__game-description {
    font-size: 0.95em;
    color: #cccccc;
}

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 60px 20px;
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

.page-fishing-games__guide-item {
    background-color: rgba(0, 0, 128, 0.7);
    border-radius: 10px;
    padding: 25px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__guide-step-description {
    font-size: 1em;
    color: #e0e0e0;
}

.page-fishing-games__guide-step-description a {
    color: #FFD700;
    text-decoration: none;
}
.page-fishing-games__guide-step-description a:hover {
    text-decoration: underline;
}

/* Promotions Section */
.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: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__promo-description {
    font-size: 1em;
    color: #cccccc;
}

.page-fishing-games__promo-description a {
    color: #FFD700;
    text-decoration: none;
}
.page-fishing-games__promo-description a:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.page-fishing-games__advantages-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__advantage-item {
    text-align: center;
    background-color: rgba(0, 0, 128, 0.7);
}

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

.page-fishing-games__advantage-description {
    font-size: 1em;
    color: #e0e0e0;
}
.page-fishing-games__advantage-description a {
    color: #FFD700;
    text-decoration: none;
}
.page-fishing-games__advantage-description a:hover {
    text-decoration: underline;
}

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