:root {
    --primary-color: #E53935;
    --secondary-color: #FF5A4F;
    --card-bg: #FFFFFF;
    --bg-color: #F5F7FA;
    --text-main: #333333;
    --border-color: #E0E0E0;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
}

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

.page-fishing-games__section-title {
    font-size: 36px;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-fishing-games__section-title--white {
    color: #ffffff;
}

.page-fishing-games__section-description {
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main);
}

.page-fishing-games__section-description--white {
    color: #f0f0f0;
}

.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; /* body handles header offset */
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
}

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

.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;
    min-width: 200px;
    min-height: 200px;
}

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

.page-fishing-games__hero-content h1 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-fishing-games__hero-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

.page-fishing-games__hero-content .keyword {
    font-weight: bold;
    color: #ffffff;
}

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

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    border: none;
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__intro-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    color: var(--text-main);
}

.page-fishing-games__intro-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__intro-section .keyword {
    font-weight: bold;
    color: var(--primary-color);
}

.page-fishing-games__features-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.page-fishing-games__feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-fishing-games__feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-fishing-games__feature-card .keyword {
    font-weight: bold;
    color: #ffffff;
}

.page-fishing-games__gameplay-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    color: var(--text-main);
}

.page-fishing-games__gameplay-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-fishing-games__gameplay-text {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__gameplay-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.page-fishing-games__gameplay-text ol {
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.page-fishing-games__gameplay-text ol li {
    margin-bottom: 10px;
}

.page-fishing-games__gameplay-text strong {
    color: var(--primary-color);
}

.page-fishing-games__gameplay-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.page-fishing-games__gameplay-text .keyword {
    font-weight: bold;
    color: var(--primary-color);
}

.page-fishing-games__gameplay-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-fishing-games__gameplay-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__popular-games-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.page-fishing-games__game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.page-fishing-games__game-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #f0f0f0;
}

.page-fishing-games__game-card .keyword {
    font-weight: bold;
    color: #ffffff;
}

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

.page-fishing-games__tips-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    color: var(--text-main);
}

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

.page-fishing-games__tip-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__tip-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-fishing-games__tip-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

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

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

.page-fishing-games__promo-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promo-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-fishing-games__promo-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.page-fishing-games__promo-card .keyword {
    font-weight: bold;
    color: #ffffff;
}

.page-fishing-games__promo-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--card-bg);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__promo-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

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

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
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;
  background: var(--card-bg);
  color: var(--text-main);
  font-weight: 600;
}
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: #f5f5f5;
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.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: #f9f9f9;
  border-radius: 0 0 8px 8px;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}
.page-fishing-games__faq-answer p {
    margin-bottom: 0;
}
.page-fishing-games__faq-answer .keyword {
    font-weight: bold;
    color: var(--primary-color);
}
.page-fishing-games__faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

.page-fishing-games__cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games__cta-section .keyword {
    font-weight: bold;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .page-fishing-games__hero-content h1 {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games__section-title {
        font-size: 30px;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__game-title,
    .page-fishing-games__tip-title,
    .page-fishing-games__promo-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .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__hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-fishing-games__hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

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

    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .page-fishing-games__intro-section,
    .page-fishing-games__features-section,
    .page-fishing-games__gameplay-section,
    .page-fishing-games__popular-games-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 50px 0;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__tips-grid,
    .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__tip-card,
    .page-fishing-games__promo-card {
        padding: 20px;
    }

    .page-fishing-games__feature-card img,
    .page-fishing-games__game-card img,
    .page-fishing-games__gameplay-image img {
        height: auto !important;
        min-height: 200px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__gameplay-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-fishing-games__gameplay-image {
        min-width: unset;
        width: 100%;
    }

    .page-fishing-games__promo-button {
        padding: 10px 20px;
        font-size: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    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__faq-toggle { font-size: 20px; }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer { padding: 0 15px 15px; }
}

.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__hero-image,
.page-fishing-games__feature-card,
.page-fishing-games__game-card,
.page-fishing-games__gameplay-image,
.page-fishing-games__promo-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}