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

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

.page-fishing-games__section {
    padding: 60px 0;
}

.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
}

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

.page-fishing-games__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 80px 20px;
    background: rgba(13, 14, 18, 0.7); /* Semi-transparent background */
    border-radius: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFF3E6;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF3E6;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #FFF3E6; /* Text Main */
    border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #E67A1A 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #FFA53A;
    border: 2px solid #FFA53A;
}

.page-fishing-games__btn-secondary:hover {
    background: #FFA53A;
    color: #0D0E12;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-fishing-games__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF3E6;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF8C1A; /* Main color */
    border-radius: 2px;
}

.page-fishing-games__article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #FFF3E6;
}

.page-fishing-games__article-body p {
    margin-bottom: 15px;
}

.page-fishing-games__article-body strong {
    color: #FFA53A; /* Auxiliary color */
}

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

.page-fishing-games__card {
    background: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border color */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-fishing-games__card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
    margin-bottom: 20px;
}

.page-fishing-games__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__card-button:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #E67A1A 100%);
}

/* How to Play Section */
.page-fishing-games__how-to-play-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.page-fishing-games__steps {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-fishing-games__step-item {
    background: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border color */
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    position: relative;
    padding-left: 70px;
}

.page-fishing-games__step-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: #FF8C1A; /* Main color */
    color: #FFF3E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.page-fishing-games__step-title {
    font-size: 1.25rem;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 10px;
}

.page-fishing-games__step-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFF3E6;
}

.page-fishing-games__image-right {
    flex: 1;
    text-align: center;
}

.page-fishing-games__image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* Tips Section */
.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__tips-list li {
    background: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border color */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__tips-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__tips-list li h3 {
    color: #FFA53A; /* Auxiliary color */
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.page-fishing-games__tips-list li p {
    color: #FFF3E6;
    font-size: 1rem;
    line-height: 1.7;
}

/* Promotions Section */
.page-fishing-games__promotions-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.page-fishing-games__promotion-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.page-fishing-games__promotion-text {
    flex: 2;
    color: #FFF3E6;
    line-height: 1.7;
}

.page-fishing-games__promotion-text p {
    margin-bottom: 15px;
}

.page-fishing-games__promo-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-fishing-games__promo-list li {
    margin-bottom: 8px;
    color: #FFF3E6;
}

.page-fishing-games__promo-list li strong {
    color: #FFA53A;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #17191F; /* Card BG */
  color: #FFF3E6;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFA53A;
}
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: rgba(255, 140, 26, 0.1);
}
.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFA53A;
}
.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FF8C1A; /* Main color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: rgba(23, 25, 31, 0.8); /* Slightly lighter than card BG */
  border-radius: 0 0 10px 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF3E6;
}

/* Conclusion Section */
.page-fishing-games__conclusion-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* General image responsiveness */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 60px 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-fishing-games__hero-description {
        font-size: 1rem;
    }
    .page-fishing-games__section-title {
        font-size: 2rem;
    }
    .page-fishing-games__how-to-play-content,
    .page-fishing-games__promotions-content {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__image-right,
    .page-fishing-games__promotion-image {
        order: -1; /* Image above text on mobile */
        margin-bottom: 30px;
    }
    .page-fishing-games__promo-list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-fishing-games__hero-section {
        min-height: auto;
        padding: 10px 0 40px; /* Small top padding, more bottom padding */
    }
    .page-fishing-games__hero-image img {
        object-fit: contain !important; /* Prevent cropping on mobile */
        aspect-ratio: unset !important;
        height: auto !important;
        width: 100% !important;
    }
    .page-fishing-games__hero-content {
        padding: 40px 15px;
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.3;
    }
    .page-fishing-games__hero-description {
        font-size: 0.95rem;
    }
    .page-fishing-games__hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* 通用图片与容器 */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__container,
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__how-to-play-content,
    .page-fishing-games__promotions-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* 产品展示图区域 */
    .page-fishing-games__products-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 20px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    .page-fishing-games__card {
        width: 100%;
    }
    .page-fishing-games__card-content {
        padding: 20px;
    }
    .page-fishing-games__card-title {
        font-size: 1.25rem;
    }

    /* 装饰主标题 + 长文 SEO 区 */
    .page-fishing-games__article-body {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    .page-fishing-games__how-to-play-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-fishing-games__steps {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__step-item {
        padding-left: 60px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .page-fishing-games__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        left: 15px;
        top: 15px;
    }
    .page-fishing-games__image-right {
        margin-top: 20px;
    }

    /* 按钮与按钮容器 */
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__card-button,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
        font-size: 1rem;
    }
    .page-fishing-games__hero-buttons,
    .page-fishing-games__conclusion-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    /* FAQ */
    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    .page-fishing-games__faq-qtext {
        font-size: 1rem;
    }
    .page-fishing-games__faq-toggle {
        font-size: 24px;
        width: 24px;
        margin-left: 10px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95rem;
    }
    .page-fishing-games__promo-list {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__products-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    .page-fishing-games__section-title {
        font-size: 1.6rem;
    }
    .page-fishing-games__card-title {
        font-size: 1.15rem;
    }
}