/* style/fishing-games.css */

/* Custom Colors */
:root {
    --page-fishing-games-bg: #08160F;
    --page-fishing-games-card-bg: #11271B;
    --page-fishing-games-text-main: #F2FFF6;
    --page-fishing-games-text-secondary: #A7D9B8;
    --page-fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --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-bg);
    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; /* Image first, then content */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--page-fishing-games-deep-green);
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    position: relative;
}

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

.page-fishing-games__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 60px 20px;
    z-index: 1;
    position: relative; /* Ensure content is above any potential overlay */
    background-color: var(--page-fishing-games-bg); /* Use page background for content block */
    width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

/* General Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-fishing-games__btn-primary,
.page-fishing-games__card-button {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main); /* White text for contrast */
    border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover,
.page-fishing-games__card-button:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px var(--page-fishing-games-glow);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--page-fishing-games-glow);
    border: 2px solid var(--page-fishing-games-glow);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--page-fishing-games-glow);
    color: var(--page-fishing-games-bg); /* Dark text on glow background */
    box-shadow: 0 0 15px var(--page-fishing-games-glow);
}

/* Sections */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--page-fishing-games-text-main);
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    color: var(--page-fishing-games-text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-fishing-games__intro-section,
.page-fishing-games__strategies-section,
.page-fishing-games__promotions-section,
.page-fishing-games__cta-banner {
    padding: 80px 0;
}

.page-fishing-games__game-types-section,
.page-fishing-games__benefits-section,
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__dark-section {
    background-color: var(--page-fishing-games-bg);
}

.page-fishing-games__image-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 40px;
    object-fit: cover;
}

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

.page-fishing-games__game-card,
.page-fishing-games__promo-card {
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__card-text {
    font-size: 0.95em;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
    padding: 0 15px;
    flex-grow: 1; /* Allow text to grow */
}

.page-fishing-games__card-button {
    margin: 0 15px;
    width: calc(100% - 30px);
}