.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

.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 */
    padding-bottom: 60px;
    overflow: hidden; /* Ensure no image overflow */
}

.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;
    filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-fishing-games__hero-content {
    position: relative; /* Not absolute to be below image */
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%); /* Gradient to match body bg */
    width: 100%;
    max-width: 1200px;
    margin-top: -100px; /* Overlap slightly with image for visual flow */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
    box-sizing: border-box;
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__intro-text {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__intro-text a {
    color: #57E38D; /* Glow */
    text-decoration: none;
}

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

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

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    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);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Darker green from button gradient */
    border: 2px solid #2AD16F; /* Deep Green */
    box-shadow: 0 4px 10px rgba(46, 122, 78, 0.3);
}

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(46, 122, 78, 0.2);
    box-shadow: 0 6px 15px rgba(46, 122, 78, 0.5);
}

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

/* General Section Styling */
.page-fishing-games__section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold */
}

.page-fishing-games__section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__section-description a {
    color: #57E38D; /* Glow */
    text-decoration: none;
}

.page-fishing-games__section-description a:hover {
    text-decoration: underline;
}

.page-fishing-games__text-main {
    color: #F2C14E; /* Gold */
    font-weight: 600;
}

.page-fishing-games__text-secondary {
    color: #A7D9B8; /* Text Secondary */
}

/* Card Styling */
.page-fishing-games__features-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__promotions-grid,
.page-fishing-games__security-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #F2FFF6; /* Text Main */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure it respects width/height */
}

.page-fishing-games__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-fishing-games__card-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1; /* Push button to bottom */
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__card-text a {
    color: #57E38D; /* Glow */
    text-decoration: none;
}

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

.page-fishing-games__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-fishing-games__list li::before {
    content: '•';
    color: #57E38D; /* Glow */
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Video Section */
.page-fishing-games__video-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 40px auto;
    background-color: #000;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    width: 100%; /* Desktop width */
    box-sizing: border-box;
}

.page-fishing-games__video-wrapper .page-fishing-games__video-link {
    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%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.page-fishing-games__cta-buttons--video {
    margin-top: 30px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding-bottom: 80px;
}

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

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
    transition: all 0.3s ease;
}

.page-fishing-games__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #F2C14E; /* Gold */
    background-color: rgba(17, 39, 27, 0.8); /* Slightly lighter Card BG for summary */
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none; /* For Webkit browsers */
}

.page-fishing-games__faq-item summary:hover {
    background-color: rgba(46, 122, 78, 0.3); /* Border color as hover */
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 20px;
    color: #57E38D; /* Glow */
}

.page-fishing-games__faq-answer {
    padding: 0 30px 20px 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

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