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

.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page, assuming dark body bg */
    background-color: var(--bg-color);
}

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

.page-fishing-games__section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.page-fishing-games__section--dark {
    background-color: var(--deep-green);
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-fishing-games__section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px; /* Space for content below video */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-fishing-games__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.page-fishing-games__hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: -15%; /* Pull content up over video slightly */
    background: rgba(8, 22, 15, 0.85); /* Semi-transparent background for readability */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.7);
}

.page-fishing-games__hero-description {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.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;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-fishing-games__btn-secondary:hover {
    background: rgba(34, 199, 104, 0.1);
    transform: translateY(-3px);
}

.page-fishing-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

/* Content Grid */
.page-fishing-games__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__text-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-fishing-games__text-block a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.page-fishing-games__image-block {
    text-align: center;
}

.page-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    display: block; /* Ensure it behaves as a block for max-width */
    margin: 0 auto;
}

/* Features Grid */
.page-fishing-games__features-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__saloons-grid,
.page-fishing-games__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-card,
.page-fishing-games__step-card,
.page-fishing-games__saloon-card,
.page-fishing-games__security-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__step-card:hover,
.page-fishing-games__saloon-card:hover,
.page-fishing-games__security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-fishing-games__feature-icon,
.page-fishing-games__saloon-image,
.page-fishing-games__security-icon {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-title,
.page-fishing-games__step-title,
.page-fishing-games__saloon-title,
.page-fishing-games__security-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-fishing-games__feature-description,
.page-fishing-games__saloon-description,
.page-fishing-games__security-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Steps Grid */
.page-fishing-games__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(87, 227, 141, 0.5);
}

.page-fishing-games__step-card .page-fishing-games__btn-primary {
    margin-top: 20px;
}

/* Promo List */
.page-fishing-games__promo-list,
.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-fishing-games__promo-item,
.page-fishing-games__tip-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.page-fishing-games__promo-title,
.page-fishing-games__tip-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-fishing-games__promo-description,
.page-fishing-games__tip-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-fishing-games__promo-description a,
.page-fishing-games__tip-description a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-fishing-games__promo-description a:hover,
.page-fishing-games__tip-description a:hover {
    text-decoration: underline;
}

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

/* Contact Info */
.page-fishing-games__contact-info {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__contact-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-fishing-games__contact-info strong {
    color: var(--primary-color);
}

.page-fishing-games__contact-info ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-fishing-games__contact-info ul li {
    margin-bottom: 5px;
    font-size: 1rem;
}

.page-fishing-games__contact-info ul li a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-fishing-games__contact-info ul li a:hover {
    text-decoration: underline;
}

/* FAQ */
.page-fishing-games__faq-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

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

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-question:hover {
    background-color: rgba(17, 168, 78, 0.2);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--primary-color);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--card-bg);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 30px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-fishing-games__hero-description {
        font-size: 1.1rem;
    }
    .page-fishing-games__content-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__image-block {
        order: -1; /* Image above text on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }
    .page-fishing-games__hero-content {
        margin-top: -10%;
        padding: 20px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-fishing-games__hero-description {
        font-size: 1rem;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important; /* Ensure full width on mobile */
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .page-fishing-games__section-intro {
        font-size: 0.95rem;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__saloons-grid,
    .page-fishing-games__security-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__step-card,
    .page-fishing-games__saloon-card,
    .page-fishing-games__security-card {
        padding: 20px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__step-title,
    .page-fishing-games__saloon-title,
    .page-fishing-games__security-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__feature-description,
    .page-fishing-games__saloon-description,
    .page-fishing-games__security-description,
    .page-fishing-games__promo-description,
    .page-fishing-games__tip-description,
    .page-fishing-games__contact-info p,
    .page-fishing-games__contact-info ul li,
    .page-fishing-games__faq-answer p {
        font-size: 0.9rem;
    }
    .page-fishing-games__promo-item,
    .page-fishing-games__tip-item,
    .page-fishing-games__contact-info,
    .page-fishing-games__faq-item {
        padding: 15px;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    /* Mobile image responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Mobile video responsiveness */
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
    /* Ensure containers with images/buttons/videos also adapt */
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column;
    }
}