/* style/game-guides-fishing-high-score-secrets.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #00BFFF;
    --accent-color: #FF4500;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark-card: rgba(255, 255, 255, 0.1);
}

.page-game-guides-fishing-high-score-secrets {
    color: var(--text-light);
    background-color: var(--dark-bg-1); /* Assuming --dark-bg-1 from shared.css is dark */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-game-guides-fishing-high-score-secrets__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-game-guides-fishing-high-score-secrets__section {
    padding: 80px 0;
    text-align: center;
}

.page-game-guides-fishing-high-score-secrets__section-title {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-fishing-high-score-secrets__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

/* Hero Section */
.page-game-guides-fishing-high-score-secrets__hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(255, 215, 0, 0.2));
}

.page-game-guides-fishing-high-score-secrets__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-game-guides-fishing-high-score-secrets__hero-title {
    font-size: 3.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-game-guides-fishing-high-score-secrets__hero-description {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-game-guides-fishing-high-score-secrets__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-game-guides-fishing-high-score-secrets__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.8); /* Allow slight dimming for text readability */
}

/* Buttons */
.page-game-guides-fishing-high-score-secrets__btn-primary,
.page-game-guides-fishing-high-score-secrets__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-game-guides-fishing-high-score-secrets__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.page-game-guides-fishing-high-score-secrets__btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-fishing-high-score-secrets__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-game-guides-fishing-high-score-secrets__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-fishing-high-score-secrets__btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Advantages Section */
.page-game-guides-fishing-high-score-secrets__section--advantages {
    background-color: rgba(0, 0, 0, 0.6);
    padding-bottom: 100px;
}

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

.page-game-guides-fishing-high-score-secrets__advantage-item {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-guides-fishing-high-score-secrets__advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 191, 255, 0.4);
}

.page-game-guides-fishing-high-score-secrets__advantage-icon {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-game-guides-fishing-high-score-secrets__advantage-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides-fishing-high-score-secrets__advantage-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Video Section */
.page-game-guides-fishing-high-score-secrets__section--video {
    background-color: rgba(0, 0, 0, 0.8);
}

.page-game-guides-fishing-high-score-secrets__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.page-game-guides-fishing-high-score-secrets__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    cursor: pointer;
}

.page-game-guides-fishing-high-score-secrets__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.page-game-guides-fishing-high-score-secrets__video-wrapper:hover .page-game-guides-fishing-high-score-secrets__video-overlay {
    opacity: 1;
}

.page-game-guides-fishing-high-score-secrets__video-caption {
    font-size: 1.1em;
    color: #cccccc;
    margin-top: 20px;
}

/* Strategies Section */
.page-game-guides-fishing-high-score-secrets__section--strategies {
    background-color: var(--dark-bg-1);
}

.page-game-guides-fishing-high-score-secrets__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides-fishing-high-score-secrets__strategy-card {
    background-color: var(--bg-dark-card);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.page-game-guides-fishing-high-score-secrets__strategy-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides-fishing-high-score-secrets__strategy-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Download CTA Section */
.page-game-guides-fishing-high-score-secrets__section--download-cta {
    background: linear-gradient(to right, #00BFFF, #FFD700);
    color: var(--text-dark);
    padding: 100px 0;
}

.page-game-guides-fishing-high-score-secrets__download-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.page-game-guides-fishing-high-score-secrets__download-text-content {
    flex: 1;
}

.page-game-guides-fishing-high-score-secrets__section--download-cta .page-game-guides-fishing-high-score-secrets__section-title {
    color: var(--text-dark);
    text-shadow: none;
}

.page-game-guides-fishing-high-score-secrets__section--download-cta .page-game-guides-fishing-high-score-secrets__text-block {
    color: var(--text-dark);
    font-size: 1.15em;
}

.page-game-guides-fishing-high-score-secrets__download-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-game-guides-fishing-high-score-secrets__download-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-game-guides-fishing-high-score-secrets__section--faq {
    background-color: rgba(0, 0, 0, 0.6);
    padding-bottom: 100px;
}

.page-game-guides-fishing-high-score-secrets__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-fishing-high-score-secrets__faq-item {
    background-color: var(--bg-dark-card);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-guides-fishing-high-score-secrets__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-game-guides-fishing-high-score-secrets__faq-question:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.page-game-guides-fishing-high-score-secrets__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1.2em;
    text-align: left;
    flex-grow: 1;
}

.page-game-guides-fishing-high-score-secrets__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.page-game-guides-fishing-high-score-secrets__faq-item.active .page-game-guides-fishing-high-score-secrets__faq-toggle {
    transform: rotate(45deg); /* Change to X or rotate for minus sign */
    color: var(--primary-color);
}

.page-game-guides-fishing-high-score-secrets__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #f0f0f0;
    text-align: left;
}

.page-game-guides-fishing-high-score-secrets__faq-item.active .page-game-guides-fishing-high-score-secrets__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 15px 25px 25px 25px;
}

.page-game-guides-fishing-high-score-secrets__faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-game-guides-fishing-high-score-secrets__hero-title {
        font-size: 3em;
    }

    .page-game-guides-fishing-high-score-secrets__hero-description {
        font-size: 1.2em;
    }

    .page-game-guides-fishing-high-score-secrets__section-title {
        font-size: 2.2em;
    }

    .page-game-guides-fishing-high-score-secrets__download-flex {
        flex-direction: column;
    }

    .page-game-guides-fishing-high-score-secrets__download-text-content,
    .page-game-guides-fishing-high-score-secrets__download-image-wrapper {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-game-guides-fishing-high-score-secrets {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-game-guides-fishing-high-score-secrets__hero-section {
        padding-bottom: 60px;
    }

    .page-game-guides-fishing-high-score-secrets__hero-title {
        font-size: 2.5em;
    }

    .page-game-guides-fishing-high-score-secrets__hero-description {
        font-size: 1.1em;
    }

    .page-game-guides-fishing-high-score-secrets__section {
        padding: 60px 0;
    }

    .page-game-guides-fishing-high-score-secrets__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-guides-fishing-high-score-secrets__btn-primary,
    .page-game-guides-fishing-high-score-secrets__btn-secondary {
        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;
        margin: 10px 0;
    }

    .page-game-guides-fishing-high-score-secrets__download-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Video responsive */
    .page-game-guides-fishing-high-score-secrets__video,
    .page-game-guides-fishing-high-score-secrets__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
        padding: 0 15px;
        overflow: hidden !important;
    }

    .page-game-guides-fishing-high-score-secrets__video-wrapper {
        padding-bottom: 56.25% !important; /* Maintain aspect ratio */
        height: 0 !important;
        position: relative !important;
    }

    /* Images responsive */
    .page-game-guides-fishing-high-score-secrets img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-game-guides-fishing-high-score-secrets__section,
    .page-game-guides-fishing-high-score-secrets__container,
    .page-game-guides-fishing-high-score-secrets__card,
    .page-game-guides-fishing-high-score-secrets__advantage-item,
    .page-game-guides-fishing-high-score-secrets__strategy-card,
    .page-game-guides-fishing-high-score-secrets__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-game-guides-fishing-high-score-secrets__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-game-guides-fishing-high-score-secrets__faq-question h3 {
        font-size: 1.1em;
    }

    .page-game-guides-fishing-high-score-secrets__faq-toggle {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-fishing-high-score-secrets__hero-title {
        font-size: 2em;
    }

    .page-game-guides-fishing-high-score-secrets__hero-description {
        font-size: 1em;
    }

    .page-game-guides-fishing-high-score-secrets__section-title {
        font-size: 1.5em;
    }

    .page-game-guides-fishing-high-score-secrets__btn-large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}