:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --main-bg: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

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

.page-fishing-games-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 30px; /* Space for content below image */
}

.page-fishing-games-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim to make text pop */
}

.page-fishing-games-tips__hero-content {
    position: relative; /* Not absolute, to be below the image due to "上图下文" rule */
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto 0 auto; /* Margin from the image above */
    background-color: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-fishing-games-tips__main-title {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 8px var(--glow-color);
    max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-fishing-games-tips__hero-description {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-tips__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games-tips__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

.page-fishing-games-tips__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-fishing-games-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-fishing-games-tips__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.5);
}

.page-fishing-games-tips__sub-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-fishing-games-tips__text-block {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 15px;
    text-align: justify;
}

.page-fishing-games-tips__image-full {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: block;
}

.page-fishing-games-tips__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-fishing-games-tips__list-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    color: var(--text-main);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__list-item::before {
    content: '★';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

.page-fishing-games-tips__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-fishing-games-tips__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-fishing-games-tips__btn-secondary {
    background: #1a1a1a;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-fishing-games-tips__btn-secondary:hover {
    background: var(--secondary-color);
    color: #000000;
}

/* FAQ Section Styles */
.page-fishing-games-tips__faq-list {
    margin-top: 30px;
}

details.page-fishing-games-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
details.page-fishing-games-tips__faq-item summary.page-fishing-games-tips__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(--secondary-color);
  font-weight: 600;
}
details.page-fishing-games-tips__faq-item summary.page-fishing-games-tips__faq-question::-webkit-details-marker {
  display: none;
}
details.page-fishing-games-tips__faq-item summary.page-fishing-games-tips__faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}
.page-fishing-games-tips__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
}
.page-fishing-games-tips__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-tips__faq-item .page-fishing-games-tips__faq-answer {
  padding: 0 20px 20px;
  background: rgba(0, 0, 0, 0.3); /* Slightly lighter background for answer */
  border-radius: 0 0 5px 5px;
  color: var(--text-main);
  font-size: 1em;
}
.page-fishing-games-tips__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* --- Responsive Styles --- */

/* Tablet and Mobile (max-width: 1024px) */
@media (max-width: 1024px) {
    .page-fishing-games-tips__hero-content {
        max-width: 700px;
    }
    .page-fishing-games-tips__main-title {
        font-size: 2.8em;
    }
    .page-fishing-games-tips__hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games-tips__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games-tips__sub-title {
        font-size: 1.6em;
    }
    .page-fishing-games-tips__text-block,
    .page-fishing-games-tips__list-item,
    .page-fishing-games-tips__faq-qtext,
    .page-fishing-games-tips__faq-answer p {
        font-size: 1em;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* 1. top-text 首块顶距 */
    .page-fishing-games-tips__hero-section {
        padding-top: 10px; /* Small top padding, relying on body padding-top from shared */
        padding-bottom: 20px;
    }

    .page-fishing-games-tips__hero-content {
        margin-top: 15px;
        padding: 15px;
        border-radius: 8px;
    }

    .page-fishing-games-tips__main-title {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .page-fishing-games-tips__hero-description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    /* 2. 落地页双栏模块 - This page doesn't have explicit dual-column layouts that need stacking, but general container rules ensure content fits. */
    .page-fishing-games-tips__container {
        padding: 0 15px !important; /* Force padding for all containers */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    .page-fishing-games-tips__section {
        padding: 30px 0;
    }

    .page-fishing-games-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-fishing-games-tips__sub-title {
        font-size: 1.4em;
        margin-top: 20px;
        margin-bottom: 10px;
        padding-left: 10px;
    }

    .page-fishing-games-tips__text-block,
    .page-fishing-games-tips__list-item,
    .page-fishing-games-tips__faq-answer p {
        font-size: 0.95em;
    }

    /* 3. 通用图片与容器 */
    .page-fishing-games-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    /* 4. 按钮 */
    .page-fishing-games-tips__cta-button,
    .page-fishing-games-tips__btn-primary,
    .page-fishing-games-tips__btn-secondary,
    .page-fishing-games-tips a[class*="button"],
    .page-fishing-games-tips 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 20px !important;
        font-size: 1em !important;
    }

    .page-fishing-games-tips__button-group {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
        padding: 0 15px; /* Ensure padding for the group */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* FAQ specific mobile styles */
    details.page-fishing-games-tips__faq-item summary.page-fishing-games-tips__faq-question { padding: 15px; }
    .page-fishing-games-tips__faq-qtext { font-size: 1em; }
    .page-fishing-games-tips__faq-toggle { font-size: 20px; width: 24px; height: 24px; }
    details.page-fishing-games-tips__faq-item .page-fishing-games-tips__faq-answer { padding: 0 15px 15px; }
}