/* style/game-types-fishing-games.css */

:root {
    --j88-primary-color: #0A2342;
    --j88-secondary-color: #FFD700;
    --j88-text-light: #F0F0F0;
    --j88-text-dark: #333333;
    --j88-background-dark: #071A31;
    --j88-background-light: #E8EBF2;
    --j88-accent-gold-dark: #B39700;
    --j88-accent-blue-light: #54657b;
}

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

.page-game-types-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-types-fishing-games__hero-section {
    background: linear-gradient(135deg, var(--j88-primary-color), var(--j88-accent-blue-light));
    color: var(--j88-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:j88,fishing_game,hero_pattern,abstract]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-types-fishing-games__hero-section .page-game-types-fishing-games__container {
    position: relative;
    z-index: 1;
}

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

.page-game-types-fishing-games__hero-description {
    font-size: 1.25em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-types-fishing-games__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-game-types-fishing-games__btn {
    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;
    border: none;
}

.page-game-types-fishing-games__btn--primary {
    background-color: var(--j88-secondary-color);
    color: var(--j88-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-fishing-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-types-fishing-games__btn--secondary {
    background-color: transparent;
    color: var(--j88-secondary-color);
    border: 2px solid var(--j88-secondary-color);
}

.page-game-types-fishing-games__btn--secondary:hover {
    background-color: var(--j88-secondary-color);
    color: var(--j88-primary-color);
    transform: translateY(-3px);
}

.page-game-types-fishing-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-game-types-fishing-games__section {
    padding: 60px 0;
    background-color: var(--j88-background-light);
}

.page-game-types-fishing-games__section:nth-of-type(even) {
    background-color: #F8F9FA;
}

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

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

.page-game-types-fishing-games__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--j88-text-dark);
}

.page-game-types-fishing-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-game-types-fishing-games__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-game-types-fishing-games__text-content {
    flex: 1;
    font-size: 1.05em;
    color: var(--j88-text-dark);
}

.page-game-types-fishing-games__text-content p {
    margin-bottom: 20px;
}

.page-game-types-fishing-games__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-game-types-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-game-types-fishing-games__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-types-fishing-games__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-game-types-fishing-games__feature-title {
    font-size: 1.4em;
    color: var(--j88-primary-color);
    margin-bottom: 15px;
}

.page-game-types-fishing-games__feature-item p {
    color: var(--j88-text-dark);
    font-size: 0.95em;
}

.page-game-types-fishing-games__cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.page-game-types-fishing-games__game-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-game-types-fishing-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-game-types-fishing-games__game-card-title {
    font-size: 1.5em;
    color: var(--j88-primary-color);
    margin: 20px 15px 10px 15px;
}

.page-game-types-fishing-games__game-card-description {
    font-size: 0.95em;
    color: var(--j88-text-dark);
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-types-fishing-games__game-card .page-game-types-fishing-games__btn {
    margin-top: auto;
    margin-bottom: 20px;
    align-self: center;
}

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

.page-game-types-fishing-games__steps-list li {
    background-color: #FFFFFF;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 90px;
}

.page-game-types-fishing-games__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 30px;
    top: 30px;
    background-color: var(--j88-secondary-color);
    color: var(--j88-primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.page-game-types-fishing-games__step-title {
    font-size: 1.6em;
    color: var(--j88-primary-color);
    margin-bottom: 10px;
}

.page-game-types-fishing-games__steps-list p {
    font-size: 1.05em;
    color: var(--j88-text-dark);
}

.page-game-types-fishing-games__strategy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-game-types-fishing-games__strategy-list li {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid var(--j88-secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: var(--j88-text-dark);
}

.page-game-types-fishing-games__strategy-list li strong {
    color: var(--j88-primary-color);
}

.page-game-types-fishing-games__promotion-list {
    list-style: disc;
    padding-left: 40px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05em;
    color: var(--j88-text-dark);
}

.page-game-types-fishing-games__promotion-list li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-game-types-fishing-games__promotion-list li strong {
    color: var(--j88-primary-color);
}

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

.page-game-types-fishing-games__app-card {
    background-color: var(--j88-primary-color);
    color: var(--j88-text-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing-games__app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing-games__app-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 3px 5px rgba(255, 215, 0, 0.5));
}

.page-game-types-fishing-games__app-title {
    font-size: 1.8em;
    color: var(--j88-secondary-color);
    margin-bottom: 15px;
}

.page-game-types-fishing-games__app-description {
    font-size: 1.05em;
    margin-bottom: 30px;
}

.page-game-types-fishing-games__app-card .page-game-types-fishing-games__btn--small {
    background-color: var(--j88-secondary-color);
    color: var(--j88-primary-color);
}

.page-game-types-fishing-games__app-card .page-game-types-fishing-games__btn--small:hover {
    background-color: #e6c200;
}

.page-game-types-fishing-games__faq-items {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-types-fishing-games__faq-item {
    background-color: #FFFFFF;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.page-game-types-fishing-games__faq-question {
    font-size: 1.3em;
    color: var(--j88-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-types-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--j88-secondary-color);
    transition: transform 0.3s ease;
}

.page-game-types-fishing-games__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-types-fishing-games__faq-answer {
    font-size: 1.05em;
    color: var(--j88-text-dark);
    display: none;
    margin-top: 15px;
}

.page-game-types-fishing-games__faq-answer.active {
    display: block;
}

.page-game-types-fishing-games__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-game-types-fishing-games__floating-btn {
    background-color: var(--j88-secondary-color);
    color: var(--j88-primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
}

.page-game-types-fishing-games__floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.8);
}

.page-game-types-fishing-games__floating-icon {
    width: 30px;
    height: 30px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-types-fishing-games__hero-title {
        font-size: 2.5em;
    }
    .page-game-types-fishing-games__hero-description {
        font-size: 1.1em;
    }
    .page-game-types-fishing-games__section-title {
        font-size: 2em;
    }
    .page-game-types-fishing-games__content-wrapper {
        flex-direction: column;
    }
    .page-game-types-fishing-games__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-game-types-fishing-games__image-wrapper {
        margin-top: 30px;
    }
    .page-game-types-fishing-games__steps-list li {
        padding-left: 30px;
        padding-top: 70px;
    }
    .page-game-types-fishing-games__steps-list li::before {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-game-types-fishing-games__hero-title {
        font-size: 2em;
    }
    .page-game-types-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-game-types-fishing-games__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-types-fishing-games__btn {
        width: 100%;
    }
    .page-game-types-fishing-games__section {
        padding: 40px 0;
    }
    .page-game-types-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-types-fishing-games__description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-game-types-fishing-games__feature-item,
    .page-game-types-fishing-games__game-card,
    .page-game-types-fishing-games__app-card {
        padding: 20px;
    }
    .page-game-types-fishing-games__floating-promo {
        bottom: 10px;
        right: 10px;
    }
    .page-game-types-fishing-games__floating-btn {
        padding: 10px 15px;
        font-size: 1em;
    }
    .page-game-types-fishing-games__floating-icon {
        width: 25px;
        height: 25px;
    }
}