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

/* Base styles for the fishing games page */
.page-game-types-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

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

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

.page-game-types-fishing-games__section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-game-types-fishing-games__section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-types-fishing-games__sub-heading {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-types-fishing-games__text {
    color: #495057;
    margin-bottom: 15px;
    text-align: left;
}

.page-game-types-fishing-games__link-inline {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-game-types-fishing-games__link-inline:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Buttons */
.page-game-types-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-game-types-fishing-games__btn--primary {
    background-color: #007bff;
    color: #fff;
}

.page-game-types-fishing-games__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-game-types-fishing-games__btn--secondary {
    background-color: #28a745;
    color: #fff;
}

.page-game-types-fishing-games__btn--secondary:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
}

.page-game-types-fishing-games__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-game-types-fishing-games__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.page-game-types-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 20px;
}

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

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

.page-game-types-fishing-games__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.page-game-types-fishing-games__hero-image-wrapper {
    position: relative;
    z-index: 1;
    margin-left: 50px;
    display: flex;
    align-items: center;
}

.page-game-types-fishing-games__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Advantages Section */
.page-game-types-fishing-games__advantages {
    background-color: #f8f9fa;
}

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

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

.page-game-types-fishing-games__advantage-item:hover {
    transform: translateY(-10px);
}

.page-game-types-fishing-games__advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #007bff;
}

.page-game-types-fishing-games__advantage-heading {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-game-types-fishing-games__advantage-text {
    color: #6c757d;
    font-size: 0.95em;
    text-align: justify;
}

/* Game Types Section */
.page-game-types-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-types-fishing-games__game-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-types-fishing-games__game-item:hover {
    transform: translateY(-10px);
}

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

.page-game-types-fishing-games__game-heading {
    font-size: 1.3em;
    color: #007bff;
    margin: 20px 0 10px;
}

.page-game-types-fishing-games__game-description {
    color: #6c757d;
    padding: 0 20px 20px;
    font-size: 0.9em;
    text-align: justify;
}

/* Guide Section */
.page-game-types-fishing-games__guide .page-game-types-fishing-games__container {
    text-align: left;
}

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

.page-game-types-fishing-games__step-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007bff;
}

.page-game-types-fishing-games__step-heading {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-game-types-fishing-games__step-text {
    color: #495057;
    font-size: 1em;
}

/* Tips Section */
.page-game-types-fishing-games__tips .page-game-types-fishing-games__container {
    text-align: left;
}

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

.page-game-types-fishing-games__tip-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #28a745;
}

.page-game-types-fishing-games__tip-heading {
    font-size: 1.3em;
    color: #28a745;
    margin-bottom: 10px;
}

.page-game-types-fishing-games__tip-text {
    color: #495057;
    font-size: 1em;
}

.page-game-types-fishing-games__cta-banner {
    background: linear-gradient(90deg, #007bff, #28a745);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.page-game-types-fishing-games__cta-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-fishing-games__cta-content {
    flex-grow: 1;
}

.page-game-types-fishing-games__cta-title {
    font-size: 2em;
    margin-bottom: 15px;
    color: #fff;
}

.page-game-types-fishing-games__cta-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

/* Promotions Section */
.page-game-types-fishing-games__promotions {
    background-color: #f8f9fa;
}

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

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

.page-game-types-fishing-games__promo-item:hover {
    transform: translateY(-10px);
}

.page-game-types-fishing-games__promo-image {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-game-types-fishing-games__promo-heading {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-game-types-fishing-games__promo-text {
    color: #6c757d;
    font-size: 0.95em;
    text-align: justify;
}

.page-game-types-fishing-games__view-all-promos {
    margin-top: 40px;
}

/* Support and App Section */
.page-game-types-fishing-games__support-app .page-game-types-fishing-games__container {
    text-align: left;
}

.page-game-types-fishing-games__flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.page-game-types-fishing-games__support-info {
    flex: 2;
    min-width: 300px;
}

.page-game-types-fishing-games__app-download {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-game-types-fishing-games__app-image {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-game-types-fishing-games__faq .page-game-types-fishing-games__container {
    text-align: left;
}

.page-game-types-fishing-games__accordion {
    margin-top: 40px;
}

.page-game-types-fishing-games__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-game-types-fishing-games__accordion-header {
    background-color: #007bff;
    color: #fff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-game-types-fishing-games__accordion-header:hover {
    background-color: #0056b3;
}

.page-game-types-fishing-games__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-game-types-fishing-games__accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-game-types-fishing-games__accordion-content p {
    padding: 15px 0;
    color: #495057;
}

/* Conclusion Section */
.page-game-types-fishing-games__conclusion {
    background-color: #e9ecef;
    padding-bottom: 80px;
}

.page-game-types-fishing-games__conclusion .page-game-types-fishing-games__text {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

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

    .page-game-types-fishing-games__hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

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

    .page-game-types-fishing-games__hero-image-wrapper {
        margin-left: 0;
    }

    .page-game-types-fishing-games__hero-image {
        max-width: 80%;
    }

    .page-game-types-fishing-games__hero-actions {
        justify-content: center;
    }

    .page-game-types-fishing-games__cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .page-game-types-fishing-games__cta-image {
        margin-bottom: 20px;
    }

    .page-game-types-fishing-games__flex-wrapper {
        flex-direction: column;
    }

    .page-game-types-fishing-games__support-info, .page-game-types-fishing-games__app-download {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-game-types-fishing-games__section-title {
        font-size: 2em;
    }

    .page-game-types-fishing-games__hero-title {
        font-size: 2.2em;
    }

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

    .page-game-types-fishing-games__hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-game-types-fishing-games__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-game-types-fishing-games__advantage-grid, .page-game-types-fishing-games__game-grid, .page-game-types-fishing-games__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-game-types-fishing-games__cta-title {
        font-size: 1.5em;
    }

    .page-game-types-fishing-games__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .page-game-types-fishing-games__container {
        padding: 0 15px;
    }

    .page-game-types-fishing-games__section {
        padding: 40px 0;
    }

    .page-game-types-fishing-games__hero-title {
        font-size: 1.8em;
    }

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

    .page-game-types-fishing-games__btn {
        width: 100%;
        margin: 5px 0;
    }

    .page-game-types-fishing-games__cta-banner {
        padding: 25px;
    }

    .page-game-types-fishing-games__cta-image {
        max-width: 120px;
    }

    .page-game-types-fishing-games__cta-title {
        font-size: 1.3em;
    }
}