/* style/resources-zingplay-fishing-high-score-tips.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login: #EA7C07;
    --background-color: #FFFFFF;
    --black: #000000;
}

.page-resources-zingplay-fishing-high-score-tips {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--background-color); /* Default background color */
    line-height: 1.6;
}

.page-resources-zingplay-fishing-high-score-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-zingplay-fishing-high-score-tips__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
}

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

.page-resources-zingplay-fishing-high-score-tips__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

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

.page-resources-zingplay-fishing-high-score-tips__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-zingplay-fishing-high-score-tips__hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-zingplay-fishing-high-score-tips__hero-content p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-resources-zingplay-fishing-high-score-tips__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-login); /* Using #EA7C07 for call to action */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-zingplay-fishing-high-score-tips__cta-button:hover {
    background: #FF8C00; /* Slightly lighter orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-zingplay-fishing-high-score-tips__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-resources-zingplay-fishing-high-score-tips__introduction-section,
.page-resources-zingplay-fishing-high-score-tips__advanced-strategy-section,
.page-resources-zingplay-fishing-high-score-tips__code-guide-section,
.page-resources-zingplay-fishing-high-score-tips__faq-section {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-dark);
}

.page-resources-zingplay-fishing-high-score-tips__techniques-section,
.page-resources-zingplay-fishing-high-score-tips__items-skills-section,
.page-resources-zingplay-fishing-high-score-tips__avoid-loss-section,
.page-resources-zingplay-fishing-high-score-tips__conclusion-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-zingplay-fishing-high-score-tips__techniques-section .page-resources-zingplay-fishing-high-score-tips__section-title,
.page-resources-zingplay-fishing-high-score-tips__items-skills-section .page-resources-zingplay-fishing-high-score-tips__section-title,
.page-resources-zingplay-fishing-high-score-tips__avoid-loss-section .page-resources-zingplay-fishing-high-score-tips__section-title,
.page-resources-zingplay-fishing-high-score-tips__conclusion-section .page-resources-zingplay-fishing-high-score-tips__section-title {
    color: var(--text-light);
}

.page-resources-zingplay-fishing-high-score-tips__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-zingplay-fishing-high-score-tips__list,
.page-resources-zingplay-fishing-high-score-tips__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-zingplay-fishing-high-score-tips__ordered-list {
    list-style-type: decimal;
}

.page-resources-zingplay-fishing-high-score-tips__list-item {
    margin-bottom: 10px;
}

.page-resources-zingplay-fishing-high-score-tips__image-content {
    text-align: center;
    margin: 40px 0;
}

.page-resources-zingplay-fishing-high-score-tips__image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

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

.page-resources-zingplay-fishing-high-score-tips__card {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-zingplay-fishing-high-score-tips__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-zingplay-fishing-high-score-tips__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-zingplay-fishing-high-score-tips__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-zingplay-fishing-high-score-tips__card-text {
    font-size: 1em;
    color: var(--text-dark);
    text-align: justify;
}

.page-resources-zingplay-fishing-high-score-tips__item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-resources-zingplay-fishing-high-score-tips__item-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-resources-zingplay-fishing-high-score-tips__item-card:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-resources-zingplay-fishing-high-score-tips__item-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-zingplay-fishing-high-score-tips__item-title {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-resources-zingplay-fishing-high-score-tips__item-description {
    font-size: 0.95em;
    color: var(--text-light);
    text-align: justify;
}

.page-resources-zingplay-fishing-high-score-tips__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-zingplay-fishing-high-score-tips__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-zingplay-fishing-high-score-tips__btn-primary:hover {
    background-color: #1a8ad1; /* Slightly darker primary color */
    transform: translateY(-2px);
}

/* FAQ styles */
.page-resources-zingplay-fishing-high-score-tips__faq-list {
    margin-top: 40px;
}

.page-resources-zingplay-fishing-high-score-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-zingplay-fishing-high-score-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-zingplay-fishing-high-score-tips__faq-item.active .page-resources-zingplay-fishing-high-score-tips__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-zingplay-fishing-high-score-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-zingplay-fishing-high-score-tips__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-zingplay-fishing-high-score-tips__faq-question:active {
  background: #eeeeee;
}

.page-resources-zingplay-fishing-high-score-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark);
}

.page-resources-zingplay-fishing-high-score-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-zingplay-fishing-high-score-tips__faq-item.active .page-resources-zingplay-fishing-high-score-tips__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-resources-zingplay-fishing-high-score-tips__hero-content h1 {
        font-size: 2.5em;
    }
    .page-resources-zingplay-fishing-high-score-tips__hero-content p {
        font-size: 1.1em;
    }
    .page-resources-zingplay-fishing-high-score-tips__section-title {
        font-size: 2em;
    }
    .page-resources-zingplay-fishing-high-score-tips__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-zingplay-fishing-high-score-tips__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-zingplay-fishing-high-score-tips__hero-content h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-resources-zingplay-fishing-high-score-tips__hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-resources-zingplay-fishing-high-score-tips__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        margin-top: 15px;
        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;
    }

    .page-resources-zingplay-fishing-high-score-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-resources-zingplay-fishing-high-score-tips__introduction-section,
    .page-resources-zingplay-fishing-high-score-tips__techniques-section,
    .page-resources-zingplay-fishing-high-score-tips__advanced-strategy-section,
    .page-resources-zingplay-fishing-high-score-tips__items-skills-section,
    .page-resources-zingplay-fishing-high-score-tips__code-guide-section,
    .page-resources-zingplay-fishing-high-score-tips__avoid-loss-section,
    .page-resources-zingplay-fishing-high-score-tips__faq-section,
    .page-resources-zingplay-fishing-high-score-tips__conclusion-section {
        padding: 40px 0;
    }
    .page-resources-zingplay-fishing-high-score-tips__paragraph,
    .page-resources-zingplay-fishing-high-score-tips__list,
    .page-resources-zingplay-fishing-high-score-tips__ordered-list {
        font-size: 0.95em;
    }
    .page-resources-zingplay-fishing-high-score-tips__card-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-zingplay-fishing-high-score-tips__item-list {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-zingplay-fishing-high-score-tips__item-card {
        width: 100%;
    }
    .page-resources-zingplay-fishing-high-score-tips__item-icon {
        width: 80px;
        height: 80px;
        min-width: 200px;
        min-height: 200px;
    }
    .page-resources-zingplay-fishing-high-score-tips__sub-title {
        font-size: 1.3em;
    }
    .page-resources-zingplay-fishing-high-score-tips__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
        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;
    }
    .page-resources-zingplay-fishing-high-score-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-resources-zingplay-fishing-high-score-tips__section,
    .page-resources-zingplay-fishing-high-score-tips__card,
    .page-resources-zingplay-fishing-high-score-tips__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-zingplay-fishing-high-score-tips__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-resources-zingplay-fishing-high-score-tips__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-resources-zingplay-fishing-high-score-tips__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-resources-zingplay-fishing-high-score-tips__faq-answer {
        padding: 0 15px;
    }
    .page-resources-zingplay-fishing-high-score-tips__faq-item.active .page-resources-zingplay-fishing-high-score-tips__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-resources-zingplay-fishing-high-score-tips__hero-content h1 {
        font-size: 1.5em;
    }
    .page-resources-zingplay-fishing-high-score-tips__hero-content p {
        font-size: 0.9em;
    }
    .page-resources-zingplay-fishing-high-score-tips__section-title {
        font-size: 1.5em;
    }
    .page-resources-zingplay-fishing-high-score-tips__item-card {
        width: 100%;
    }
}