/* style/fishing-games.css */

/* Custom Colors */
:root {
    --page-fishing-games-primary-color: #11A84E;
    --page-fishing-games-secondary-color: #22C768;
    --page-fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-fishing-games-card-bg: #11271B;
    --page-fishing-games-background: #08160F;
    --page-fishing-games-text-main: #F2FFF6;
    --page-fishing-games-text-secondary: #A7D9B8;
    --page-fishing-games-border: #2E7A4E;
    --page-fishing-games-glow: #57E38D;
    --page-fishing-games-gold: #F2C14E;
    --page-fishing-games-divider: #1E3A2A;
    --page-fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
    background-color: var(--page-fishing-games-background);
    color: var(--page-fishing-games-text-main); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px; /* Minimum height for hero image */
}

.page-fishing-games__hero-content {
    text-align: center;
    padding: 40px 20px 60px;
    max-width: 800px;
    margin-top: -80px; /* Overlap slightly with image for visual flow */
    position: relative;
    z-index: 1;
    background: var(--page-fishing-games-card-bg); /* Use a dark background for contrast */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Sections */
.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--page-fishing-games-text-main);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
}

.page-fishing-games__section-title--light {
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 15px;
}

.page-fishing-games__paragraph {
    font-size: 1rem;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__paragraph--light {
    color: var(--page-fishing-games-text-main);
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary,
.page-fishing-games__btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    min-width: 150px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-btn-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--page-fishing-games-text-main);
    border: 2px solid var(--page-fishing-games-primary-color);
    box-shadow: 0 4px 10px rgba(17, 168, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--page-fishing-games-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-tertiary {
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-text-main);
    border: 1px solid var(--page-fishing-games-border);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-fishing-games__btn-tertiary:hover {
    background-color: var(--page-fishing-games-primary-color);
    border-color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__btn-inline {
    background: var(--page-fishing-games-primary-color);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
    margin-top: 10px;
}

.page-fishing-games__btn-inline:hover {
    opacity: 0.9;
}


/* About Section */
.page-fishing-games__about-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
}

.page-fishing-games__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-fishing-games__image-left {
    flex: 1;
    min-width: 200px; /* Ensure image is not too small */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__text-right {
    flex: 1.5;
}

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

.page-fishing-games__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--page-fishing-games-text-secondary);
    font-size: 1rem;
}

.page-fishing-games__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--page-fishing-games-primary-color);
    font-size: 1.2em;
    line-height: 1;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-deep-green);
}

.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-card {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-icon {
    width: 100%; /* Ensure it's not a small icon */
    max-width: 250px; /* Max width for feature image */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    min-width: 200px;
    min-height: 150px;
    object-fit: cover;
}

.page-fishing-games__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
}

.page-fishing-games__card-description {
    font-size: 0.95rem;
    color: var(--page-fishing-games-text-secondary);
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__game-card {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.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;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-deep-green);
}

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

.page-fishing-games__promotion-card {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__promotion-card .page-fishing-games__card-title {
    color: var(--page-fishing-games-primary-color);
}

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

/* How To Play Section */
.page-fishing-games__how-to-play-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__step-item {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--page-fishing-games-primary-color);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
}

.page-fishing-games__step-description {
    font-size: 0.95rem;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: var(--page-fishing-games-deep-green);
}

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

.page-fishing-games__faq-item {
    background: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--page-fishing-games-text-main);
    background: var(--page-fishing-games-card-bg);
    border-bottom: 1px solid var(--page-fishing-games-divider);
    list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for details/summary */
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-fishing-games-primary-color);
    transition: transform 0.3s ease;
}