/* style/fishing-games.css */

/* --- Base Styles & Variables --- */
:root {
    --page-fishing-games-primary-color: #26A9E0;
    --page-fishing-games-secondary-color: #FFFFFF;
    --page-fishing-games-text-dark: #333333;
    --page-fishing-games-text-light: #ffffff;
    --page-fishing-games-bg-dark: var(--neon-dark-bg, #0d0d0d); /* Assuming shared.css defines --neon-dark-bg */
    --page-fishing-games-bg-light: #ffffff;
    --page-fishing-games-login-color: #EA7C07;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-fishing-games-text-light); /* Default text color for dark body background */
    background-color: var(--page-fishing-games-bg-dark); /* Ensure consistency with shared body background */
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--page-fishing-games-secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-fishing-games__section-description a {
    color: var(--page-fishing-games-primary-color);
    text-decoration: underline;
}

/* --- 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; /* Ensure padding doesn't increase total width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

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

.page-fishing-games__btn-primary:hover {
    background: #1f8ec4; /* Slightly darker than #26A9E0 */
    border-color: #1f8ec4;
}

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

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

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

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

/* --- Image & Video Base Styles (Global for page-fishing-games) --- */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 40px auto; /* Center images and provide vertical spacing */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* filter: none !important; /* Ensure no filter changes image color */
}

.page-fishing-games video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--page-fishing-games-primary-color), #007bb6); /* Gradient using primary color */
    color: var(--page-fishing-games-text-light);
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-fishing-games__hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-fishing-games__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-fishing-games-secondary-color);
}

.page-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-fishing-games-secondary-color);
}

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

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Hero image usually full width, no border-radius */
    margin: 0;
    box-shadow: none;
}

/* --- Introduction Section --- */
.page-fishing-games__introduction-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-bg-dark);
    color: var(--page-fishing-games-text-light);
}

.page-fishing-games__introduction-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-secondary-color);
}

/* --- Why Choose Section --- */
.page-fishing-games__why-choose-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-bg-light);
    color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__why-choose-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__why-choose-section .page-fishing-games__section-description {
    color: var(--page-fishing-games-text-dark);
}

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

.page-fishing-games__feature-item {
    background-color: var(--page-fishing-games-secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-fishing-games__feature-title {
    font-size: 1.8em;
    color: var(--page-fishing-games-primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__feature-text {
    font-size: 1em;
    color: var(--page-fishing-games-text-dark);
}

/* --- Game Types Section --- */
.page-fishing-games__game-types-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-bg-dark);
    color: var(--page-fishing-games-text-light);
}

.page-fishing-games__game-types-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-secondary-color);
}

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

.page-fishing-games__game-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
}

.page-fishing-games__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for cards */
    object-fit: cover;
    margin: 0 0 20px 0; /* Remove default margin, add bottom margin */
    border-radius: 10px 10px 0 0;
}

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

.page-fishing-games__game-card-text {
    font-size: 0.95em;
    color: var(--page-fishing-games-text-light);
    padding: 0 15px;
}

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

.page-fishing-games__how-to-play-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__how-to-play-section .page-fishing-games__section-description {
    color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    counter-reset: step-counter;
}

.page-fishing-games__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-fishing-games__step-item::before {
    counter-increment: step-counter;
    content: "Bước " counter(step-counter);
    background-color: var(--page-fishing-games-primary-color);
    color: var(--page-fishing-games-secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    flex-shrink: 0;
    margin-right: 20px;
}

.page-fishing-games__step-title {
    font-size: 1.6em;
    color: var(--page-fishing-games-primary-color);
    margin-bottom: 10px;
}

.page-fishing-games__step-text {
    font-size: 1em;
    color: var(--page-fishing-games-text-dark);
}

/* --- Strategy Section --- */
.page-fishing-games__strategy-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-bg-dark);
    color: var(--page-fishing-games-text-light);
}

.page-fishing-games__strategy-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-secondary-color);
}

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

.page-fishing-games__strategy-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-fishing-games__strategy-title {
    font-size: 1.5em;
    color: var(--page-fishing-games-primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__strategy-text {
    font-size: 1em;
    color: var(--page-fishing-games-text-light);
}

/* --- Promotions Section --- */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-bg-light);
    color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__promotions-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__promotions-section .page-fishing-games__section-description {
    color: var(--page-fishing-games-text-dark);
}

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

.page-fishing-games__promo-card {
    background-color: var(--page-fishing-games-secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-fishing-games__promo-title {
    font-size: 1.5em;
    color: var(--page-fishing-games-primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__promo-text {
    font-size: 1em;
    color: var(--page-fishing-games-text-dark);
}

/* --- FAQ Section --- */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-bg-dark);
    color: var(--page-fishing-games-text-light);
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-secondary-color);
}

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

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Subtle background for FAQ item */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}