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

:root {
    --page-games-fishing-games-primary-color: #0A1931;
    --page-games-fishing-games-secondary-color: #FFC107;
    --page-games-fishing-games-text-light: #F8F9FA;
    --page-games-fishing-games-text-dark: #212529;
    --page-games-fishing-games-background-dark: #0A1931;
    --page-games-fishing-games-background-light: #FFFFFF;
    --page-games-fishing-games-accent-light: #FFD700;
    --page-games-fishing-games-accent-dark: #B38705;
}

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

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

.page-games-fishing-games__hero-section {
    background: linear-gradient(135deg, var(--page-games-fishing-games-primary-color) 0%, #1a3a6c 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:ocean,abstract,pattern]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-games-fishing-games__hero-title {
    font-size: 3.5em;
    color: var(--page-games-fishing-games-secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-fishing-games__hero-description {
    font-size: 1.3em;
    color: var(--page-games-fishing-games-text-light);
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.page-games-fishing-games__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-games-fishing-games__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-games-fishing-games__button--primary {
    background-color: var(--page-games-fishing-games-secondary-color);
    color: var(--page-games-fishing-games-primary-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-games-fishing-games__button--primary:hover {
    background-color: var(--page-games-fishing-games-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-games-fishing-games__button--secondary {
    background-color: transparent;
    color: var(--page-games-fishing-games-secondary-color);
    border: 2px solid var(--page-games-fishing-games-secondary-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.page-games-fishing-games__button--secondary:hover {
    background-color: var(--page-games-fishing-games-secondary-color);
    color: var(--page-games-fishing-games-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.page-games-fishing-games__button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-games-fishing-games__button--center {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

.page-games-fishing-games__section {
    padding: 80px 0;
    text-align: center;
}

.page-games-fishing-games__section:nth-of-type(even) {
    background-color: #1A2B47;
}

.page-games-fishing-games__section-title {
    font-size: 2.8em;
    color: var(--page-games-fishing-games-secondary-color);
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-games-fishing-games__section-intro {
    font-size: 1.2em;
    color: var(--page-games-fishing-games-text-light);
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

/* Why SUNWIN section */
.page-games-fishing-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-fishing-games__feature-item {
    background-color: #1A2B47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-games-fishing-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-games-fishing-games-secondary-color));
}

.page-games-fishing-games__feature-title {
    font-size: 1.6em;
    color: var(--page-games-fishing-games-secondary-color);
    margin-bottom: 15px;
}

.page-games-fishing-games__feature-text {
    font-size: 1em;
    color: var(--page-games-fishing-games-text-light);
    line-height: 1.6;
}

/* Popular Games section */
.page-games-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-fishing-games__game-card {
    background-color: var(--page-games-fishing-games-primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-games-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--page-games-fishing-games-secondary-color);
}

.page-games-fishing-games__game-title {
    font-size: 1.8em;
    color: var(--page-games-fishing-games-secondary-color);
    margin: 20px 15px 10px 15px;
}

.page-games-fishing-games__game-description {
    font-size: 0.95em;
    color: var(--page-games-fishing-games-text-light);
    padding: 0 15px 20px 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.page-games-fishing-games__game-card .page-games-fishing-games__button {
    margin: 0 15px 20px 15px;
    width: calc(100% - 30px);
}

.page-games-fishing-games__call-to-action-text {
    font-size: 1.2em;
    color: var(--page-games-fishing-games-secondary-color);
    margin-top: 50px;
    font-weight: bold;
}

/* How To Play section */
.page-games-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-fishing-games__step-item {
    background-color: #1A2B47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: relative;
    padding-top: 80px;
}

.page-games-fishing-games__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--page-games-fishing-games-secondary-color);
    color: var(--page-games-fishing-games-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.5);
}

.page-games-fishing-games__step-title {
    font-size: 1.8em;
    color: var(--page-games-fishing-games-secondary-color);
    margin-bottom: 15px;
}

.page-games-fishing-games__step-text {
    font-size: 1em;
    color: var(--page-games-fishing-games-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tips & Strategies section */
.page-games-fishing-games__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-fishing-games__tip-item {
    background-color: var(--page-games-fishing-games-primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    border-left: 5px solid var(--page-games-fishing-games-secondary-color);
}

.page-games-fishing-games__tip-title {
    font-size: 1.6em;
    color: var(--page-games-fishing-games-secondary-color);
    margin-bottom: 15px;
}

.page-games-fishing-games__tip-text {
    font-size: 1em;
    color: var(--page-games-fishing-games-text-light);
    line-height: 1.6;
}

/* Promotions section */
.page-games-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-fishing-games__promo-card {
    background-color: #1A2B47;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fishing-games__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-games-fishing-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--page-games-fishing-games-secondary-color);
}

.page-games-fishing-games__promo-title {
    font-size: 1.6em;
    color: var(--page-games-fishing-games-secondary-color);
    margin: 20px 15px 10px 15px;
}

.page-games-fishing-games__promo-description {
    font-size: 0.95em;
    color: var(--page-games-fishing-games-text-light);
    padding: 0 15px 20px 15px;
    line-height: 1.6;
}

/* Download App section */
.page-games-fishing-games__download-app {
    background-color: var(--page-games-fishing-games-primary-color);
}

.page-games-fishing-games__download-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.page-games-fishing-games__download-content {
    flex: 1;
}

.page-games-fishing-games__download-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-games-fishing-games__download-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--page-games-fishing-games-secondary-color);
}

.page-games-fishing-games__app-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0 40px 0;
}

.page-games-fishing-games__app-benefits li {
    font-size: 1.1em;
    color: var(--page-games-fishing-games-text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.page-games-fishing-games__app-benefits li img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-games-fishing-games__app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-games-fishing-games__button--app {
    background-color: var(--page-games-fishing-games-secondary-color);
    color: var(--page-games-fishing-games-primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-games-fishing-games__button--app:hover {
    background-color: var(--page-games-fishing-games-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-games-fishing-games__app-icon {
    width: 24px;
    height: 24px;
}

/* FAQ section */
.page-games-fishing-games__faq {
    background-color: #1A2B47;
}

.page-games-fishing-games__accordion {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-fishing-games__accordion-item {
    background-color: var(--page-games-fishing-games-primary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-games-fishing-games__accordion-header {
    width: 100%;
    background-color: var(--page-games-fishing-games-primary-color);
    color: var(--page-games-fishing-games-secondary-color);
    padding: 20px 25px;
    border: none;
    text-align: left;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-games-fishing-games__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-games-fishing-games__accordion-header.active {
    background-color: #1A2B47;
}

.page-games-fishing-games__accordion-header.active::after {
    transform: rotate(45deg);
}

.page-games-fishing-games__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-games-fishing-games__accordion-content p {
    font-size: 1em;
    color: var(--page-games-fishing-games-text-light);
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-games-fishing-games__link {
    color: var(--page-games-fishing-games-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-games-fishing-games__link:hover {
    text-decoration: underline;
}

/* Conclusion section */
.page-games-fishing-games__conclusion {
    background-color: var(--page-games-fishing-games-primary-color);
    padding-bottom: 100px;
}

.page-games-fishing-games__conclusion-text {
    font-size: 1.2em;
    color: var(--page-games-fishing-games-text-light);
    max-width: 900px;
    margin: 0 auto 25px auto;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-games-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-games-fishing-games__download-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-games-fishing-games__download-content {
        order: 2;
    }
    .page-games-fishing-games__download-image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }
    .page-games-fishing-games__app-buttons {
        justify-content: center;
    }
    .page-games-fishing-games__app-benefits {
        text-align: left;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .page-games-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-games-fishing-games__hero-description {
        font-size: 1.1em;
    }
    .page-games-fishing-games__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-fishing-games__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-games-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__section-intro {
        font-size: 1em;
    }
    .page-games-fishing-games__feature-item, .page-games-fishing-games__game-card, .page-games-fishing-games__step-item, .page-games-fishing-games__tip-item, .page-games-fishing-games__promo-card {
        padding: 25px;
    }
    .page-games-fishing-games__step-number {
        left: 25px;
    }
    .page-games-fishing-games__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-games-fishing-games__accordion-content p {
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-games-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-games-fishing-games__hero-description {
        font-size: 0.9em;
    }
    .page-games-fishing-games__button {
        font-size: 0.9em;
        padding: 12px 20px;
    }
    .page-games-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-games-fishing-games__section-intro {
        font-size: 0.9em;
    }
    .page-games-fishing-games__feature-title, .page-games-fishing-games__game-title, .page-games-fishing-games__step-title, .page-games-fishing-games__tip-title, .page-games-fishing-games__promo-title {
        font-size: 1.4em;
    }
    .page-games-fishing-games__app-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-games-fishing-games__button--app {
        width: 80%;
        justify-content: center;
    }
}