/* style/fishing-games.css */

/* Base styles for the page content */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background is white */
}

/* Ensure main content is below header */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
    background: linear-gradient(135deg, #017439, #004d29); /* Brand gradient */
    color: #FFFFFF;
    text-align: center;
    padding: calc(var(--header-offset, 120px) + 60px) 20px 60px; /* Adjust top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure no overflow */
}

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

.page-fishing-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00; /* Register/Login font color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background */
    display: block;
}

/* General Section Styles */
.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
    background-color: #FFFFFF;
}

.page-fishing-games__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #017439;
    line-height: 1.3;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 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;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFFFFF; /* White for hero section buttons */
    border: 2px solid #FFFFFF;
}

.page-fishing-games__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.page-fishing-games__feature-icon {
    width: 100%; /* Ensure image fills container */
    height: auto;
    max-width: 250px; /* Max width for icon-like images */
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

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

.page-fishing-games__feature-text {
    font-size: 1em;
    color: #555555;
}

/* 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 {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
}

.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;
    display: block;
}

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

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

.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__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__step-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-fishing-games__step-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

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

.page-fishing-games__step-text {
    font-size: 1em;
    color: #555555;
}

.page-fishing-games__tips {
    margin-top: 60px;
    background-color: #e6f7ed; /* Light green background */
    border-left: 5px solid #017439;
    padding: 30px;
    text-align: left;
    border-radius: 8px;
}

.page-fishing-games__tips-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 20px;
}

.page-fishing-games__tips-list {
    list-style-type: disc;
    padding-left: 25px;
    color: #333333;
    font-size: 1.05em;
}

.page-fishing-games__tips-list li {
    margin-bottom: 10px;
}

.page-fishing-games__tips-list strong {
    color: #017439;
}

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

.page-fishing-games__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

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

.page-fishing-games__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

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

.page-fishing-games__cta-promotions {
    margin-top: 40px;
}

/* App Download Section */
.page-fishing-games__app-download {
    background: linear-gradient(90deg, #017439, #004d29);
    color: #FFFFFF;
}

.page-fishing-games__app-download-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-fishing-games__app-text {
    flex: 1;
    min-width: 300px; /* Ensure text takes enough space */
}

.page-fishing-games__app-download .page-fishing-games__section-title {
    color: #FFFFFF;
}

.page-fishing-games__app-download .page-fishing-games__section-description {
    color: #f0f0f0;
}

.page-fishing-games__app-benefits-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 1.05em;
}

.page-fishing-games__app-benefits-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-fishing-games__app-benefits-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFFF00;
}

.page-fishing-games__app-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-fishing-games__app-download-buttons .page-fishing-games__btn-primary {
    background-color: #FFFF00; /* Yellow button for download */
    color: #017439; /* Green text on yellow */
    border-color: #FFFF00;
}

.page-fishing-games__app-download-buttons .page-fishing-games__btn-primary:hover {
    background-color: #e6e600;
    border-color: #e6e600;
}

.page-fishing-games__app-download-buttons .page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Yellow border for iOS */
    border-color: #FFFF00;
}

.page-fishing-games__app-download-buttons .page-fishing-games__btn-secondary:hover {
    background-color: rgba(255, 255, 0, 0.2);
}

.page-fishing-games__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

/* Security and Fairness Section */
.page-fishing-games__security-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__security-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-fishing-games__security-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

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

.page-fishing-games__security-text {
    font-size: 1em;
    color: #555555;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #f0f0f0;
}

.page-fishing-games__faq-title {
    font-size: 1.2em;
    color: #017439;
    margin: 0;
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #017439;
    margin-left: 15px;
    transition: transform 0.3s ease;
}