/* style/games-fishing-games-strategy.css */
.page-games-fishing-games-strategy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    background-color: #0A192F;
}

.page-games-fishing-games-strategy .highlight {
    color: #FFD700;
}

.page-games-fishing-games-strategy .link-hi88 {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-games-fishing-games-strategy .link-hi88:hover {
    text-decoration: underline;
}

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

.page-games-fishing-games-strategy__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-games-strategy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_ocean_pattern,dark_blue,gold_accents]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-games-fishing-games-strategy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-games-fishing-games-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-games-fishing-games-strategy__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-games-fishing-games-strategy__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-games-fishing-games-strategy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-games-fishing-games-strategy__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-games-fishing-games-strategy__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-games-fishing-games-strategy__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-games-fishing-games-strategy__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-games-fishing-games-strategy__hero-image-wrapper {
    margin-top: 40px;
    max-width: 90%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-games-fishing-games-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-games-fishing-games-strategy__section {
    padding: 60px 0;
    position: relative;
}

.page-games-fishing-games-strategy__section:nth-of-type(even) {
    background-color: #0F2038;
}

.page-games-fishing-games-strategy__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-games-fishing-games-strategy__introduction p,
.page-games-fishing-games-strategy__management p,
.page-games-fishing-games-strategy__expert-tips p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

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

.page-games-fishing-games-strategy__strategy-item {
    background-color: #1a2a44;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #FFD700;
}

.page-games-fishing-games-strategy__strategy-item:hover {
    transform: translateY(-5px);
}

.page-games-fishing-games-strategy__strategy-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-games-fishing-games-strategy__strategy-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-games-fishing-games-strategy__strategy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 8px #FFD700);
}

.page-games-fishing-games-strategy__strategy-list {
    margin-top: 40px;
}

.page-games-fishing-games-strategy__strategy-item-full {
    background-color: #1a2a44;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    border-left: 5px solid #FFD700;
}

.page-games-fishing-games-strategy__strategy-item-full h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-fishing-games-strategy__strategy-item-full p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 15px;
    text-align: justify;
}

.page-games-fishing-games-strategy__content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-games-fishing-games-strategy__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-games-fishing-games-strategy__list li {
    background-color: #1a2a44;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    line-height: 1.7;
    color: #E0E0E0;
    border-left: 4px solid #FFD700;
    position: relative;
    padding-left: 40px;
}

.page-games-fishing-games-strategy__list li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.5em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-games-fishing-games-strategy__list li strong {
    color: #FFD700;
}

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

.page-games-fishing-games-strategy__benefit-item {
    background-color: #1a2a44;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #0A192F;
    transition: border-color 0.3s ease;
}

.page-games-fishing-games-strategy__benefit-item:hover {
    border-color: #FFD700;
}

.page-games-fishing-games-strategy__benefit-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-games-fishing-games-strategy__benefit-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #C0C0C0;
}

.page-games-fishing-games-strategy__benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-games-fishing-games-strategy__cta-register {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #0A192F;
}

.page-games-fishing-games-strategy__cta-register .page-games-fishing-games-strategy__section-title {
    color: #0A192F;
}

.page-games-fishing-games-strategy__cta-register .page-games-fishing-games-strategy__section-title::after {
    background-color: #0A192F;
}

.page-games-fishing-games-strategy__cta-register p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333333;
}

.page-games-fishing-games-strategy__cta-register .page-games-fishing-games-strategy__btn--primary {
    background-color: #0A192F;
    color: #FFD700;
    border-color: #0A192F;
}

.page-games-fishing-games-strategy__cta-register .page-games-fishing-games-strategy__btn--primary:hover {
    background-color: #1a2a44;
    border-color: #1a2a44;
    color: #FFD700;
}

.page-games-fishing-games-strategy__cta-register .page-games-fishing-games-strategy__btn--secondary {
    background-color: transparent;
    color: #0A192F;
    border-color: #0A192F;
}

.page-games-fishing-games-strategy__cta-register .page-games-fishing-games-strategy__btn--secondary:hover {
    background-color: #0A192F;
    color: #FFD700;
}

.page-games-fishing-games-strategy__faq-item {
    background-color: #1a2a44;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 3px solid #FFD700;
}

.page-games-fishing-games-strategy__faq-item h3 {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-fishing-games-strategy__faq-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
}

@media (max-width: 768px) {
    .page-games-fishing-games-strategy__hero-title {
        font-size: 2.5em;
    }

    .page-games-fishing-games-strategy__hero-subtitle {
        font-size: 1.1em;
    }

    .page-games-fishing-games-strategy__hero-buttons {
        flex-direction: column;
    }

    .page-games-fishing-games-strategy__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-games-fishing-games-strategy__section-title {
        font-size: 2em;
    }

    .page-games-fishing-games-strategy__strategy-grid,
    .page-games-fishing-games-strategy__benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-games-fishing-games-strategy__hero {
        padding: 60px 0;
    }

    .page-games-fishing-games-strategy__hero-title {
        font-size: 2em;
    }

    .page-games-fishing-games-strategy__hero-subtitle {
        font-size: 1em;
    }

    .page-games-fishing-games-strategy__btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-games-fishing-games-strategy__section {
        padding: 40px 0;
    }

    .page-games-fishing-games-strategy__section-title {
        font-size: 1.8em;
    }
}