/* style/games-introduction-fishing-games.css */
.page-games-introduction-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #1A2E47; /* Main dark background */
    line-height: 1.6;
}

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

.page-games-introduction-fishing-games__hero-section {
    background: linear-gradient(135deg, #1A2E47 0%, #0D1B2A 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-games-introduction-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:ocean,deep_sea,fishing_game,b29_club]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-games-introduction-fishing-games__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-games-introduction-fishing-games__hero-subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-games-introduction-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-games-introduction-fishing-games__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E47;
    border: 2px solid #FFD700;
}

.page-games-introduction-fishing-games__btn--primary:hover {
    background-color: #e6c200;
    color: #0D1B2A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.page-games-introduction-fishing-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-games-introduction-fishing-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.page-games-introduction-fishing-games__btn--inline {
    margin-left: 15px;
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #FFD700;
    color: #1A2E47;
    border: none;
    border-radius: 5px;
}

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

.page-games-introduction-fishing-games__btn--download {
    background-color: #28a745; /* Green for download */
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    margin-top: 15px;
}

.page-games-introduction-fishing-games__btn--download:hover {
    background-color: #218838;
}

.page-games-introduction-fishing-games__content-section,
.page-games-introduction-fishing-games__game-types,
.page-games-introduction-fishing-games__guide-section,
.page-games-introduction-fishing-games__tips-section,
.page-games-introduction-fishing-games__promotions-section,
.page-games-introduction-fishing-games__app-download,
.page-games-introduction-fishing-games__faq-section,
.page-games-introduction-fishing-games__call-to-action-final {
    padding: 60px 0;
    background-color: #1A2E47;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-games-introduction-fishing-games__content-section:nth-of-type(even),
.page-games-introduction-fishing-games__promotions-section {
    background-color: #122233;
}

.page-games-introduction-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-games-introduction-fishing-games__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #cccccc;
}

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

.page-games-introduction-fishing-games__feature-item {
    background-color: #0D1B2A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

.page-games-introduction-fishing-games__feature-item p {
    color: #b0b0b0;
    font-size: 0.95em;
}

.page-games-introduction-fishing-games__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #0D1B2A;
    border-radius: 10px;
    border: 2px dashed #FFD700;
}

.page-games-introduction-fishing-games__cta-text {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: bold;
}

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

.page-games-introduction-fishing-games__game-type-item {
    background-color: #0D1B2A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-games-introduction-fishing-games__game-type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.page-games-introduction-fishing-games__game-type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-games-introduction-fishing-games__game-type-item h3,
.page-games-introduction-fishing-games__game-type-item p {
    padding: 15px 20px;
}

.page-games-introduction-fishing-games__game-type-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-introduction-fishing-games__game-type-item p {
    color: #b0b0b0;
    font-size: 0.95em;
}

.page-games-introduction-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-games-introduction-fishing-games__guide-list li {
    background-color: #0D1B2A;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    border-left: 5px solid #FFD700;
}

.page-games-introduction-fishing-games__guide-step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-introduction-fishing-games__guide-list p {
    color: #cccccc;
    font-size: 1.05em;
    margin-bottom: 15px;
}

.page-games-introduction-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-games-introduction-fishing-games__tips-list li {
    background-color: #0D1B2A;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    border-right: 5px solid #FFD700;
}

.page-games-introduction-fishing-games__tip-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-introduction-fishing-games__tips-list p {
    color: #cccccc;
    font-size: 1.05em;
}

.page-games-introduction-fishing-games__image-block {
    text-align: center;
    margin-top: 50px;
}

.page-games-introduction-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 3px solid #FFD700;
}

.page-games-introduction-fishing-games__image-caption {
    margin-top: 20px;
    font-style: italic;
    color: #b0b0b0;
    font-size: 0.9em;
}

.page-games-introduction-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-games-introduction-fishing-games__promo-list li {
    background-color: #0D1B2A;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    border-top: 5px solid #FFD700;
}

.page-games-introduction-fishing-games__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-games-introduction-fishing-games__promo-list p {
    color: #cccccc;
    font-size: 1.05em;
}

.page-games-introduction-fishing-games__download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-games-introduction-fishing-games__download-item {
    text-align: center;
    background-color: #0D1B2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-games-introduction-fishing-games__download-item p {
    font-size: 1.2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-games-introduction-fishing-games__faq-item {
    background-color: #0D1B2A;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-games-introduction-fishing-games__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-games-introduction-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-games-introduction-fishing-games__faq-answer {
    color: #cccccc;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 10px;
}

.page-games-introduction-fishing-games__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-games-introduction-fishing-games__call-to-action-final {
    background-color: #0D1B2A;
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

.page-games-introduction-fishing-games__call-to-action-final .page-games-introduction-fishing-games__section-title {
    margin-bottom: 30px;
}

.page-games-introduction-fishing-games__call-to-action-final .page-games-introduction-fishing-games__text-block {
    margin-bottom: 40px;
}

.page-games-introduction-fishing-games__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    color: #1A2E47;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: floatEffect 2s ease-in-out infinite alternate;
}

.page-games-introduction-fishing-games__floating-promo-text {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
    color: #1A2E47;
}

.page-games-introduction-fishing-games__floating-promo-btn {
    background-color: #1A2E47;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-games-introduction-fishing-games__floating-promo-btn:hover {
    background-color: #0D1B2A;
    color: #e6c200;
}

.page-games-introduction-fishing-games .highlight {
    color: #FFD700;
}

/* Animations */
@keyframes floatEffect {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-introduction-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-games-introduction-fishing-games__section-title {
        font-size: 2em;
    }
    .page-games-introduction-fishing-games__feature-grid, .page-games-introduction-fishing-games__game-type-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-games-introduction-fishing-games__floating-promo {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        padding: 10px 15px;
        gap: 10px;
    }
    .page-games-introduction-fishing-games__floating-promo-text {
        font-size: 0.95em;
    }
    .page-games-introduction-fishing-games__floating-promo-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .page-games-introduction-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-games-introduction-fishing-games__hero-subtitle {
        font-size: 1.2em;
    }
    .page-games-introduction-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-games-introduction-fishing-games__text-block {
        font-size: 1em;
    }
    .page-games-introduction-fishing-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-introduction-fishing-games__guide-step-title,
    .page-games-introduction-fishing-games__tip-title,
    .page-games-introduction-fishing-games__promo-title,
    .page-games-introduction-fishing-games__faq-question {
        font-size: 1.3em;
    }
    .page-games-introduction-fishing-games__guide-list li,
    .page-games-introduction-fishing-games__tips-list li,
    .page-games-introduction-fishing-games__promo-list li,
    .page-games-introduction-fishing-games__faq-item {
        padding: 20px 20px;
    }
    .page-games-introduction-fishing-games__download-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-games-introduction-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-games-introduction-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-games-introduction-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-games-introduction-fishing-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-games-introduction-fishing-games__feature-grid, .page-games-introduction-fishing-games__game-type-grid {
        grid-template-columns: 1fr;
    }
    .page-games-introduction-fishing-games__floating-promo-text {
        font-size: 0.85em;
    }
    .page-games-introduction-fishing-games__floating-promo-btn {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}