: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-btn-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); /* Light text on dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-fishing-games__container--center {
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--page-fishing-games-text-main);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-fishing-games__text-block {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-fishing-games-text-secondary);
}

/* --- Buttons --- */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__game-btn,
.page-fishing-games__promo-btn,
.page-fishing-games__step-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box; /* Include padding in width calculation */
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-btn-gradient);
    color: var(--page-fishing-games-text-main); /* White text on dark gradient */
    border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--page-fishing-games-glow); /* Greenish text */
    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 */
    transform: translateY(-2px);
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-fishing-games__cta-buttons--center {
    justify-content: center;
}

/* Ensure individual buttons are responsive */
.page-fishing-games__cta-buttons > a {
    flex-grow: 1;
    max-width: 250px; /* Limit individual button width on larger screens */
    min-width: 180px;
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    padding: 60px 20px 80px;
    padding-top: 10px; /* Small top spacing after header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px; /* Space between image and text */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__intro-text {
    font-size: 20px;
    color: var(--page-fishing-games-text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
}

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

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

.page-fishing-games__feature-item {
    background-color: 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 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 150px; /* Max size for icon-like images */
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.page-fishing-games__feature-title {
    font-size: 24px;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fishing-games__feature-description {
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
}

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

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

.page-fishing-games__game-card {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
}

.page-fishing-games__game-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3; /* Maintain aspect ratio */
}

.page-fishing-games__game-title {
    font-size: 26px;
    color: var(--page-fishing-games-text-main);
    margin: 20px 15px 10px;
    font-weight: 700;
}

.page-fishing-games__game-description {
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
    padding: 0 15px 20px;
}

.page-fishing-games__game-btn {
    display: block;
    background: var(--page-fishing-games-btn-gradient);
    color: var(--page-fishing-games-text-main);
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 0 0 12px 12px;
    transition: background 0.3s ease;
}

.page-fishing-games__game-btn:hover {
    opacity: 0.9;
}

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

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

.page-fishing-games__step-item {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-fishing-games__step-title {
    font-size: 24px;
    color: var(--page-fishing-games-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fishing-games__step-item p {
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
}

.page-fishing-games__step-btn {
    background: var(--page-fishing-games-btn-gradient);
    color: var(--page-fishing-games-text-main);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
}

.page-fishing-games__guide-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-fishing-games__strategy-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on deep green */
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-title {
    font-size: 22px;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-fishing-games__strategy-item p {
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
}

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

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

.page-fishing-games__promo-card:hover {
    transform: translateY(-8px);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.page-fishing-games__promo-title {
    font-size: 26px;
    color: var(--page-fishing-games-text-main);
    margin: 20px 15px 10px;
    font-weight: 700;
}

.page-fishing-games__promo-description {
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
    padding: 0 15px 20px;
}

.page-fishing-games__promo-btn {
    display: block;
    background: var(--page-fishing-games-btn-gradient);
    color: var(--page-fishing-games-text-main);
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 0 0 12px 12px;
    transition: background 0.3s ease;
}

.page-fishing-games__promo-btn:hover {
    opacity: 0.9;
}

/* --- Video Section --- */
.page-fishing-games__video-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-bg);
    text-align: center;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 50px auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background-color: #000; /* Placeholder background */
    width: 100%; /* Desktop width constraint */
    max-width: 100%; /* For responsive on desktop */
    box-sizing: border-box;
}

.page-fishing-games__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- Security Section --- */
.page-fishing-games__security-section {
    padding: 80px 0;
    background-color: var(--page-fishing-games-deep-green);
    text-align: center;
}

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

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

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

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

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

.page-fishing-games__faq-question:hover {
    background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: var(--page-fishing-games-glow);
    margin-left: 15px;
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 16px;
    color: var(--page-fishing-games-text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}