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

.page-slots-games-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A192F; /* Primary dark background */
}

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

.page-slots-games-fishing-games__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a355e 100%); /* Dark blue gradient */
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-games-fishing-games__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    opacity: 0.3;
    z-index: 0;
}

.page-slots-games-fishing-games__title {
    font-size: 3.5em;
    color: #FFD700; /* Secondary gold for titles */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-fishing-games__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #E0E0E0;
}

.page-slots-games-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-slots-games-fishing-games__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    border: 2px solid #FFD700;
    margin: 0 10px;
}

.page-slots-games-fishing-games__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-slots-games-fishing-games__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
    margin: 0 10px;
}

.page-slots-games-fishing-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-slots-games-fishing-games__btn--centered {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

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

.page-slots-games-fishing-games__section--dark {
    background-color: #0F213F; /* Slightly lighter dark blue */
}

.page-slots-games-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
}

.page-slots-games-fishing-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-slots-games-fishing-games__feature-item,
.page-slots-games-fishing-games__game-card,
.page-slots-games-fishing-games__guide-item {
    background-color: #1a2f4a; /* Darker blue for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-fishing-games__feature-item:hover,
.page-slots-games-fishing-games__game-card:hover,
.page-slots-games-fishing-games__guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-games-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-slots-games-fishing-games__feature-title,
.page-slots-games-fishing-games__game-title,
.page-slots-games-fishing-games__guide-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for sub-titles */
    margin-bottom: 15px;
}

.page-slots-games-fishing-games__game-thumbnail {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 2px solid #FFD700;
}

.page-slots-games-fishing-games__game-desc {
    font-size: 0.95em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

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

.page-slots-games-fishing-games__text-link:hover {
    text-decoration: underline;
}

.page-slots-games-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-slots-games-fishing-games__promo-list li {
    background-color: #1a2f4a;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.05em;
    color: #E0E0E0;
    border-left: 5px solid #FFD700;
}

.page-slots-games-fishing-games__promo-list li::before {
    content: '★';
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-slots-games-fishing-games__app-download-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.page-slots-games-fishing-games__app-content {
    flex: 1;
    min-width: 300px;
}

.page-slots-games-fishing-games__app-image-wrapper {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-slots-games-fishing-games__app-screenshot {
    max-width: 300px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #FFD700;
}

.page-slots-games-fishing-games__qr-code {
    width: 150px;
    height: 150px;
    padding: 10px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-fishing-games__app-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-slots-games-fishing-games__app-benefits li {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-slots-games-fishing-games__app-benefits li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-slots-games-fishing-games__commitment-image {
    max-width: 500px;
    width: 100%;
    margin-top: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.page-slots-games-fishing-games__faq-accordion {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-games-fishing-games__faq-item {
    background-color: #1a2f4a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    text-align: left;
}

.page-slots-games-fishing-games__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    color: #FFD700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-slots-games-fishing-games__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-slots-games-fishing-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #E0E0E0;
}

.page-slots-games-fishing-games__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

.page-slots-games-fishing-games__faq-item.active .page-slots-games-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
    padding-bottom: 20px;
}

.page-slots-games-fishing-games__cta-bottom {
    background: linear-gradient(45deg, #0A192F, #0F213F);
    padding: 80px 0;
    text-align: center;
}

.page-slots-games-fishing-games__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-fishing-games__title {
        font-size: 2.8em;
    }
    .page-slots-games-fishing-games__section-title {
        font-size: 2em;
    }
    .page-slots-games-fishing-games__app-download-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-slots-games-fishing-games__app-content,
    .page-slots-games-fishing-games__app-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-slots-games-fishing-games__app-benefits {
        text-align: center;
        padding: 0 20px;
    }
    .page-slots-games-fishing-games__app-benefits li {
        justify-content: center;
        padding-left: 0;
    }
    .page-slots-games-fishing-games__app-benefits li::before {
        position: static;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .page-slots-games-fishing-games__hero {
        padding: 80px 0 40px;
    }
    .page-slots-games-fishing-games__title {
        font-size: 2.2em;
    }
    .page-slots-games-fishing-games__description {
        font-size: 1em;
    }
    .page-slots-games-fishing-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slots-games-fishing-games__section {
        padding: 60px 0;
    }
    .page-slots-games-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-fishing-games__features-grid,
    .page-slots-games-fishing-games__game-list,
    .page-slots-games-fishing-games__guide-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-games-fishing-games__cta-title {
        font-size: 2em;
    }
    .page-slots-games-fishing-games__cta-description {
        font-size: 1em;
    }
    .page-slots-games-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-fishing-games__btn--centered {
        width: 100%;
    }
    .page-slots-games-fishing-games__hero-image {
        max-width: 800px;
    }
}

@media (max-width: 480px) {
    .page-slots-games-fishing-games__hero {
        padding: 60px 0 30px;
    }
    .page-slots-games-fishing-games__title {
        font-size: 1.8em;
    }
    .page-slots-games-fishing-games__description {
        font-size: 0.9em;
    }
    .page-slots-games-fishing-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 0 5px;
    }
    .page-slots-games-fishing-games__section {
        padding: 40px 0;
    }
    .page-slots-games-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-slots-games-fishing-games__feature-title,
    .page-slots-games-fishing-games__game-title,
    .page-slots-games-fishing-games__guide-title {
        font-size: 1.4em;
    }
    .page-slots-games-fishing-games__cta-title {
        font-size: 1.8em;
    }
    .page-slots-games-fishing-games__promo-list li,
    .page-slots-games-fishing-games__app-benefits li {
        font-size: 0.95em;
    }
    .page-slots-games-fishing-games__faq-question {
        font-size: 1.1em;
    }
    .page-slots-games-fishing-games__hero-image {
        max-width: 600px;
    }
}