/* style/game-introduction-fishing-games.css */
.page-game-introduction-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-game-introduction-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-introduction-fishing-games__section:nth-child(even) {
    background-color: #e9ecef;
}

.page-game-introduction-fishing-games__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-introduction-fishing-games__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-introduction-fishing-games__hero-section {
    background: linear-gradient(135deg, #003366, #001a33);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-game-introduction-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjEyMDAiIGhlaWdodD0iODAwIiBmaWxsPSIjMDAzMzY2Ii8+CiAgPGNpcmNsZSBjeD0iNjAwIiBjeT0iNDAwIiByPSIyMDAiIGZpbGw9IiNGRkQ3MDAiIGZpbGwtb3BhY2l0eT0iMC4xIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNjAwIiByPSIxNTAiIGZpbGw9IiNGRkQ3MDAiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPgogIDxjaXJjbGUgY3g9IjkwMCIgY3k9IjIwMCIgcj0iMTcwIiBmaWxsPSIjRkZEMzAwIiBmaWwtb3BhY2l0eT0iMC4wNyIvPgo8L3N2Zz4=') no-repeat center center / cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-introduction-fishing-games__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
    padding: 0 15px;
}

.page-game-introduction-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-game-introduction-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-game-introduction-fishing-games__hero-image-wrapper {
    z-index: 1;
    max-width: 500px;
}

.page-game-introduction-fishing-games__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-introduction-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-game-introduction-fishing-games__btn--primary {
    background-color: #FFD700;
    color: #003366;
    border-color: #FFD700;
}

.page-game-introduction-fishing-games__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-introduction-fishing-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    margin-left: 20px;
}

.page-game-introduction-fishing-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-game-introduction-fishing-games__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-game-introduction-fishing-games__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-game-introduction-fishing-games__text-content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-introduction-fishing-games__text-content p {
    margin-bottom: 15px;
    color: #555;
}

.page-game-introduction-fishing-games__text-content ul {
    list-style: none;
    padding-left: 0;
}

.page-game-introduction-fishing-games__text-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.page-game-introduction-fishing-games__text-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #003366;
    font-weight: bold;
}

.page-game-introduction-fishing-games__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-game-introduction-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-game-introduction-fishing-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-game-introduction-fishing-games__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-game-introduction-fishing-games__feature-item p {
    color: #666;
}

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

.page-game-introduction-fishing-games__why-item {
    background-color: #003366;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-game-introduction-fishing-games__why-item:hover {
    background-color: #004488;
}

.page-game-introduction-fishing-games__why-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-introduction-fishing-games__why-item p {
    color: #e0e0e0;
}

.page-game-introduction-fishing-games__cta-section {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #003366;
    padding: 80px 0;
    text-align: center;
}

.page-game-introduction-fishing-games__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #003366;
}

.page-game-introduction-fishing-games__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-game-introduction-fishing-games__cta-buttons .page-game-introduction-fishing-games__btn {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-introduction-fishing-games__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 15px;
    }

    .page-game-introduction-fishing-games__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-game-introduction-fishing-games__hero-title {
        font-size: 2.8em;
    }

    .page-game-introduction-fishing-games__hero-description {
        font-size: 1.1em;
    }

    .page-game-introduction-fishing-games__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-game-introduction-fishing-games__content-grid,
    .page-game-introduction-fishing-games__content-grid--reverse {
        flex-direction: column;
    }

    .page-game-introduction-fishing-games__text-content,
    .page-game-introduction-fishing-games__image-wrapper {
        padding: 0;
    }

    .page-game-introduction-fishing-games__section-title {
        font-size: 2em;
    }

    .page-game-introduction-fishing-games__features-grid,
    .page-game-introduction-fishing-games__why-grid {
        grid-template-columns: 1fr;
    }

    .page-game-introduction-fishing-games__cta-title {
        font-size: 2.2em;
    }

    .page-game-introduction-fishing-games__cta-description {
        font-size: 1em;
    }

    .page-game-introduction-fishing-games__cta-buttons .page-game-introduction-fishing-games__btn {
        margin: 10px 0;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .page-game-introduction-fishing-games__hero-title {
        font-size: 2.2em;
    }

    .page-game-introduction-fishing-games__hero-description {
        font-size: 1em;
    }

    .page-game-introduction-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-game-introduction-fishing-games__cta-title {
        font-size: 1.8em;
    }

    .page-game-introduction-fishing-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}