/* style/fishing-games.css */

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

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

/* Section common styles */
.page-fishing-games__hero-section,
.page-fishing-games__intro-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section,
.page-fishing-games__mobile-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
    padding: 80px 0;
    text-align: center;
}

.page-fishing-games__dark-section {
    background-color: #000000; /* Auxiliary color for dark sections */
    color: #ffffff;
}

.page-fishing-games__section-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #FFD700; /* Primary color for titles */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-fishing-games__text-block a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__text-block a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Apply header offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-fishing-games__main-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for main title */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Card styles */
.page-fishing-games__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3); /* Subtle gold border */
}

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

.page-fishing-games__card-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #FFD700;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play,
.page-fishing-games__btn-view-promo {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background-color: #FFD700; /* Gold primary button */
    color: #000000; /* Black text for contrast */
}

.page-fishing-games__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
    background-color: #000000; /* Black secondary button */
    color: #FFD700; /* Gold text for contrast */
    border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #1a1a1a;
    color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-play,
.page-fishing-games__btn-view-promo {
    background-color: #007bff; /* Blue for game play/view promo */
    color: #ffffff;
    margin-top: 20px;
}

.page-fishing-games__btn-play:hover,
.page-fishing-games__btn-view-promo:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__feature-card .page-fishing-games__feature-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 200px; /* Limit icon size if needed */
    margin: 0 auto 15px auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-fishing-games__game-card .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__more-games-cta,
.page-fishing-games__more-promos-cta {
    margin-top: 50px;
}

/* How to Play Section */
.page-fishing-games__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__step-item .page-fishing-games__card-title {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 10px;
}
.page-fishing-games__step-item p {
    color: #e0e0e0;
}

/* Strategy Section */
.page-fishing-games__strategy-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-fishing-games__strategy-image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__strategy-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__strategy-text-block {
    flex: 2;
    min-width: 300px;
    color: #e0e0e0;
}

.page-fishing-games__strategy-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-fishing-games__strategy-text-block p {
    margin-bottom: 15px;
    font-size: 17px;
}

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

.page-fishing-games__promo-card .page-fishing-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Security Section */
.page-fishing-games__security-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
    color: #e0e0e0;
}

.page-fishing-games__security-list li {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    font-size: 17px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__security-list li strong {
    color: #FFD700;
    font-size: 18px;
}

.page-fishing-games__security-cta {
    margin-top: 40px;
}

/* Mobile Section */
.page-fishing-games__mobile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-fishing-games__mobile-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__mobile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__mobile-text-block {
    flex: 2;
    min-width: 300px;
    color: #e0e0e0;
}

.page-fishing-games__mobile-subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-fishing-games__mobile-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold border */
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08); /* Slightly lighter background for question */
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-fishing-games__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.page-fishing-games__faq-question:active {
    background: rgba(255, 255, 255, 0.1);
}