/* style/fishing-games.css */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark background */
    background-color: var(--dark-bg-1); /* Assuming shared.css sets a dark background for body */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding: 120px 20px 60px; /* Adjust top padding for fixed header */
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-fishing-games__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Custom font color for prominence */
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

.page-fishing-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay effect */
}

/* General Sections */
.page-fishing-games__section {
    padding: 60px 20px;
}

.page-fishing-games__dark-bg {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
}

.page-fishing-games__light-bg {
    background-color: #ffffff;
    color: #333333;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: inherit; /* Inherit color from section background */
}

.page-fishing-games__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for responsive buttons */
    max-width: 100%;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background-color: #C30808; /* Custom Register/Login color */
    color: #FFFF00; /* Custom Register/Login font color */
    border: 2px solid #C30808;
}

.page-fishing-games__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #C30808; /* Custom Register/Login color */
    border: 2px solid #C30808;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #C30808;
    color: #FFFF00;
}

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

.page-fishing-games__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFF00;
}

.page-fishing-games__feature-description {
    font-size: 1em;
    color: #f0f0f0;
}

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

.page-fishing-games__casino-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #333333; /* For light background */
}

.page-fishing-games__casino-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__casino-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #017439; /* Brand primary color for titles on light background */
}
.page-fishing-games__casino-title a {
    color: #017439;
    text-decoration: none;
}
.page-fishing-games__casino-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__casino-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #555555;
}

/* Guide List */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__guide-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__guide-step-title {
    font-size: 1.4em;
    color: #FFFF00;
    margin-bottom: 10px;
}

.page-fishing-games__guide-step-description {
    font-size: 1em;
    color: #f0f0f0;
}
.page-fishing-games__guide-step-description a {
    color: #FFFF00;
    text-decoration: underline;
}
.page-fishing-games__guide-step-description a:hover {
    color: #ffffff;
}

/* Tips List */
.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__tips-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__tips-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 10px;
}

.page-fishing-games__tips-description {
    font-size: 1em;
    color: #555555;
}

/* Promotions List */
.page-fishing-games__promotions-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__promotions-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__promotions-title {
    font-size: 1.4em;
    color: #FFFF00;
    margin-bottom: 10px;
}

.page-fishing-games__promotions-description {
    font-size: 1em;
    color: #f0f0f0;
}
.page-fishing-games__promotions-description a {
    color: #FFFF00;
    text-decoration: underline;
}
.page-fishing-games__promotions-description a:hover {
    color: #ffffff;
}

/* Video Section */
.page-fishing-games__video-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.2); /* Slightly darker background for video */
    border-radius: 10px;
}

.page-fishing-games__video-title {
    font-size: 2em;
    color: #FFFF00;
    margin-bottom: 30px;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px; /* Max width for video */
    margin: 0 auto 30px;
    border-radius: 8px;
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block; /* Ensure it behaves as a block element */
}

.page-fishing-games__video-cta {
    margin-top: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: #333333;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #f5f5f5;
    color: #017439;
    border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games__faq-question:hover {
    background-color: #e0e0e0;
}