/* style/game-guides-fishing-game-strategy.css */

:root {
    --nh88-primary-color: #003366;
    --nh88-secondary-color: #FFCC00;
    --nh88-text-light: #ffffff;
    --nh88-text-dark: #333333;
    --nh88-background-light: #f5f5f5;
    --nh88-background-dark: #002244;
    --nh88-accent-color: #ff9933;
}

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

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

.page-game-guides-fishing-game-strategy__hero-section {
    background: linear-gradient(135deg, var(--nh88-primary-color), var(--nh88-background-dark));
    color: var(--nh88-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-fishing-game-strategy__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,ocean,light_effect,nh88]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-game-guides-fishing-game-strategy__hero-section .page-game-guides-fishing-game-strategy__container {
    position: relative;
    z-index: 1;
}

.page-game-guides-fishing-game-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--nh88-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-game-guides-fishing-game-strategy__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--nh88-text-light);
}

.page-game-guides-fishing-game-strategy__cta-button {
    display: inline-block;
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fishing-game-strategy__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-game-guides-fishing-game-strategy__cta-button--secondary {
    background-color: var(--nh88-primary-color);
    color: var(--nh88-secondary-color);
    border: 2px solid var(--nh88-secondary-color);
}

.page-game-guides-fishing-game-strategy__cta-button--secondary:hover {
    background-color: var(--nh88-background-dark);
    border-color: #e6b800;
    transform: translateY(-3px);
}

.page-game-guides-fishing-game-strategy__introduction,
.page-game-guides-fishing-game-strategy__content-section,
.page-game-guides-fishing-game-strategy__call-to-action,
.page-game-guides-fishing-game-strategy__related-content {
    padding: 60px 0;
}

.page-game-guides-fishing-game-strategy__section-title {
    font-size: 2.5em;
    color: var(--nh88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-guides-fishing-game-strategy__sub-section-title {
    font-size: 1.8em;
    color: var(--nh88-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--nh88-secondary-color);
    padding-left: 15px;
}

.page-game-guides-fishing-game-strategy p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--nh88-text-dark);
}

.page-game-guides-fishing-game-strategy ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-game-guides-fishing-game-strategy ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--nh88-text-dark);
}

.page-game-guides-fishing-game-strategy ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--nh88-secondary-color);
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

.page-game-guides-fishing-game-strategy__image-full-width {
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.page-game-guides-fishing-game-strategy__image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-fishing-game-strategy__bg-secondary {
    background-color: var(--nh88-background-dark);
    color: var(--nh88-text-light);
}

.page-game-guides-fishing-game-strategy__bg-secondary .page-game-guides-fishing-game-strategy__section-title,
.page-game-guides-fishing-game-strategy__bg-secondary .page-game-guides-fishing-game-strategy__sub-section-title {
    color: var(--nh88-secondary-color);
}

.page-game-guides-fishing-game-strategy__bg-secondary p,
.page-game-guides-fishing-game-strategy__bg-secondary ul li {
    color: var(--nh88-text-light);
}

.page-game-guides-fishing-game-strategy__bg-secondary .page-game-guides-fishing-game-strategy__section-title::after {
    background-color: var(--nh88-text-light);
}

.page-game-guides-fishing-game-strategy__bg-secondary ul li::before {
    color: var(--nh88-secondary-color);
}

.page-game-guides-fishing-game-strategy__call-to-action {
    text-align: center;
    background-color: var(--nh88-primary-color);
    color: var(--nh88-text-light);
    padding: 80px 0;
}

.page-game-guides-fishing-game-strategy__call-to-action .page-game-guides-fishing-game-strategy__section-title {
    color: var(--nh88-secondary-color);
}

.page-game-guides-fishing-game-strategy__call-to-action .page-game-guides-fishing-game-strategy__section-title::after {
    background-color: var(--nh88-text-light);
}

.page-game-guides-fishing-game-strategy__call-to-action p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--nh88-text-light);
}

.page-game-guides-fishing-game-strategy__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-guides-fishing-game-strategy__related-content {
    background-color: var(--nh88-background-light);
    padding-bottom: 80px;
}

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

.page-game-guides-fishing-game-strategy__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.page-game-guides-fishing-game-strategy__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-game-guides-fishing-game-strategy__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-guides-fishing-game-strategy__card-title {
    font-size: 1.5em;
    color: var(--nh88-primary-color);
    margin: 20px 15px 10px 15px;
}

.page-game-guides-fishing-game-strategy__card-description {
    font-size: 1em;
    color: var(--nh88-text-dark);
    padding: 0 15px 20px 15px;
    min-height: 70px;
}

.page-game-guides-fishing-game-strategy__card-link {
    display: inline-block;
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-game-guides-fishing-game-strategy__card-link:hover {
    background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides-fishing-game-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides-fishing-game-strategy__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-guides-fishing-game-strategy__section-title {
        font-size: 2em;
    }
    .page-game-guides-fishing-game-strategy__sub-section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-fishing-game-strategy__hero-section {
        padding: 80px 0;
    }
    .page-game-guides-fishing-game-strategy__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-fishing-game-strategy__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides-fishing-game-strategy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-guides-fishing-game-strategy__introduction,
    .page-game-guides-fishing-game-strategy__content-section,
    .page-game-guides-fishing-game-strategy__call-to-action,
    .page-game-guides-fishing-game-strategy__related-content {
        padding: 40px 0;
    }
    .page-game-guides-fishing-game-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-guides-fishing-game-strategy__sub-section-title {
        font-size: 1.3em;
    }
    .page-game-guides-fishing-game-strategy p,
    .page-game-guides-fishing-game-strategy ul li {
        font-size: 1em;
    }
    .page-game-guides-fishing-game-strategy__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-guides-fishing-game-strategy__card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-guides-fishing-game-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-game-strategy__hero-subtitle {
        font-size: 1em;
    }
    .page-game-guides-fishing-game-strategy__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-guides-fishing-game-strategy__section-title {
        font-size: 1.5em;
    }
    .page-game-guides-fishing-game-strategy__sub-section-title {
        font-size: 1.2em;
    }
}