/* style/game-guides-fishing-tips.css */
:root {
    --primary-color: #4A148C; /* Deep Violet */
    --secondary-color: #FFD700; /* Bright Gold */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --background-light: #F8F8F8;
    --background-dark: #300C50; /* Darker shade of primary for contrast */
    --border-color: #E0E0E0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

.page-game-guides-fishing-tips a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides-fishing-tips a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-game-guides-fishing-tips h1,
.page-game-guides-fishing-tips h2,
.page-game-guides-fishing-tips h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-guides-fishing-tips h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
}

.page-game-guides-fishing-tips h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-guides-fishing-tips h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-game-guides-fishing-tips h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-guides-fishing-tips p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-game-guides-fishing-tips__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-game-guides-fishing-tips__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-game-guides-fishing-tips__hero-content {
    max-width: 900px;
}

.page-game-guides-fishing-tips__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-game-guides-fishing-tips__hero-content a {
    color: var(--secondary-color);
}

.page-game-guides-fishing-tips__hero-content a:hover {
    color: var(--text-light);
}

.page-game-guides-fishing-tips__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-game-guides-fishing-tips__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-fishing-tips__cta-button:hover {
    background-color: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    color: var(--primary-color);
    text-decoration: none;
}

.page-game-guides-fishing-tips__cta-button--large {
    padding: 18px 45px;
    font-size: 1.3em;
}

.page-game-guides-fishing-tips__center-button {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-game-guides-fishing-tips__why-sunwin {
    background-color: var(--background-light);
}

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

.page-game-guides-fishing-tips__feature-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-fishing-tips__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-fishing-tips__feature-icon {
    width: 100%;
    max-width: 250px; /* Ensure icon is not too small, min 200x200 */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
}

.page-game-guides-fishing-tips__feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
}

.page-game-guides-fishing-tips__basic-tips {
    background-color: #F0F2F5;
}

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

.page-game-guides-fishing-tips__tip-card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-fishing-tips__tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-fishing-tips__tip-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-game-guides-fishing-tips__tip-card h3 {
    padding: 20px 20px 0;
    font-size: 1.5em;
}

.page-game-guides-fishing-tips__tip-card p {
    padding: 0 20px 20px;
    font-size: 1em;
    color: var(--text-dark);
}

.page-game-guides-fishing-tips__advanced-tips {
    background-color: var(--background-light);
}

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

.page-game-guides-fishing-tips__advanced-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-fishing-tips__advanced-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-fishing-tips__advanced-icon {
    width: 100%;
    max-width: 200px; /* Min width 200px */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
}

.page-game-guides-fishing-tips__advanced-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
}

.page-game-guides-fishing-tips__common-mistakes {
    background-color: #F0F2F5;
}

.page-game-guides-fishing-tips__mistakes-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-guides-fishing-tips__mistakes-list li {
    background-color: var(--text-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.page-game-guides-fishing-tips__mistakes-list li h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-game-guides-fishing-tips__mistakes-list li p {
    font-size: 1em;
    color: var(--text-dark);
}

.page-game-guides-fishing-tips__download-sunwin {
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

.page-game-guides-fishing-tips__download-sunwin h2,
.page-game-guides-fishing-tips__download-sunwin p {
    color: var(--text-light);
}

.page-game-guides-fishing-tips__download-sunwin h2::after {
    background-color: var(--secondary-color);
}

.page-game-guides-fishing-tips__download-sunwin a {
    color: var(--secondary-color);
}

.page-game-guides-fishing-tips__download-sunwin a:hover {
    color: var(--text-light);
}

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

.page-game-guides-fishing-tips__step-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-game-guides-fishing-tips__step-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-game-guides-fishing-tips__step-icon {
    width: 100%;
    max-width: 200px; /* Min width 200px */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain;
}

.page-game-guides-fishing-tips__step-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-top: 0;
}

.page-game-guides-fishing-tips__step-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
}

.page-game-guides-fishing-tips__faq {
    background-color: var(--background-light);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--text-light);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F5F5F5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Sufficient height for content */
    padding: 15px 25px 25px;
    background: #F9F9F9;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer p {
    margin-bottom: 0;
}

.page-game-guides-fishing-tips__conclusion {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-game-guides-fishing-tips__conclusion h2,
.page-game-guides-fishing-tips__conclusion p {
    color: var(--text-light);
}

.page-game-guides-fishing-tips__conclusion h2::after {
    background-color: var(--secondary-color);
}

.page-game-guides-fishing-tips__conclusion a {
    color: var(--secondary-color);
}

.page-game-guides-fishing-tips__conclusion a:hover {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides-fishing-tips h1 {
        font-size: 2.2em;
    }
    .page-game-guides-fishing-tips h2 {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-tips h3 {
        font-size: 1.3em;
    }
    .page-game-guides-fishing-tips p {
        font-size: 1em;
    }
    .page-game-guides-fishing-tips__hero {
        padding: 60px 15px;
        flex-direction: column-reverse;
    }
    .page-game-guides-fishing-tips__hero-content {
        margin-top: 30px;
    }
    .page-game-guides-fishing-tips__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-game-guides-fishing-tips__cta-button--large {
        padding: 15px 35px;
        font-size: 1.2em;
    }
    .page-game-guides-fishing-tips__section {
        padding: 40px 15px;
    }
    .page-game-guides-fishing-tips__features-grid,
    .page-game-guides-fishing-tips__tips-grid,
    .page-game-guides-fishing-tips__advanced-grid,
    .page-game-guides-fishing-tips__download-steps {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 20px 20px;
    }
}

@media (max-width: 576px) {
    .page-game-guides-fishing-tips h1 {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-tips h2 {
        font-size: 1.6em;
    }
    .page-game-guides-fishing-tips h3 {
        font-size: 1.2em;
    }
    .page-game-guides-fishing-tips__hero-content p {
        font-size: 1em;
    }
    .page-game-guides-fishing-tips__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-game-guides-fishing-tips__cta-button--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-game-guides-fishing-tips__feature-icon,
    .page-game-guides-fishing-tips__advanced-icon,
    .page-game-guides-fishing-tips__step-icon {
        max-width: 180px;
        min-width: 180px;
        min-height: 180px;
    }
}