:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-login-btn-color: #C30808;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-yellow: #FFFF00; 
    --border-light: #e0e0e0;
    --background-light: #f9f9f9;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; 
    background-color: var(--background-light);
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-fishing-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button,
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__cta-button {
    background: var(--register-login-btn-color);
    color: var(--text-light);
}

.page-fishing-games__cta-button:hover {
    background: #A60707; /* Darker shade of #C30808 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-primary {
    background: var(--register-login-btn-color);
    color: var(--text-light);
    border: 2px solid var(--register-login-btn-color);
}

.page-fishing-games__btn-primary:hover {
    background: #A60707;
    border-color: #A60707;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-small {
    padding: 10px 25px;
    font-size: 16px;
}

.page-fishing-games__btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-fishing-games__btn-link:hover {
    color: #005f2e; /* Slightly darker primary color */
    text-decoration: underline;
}

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

.page-fishing-games__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-fishing-games__section-title--white {
    color: var(--text-light);
}

.page-fishing-games__section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__section-description--white {
    color: var(--text-light);
}

.page-fishing-games__introduction-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.page-fishing-games__introduction-section p {
    margin-bottom: 1.5em;
    font-size: 1.05rem;
    text-align: justify;
}

.page-fishing-games__introduction-section strong {
    color: var(--primary-color);
}

.page-fishing-games__quick-access-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-fishing-games__games-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-fishing-games__game-card {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

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

.page-fishing-games__game-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding: 0 15px;
    flex-grow: 1;
}

.page-fishing-games__more-games-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.page-fishing-games__promotions-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.page-fishing-games__promo-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-fishing-games__promo-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__promo-footer-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.page-fishing-games__security-support-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.page-fishing-games__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-fishing-games__feature-item {
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__feature-item img {
    
    
    object-fit: contain;
    margin-bottom: 15px;
}

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

.page-fishing-games__feature-description {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.page-fishing-games__contact-cta {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--secondary-color);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-dark);
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: var(--background-light);
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: var(--background-light);
  border-radius: 0 0 5px 5px;
  color: var(--text-dark);
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer p {
    margin-bottom: 1em;
}

.page-fishing-games__blog-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

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

.page-fishing-games__blog-card {
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games__blog-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 15px 15px 5px 15px;
    line-height: 1.3;
}

.page-fishing-games__blog-title a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.page-fishing-games__blog-date {
    font-size: 0.85rem;
    color: #666;
    margin: 0 15px 10px 15px;
}

.page-fishing-games__blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-fishing-games__view-all-button {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-fishing-games__hero-image img {
        border-radius: 4px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-fishing-games__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 16px;
    }

    .page-fishing-games__button-group {
        flex-direction: column; 
        gap: 15px;
    }

    .page-fishing-games__section-title {
        font-size: 1.8rem;
    }

    .page-fishing-games__section-description {
        font-size: 1rem;
    }

    .page-fishing-games__container {
        padding: 15px;
    }

    .page-fishing-games__introduction-section,
    .page-fishing-games__quick-access-section,
    .page-fishing-games__games-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__security-support-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__blog-section {
        padding: 50px 0;
    }

    .page-fishing-games__game-card img,
    .page-fishing-games__blog-card img {
        
    }

    .page-fishing-games__game-title,
    .page-fishing-games__promo-title,
    .page-fishing-games__feature-title,
    .page-fishing-games__blog-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__game-description,
    .page-fishing-games__promo-description,
    .page-fishing-games__feature-description,
    .page-fishing-games__blog-excerpt {
        font-size: 0.9rem;
    }
    
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__button-group,
    .page-fishing-games__promo-list,
    .page-fishing-games__game-list,
    .page-fishing-games__feature-list,
    .page-fishing-games__blog-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question { padding: 15px; }
    .page-fishing-games__faq-qtext { font-size: 15px; }
}

.page-fishing-games img {
    filter: none;
}