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

.page-game-guides-fishing-game-high-score-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    line-height: 1.6;
    background-color: #0F1A25; /* Slightly darker than main primary for contrast */
}

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

.page-game-guides-fishing-game-high-score-guide .bg-dark-blue {
    background-color: #1A2E40;
}

.page-game-guides-fishing-game-high-score-guide .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides-fishing-game-high-score-guide .text-center {
    text-align: center;
}

.page-game-guides-fishing-game-high-score-guide .text-gold {
    color: #FFD700;
}

.page-game-guides-fishing-game-high-score-guide .highlight-text {
    color: #FFD700;
    font-weight: bold;
}

.page-game-guides-fishing-game-high-score-guide__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #FFFFFF;
    background-color: #1A2E40;
}

.page-game-guides-fishing-game-high-score-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

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

.page-game-guides-fishing-game-high-score-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-fishing-game-high-score-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-guides-fishing-game-high-score-guide__hero-btn,
.page-game-guides-fishing-game-high-score-guide__cta-btn,
.page-game-guides-fishing-game-high-score-guide__responsible-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E40;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-guides-fishing-game-high-score-guide__hero-btn:hover,
.page-game-guides-fishing-game-high-score-guide__cta-btn:hover,
.page-game-guides-fishing-game-high-score-guide__responsible-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-guides-fishing-game-high-score-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-guides-fishing-game-high-score-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-guides-fishing-game-high-score-guide__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-game-guides-fishing-game-high-score-guide__strategy-item {
    background-color: #0F1A25;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-guides-fishing-game-high-score-guide__strategy-img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

.page-game-guides-fishing-game-high-score-guide__strategy-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides-fishing-game-high-score-guide__strategy-item p {
    font-size: 1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-game-guides-fishing-game-high-score-guide__strategy-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    margin-top: 15px;
}

.page-game-guides-fishing-game-high-score-guide__strategy-item li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-game-guides-fishing-game-high-score-guide__strategy-item li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-game-guides-fishing-game-high-score-guide__tech-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides-fishing-game-high-score-guide__tech-item {
    background-color: #1A2E40;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-fishing-game-high-score-guide__tech-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides-fishing-game-high-score-guide__tech-item p {
    font-size: 1.1em;
    text-align: justify;
}

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

.page-game-guides-fishing-game-high-score-guide__advantage-item {
    background-color: #0F1A25;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-game-guides-fishing-game-high-score-guide__advantage-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides-fishing-game-high-score-guide__advantage-item p {
    font-size: 0.95em;
}

.page-game-guides-fishing-game-high-score-guide__interface-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.page-game-guides-fishing-game-high-score-guide__cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-game-guides-fishing-game-high-score-guide__promo-banner {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-fishing-game-high-score-guide__accordion {
    margin-top: 40px;
}

.page-game-guides-fishing-game-high-score-guide__accordion-item {
    background-color: #0F1A25;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fishing-game-high-score-guide__accordion-header {
    background-color: #1A2E40;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-game-guides-fishing-game-high-score-guide__accordion-header:hover {
    background-color: #2a4a6b;
}

.page-game-guides-fishing-game-high-score-guide__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-guides-fishing-game-high-score-guide__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-guides-fishing-game-high-score-guide__accordion-content {
    padding: 0 25px;
    background-color: #0F1A25;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-guides-fishing-game-high-score-guide__accordion-content p {
    padding: 15px 0;
    margin: 0;
    font-size: 1.05em;
    text-align: justify;
}

.page-game-guides-fishing-game-high-score-guide__responsible-gaming p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-game-guides-fishing-game-high-score-guide__responsible-gaming a {
    color: #FFD700;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides-fishing-game-high-score-guide__hero {
        height: 500px;
    }
    .page-game-guides-fishing-game-high-score-guide__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides-fishing-game-high-score-guide__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-guides-fishing-game-high-score-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-fishing-game-high-score-guide__hero {
        height: 400px;
    }
    .page-game-guides-fishing-game-high-score-guide__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-fishing-game-high-score-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides-fishing-game-high-score-guide__hero-btn,
    .page-game-guides-fishing-game-high-score-guide__cta-btn,
    .page-game-guides-fishing-game-high-score-guide__responsible-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-guides-fishing-game-high-score-guide__section-title {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-game-high-score-guide__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-fishing-game-high-score-guide__advantages-grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-fishing-game-high-score-guide__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-game-guides-fishing-game-high-score-guide__accordion-content p {
        padding: 10px 0;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-fishing-game-high-score-guide__hero {
        height: 350px;
    }
    .page-game-guides-fishing-game-high-score-guide__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-game-high-score-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-guides-fishing-game-high-score-guide__section-title {
        font-size: 1.5em;
    }
    .page-game-guides-fishing-game-high-score-guide__strategy-heading,
    .page-game-guides-fishing-game-high-score-guide__tech-heading,
    .page-game-guides-fishing-game-high-score-guide__advantage-heading {
        font-size: 1.4em;
    }
}