/* style/games-jili-fishing-details.css */
.page-games-jili-fishing-details {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-games-jili-fishing-details__hero {
    background: linear-gradient(135deg, #0A192F 0%, #303e5c 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-games-jili-fishing-details__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-games-jili-fishing-details__hero-subtitle {
    font-size: 1.5em;
    color: #f5e6d0; /* Light text for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-games-jili-fishing-details__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
}

.page-games-jili-fishing-details__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-games-jili-fishing-details__btn--secondary {
    background-color: #2a3b5b; /* Darker blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 1px solid #FFD700;
    margin-left: 20px;
}

.page-games-jili-fishing-details__btn--secondary:hover {
    background-color: #3e527a; /* Lighter dark blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-games-jili-fishing-details__btn--contact {
    background-color: #FFD700;
    color: #0A192F;
    margin-top: 15px;
}

.page-games-jili-fishing-details__btn--contact:hover {
    background-color: #e6c200;
}

.page-games-jili-fishing-details__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-games-jili-fishing-details__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-games-jili-fishing-details__section:last-of-type {
    border-bottom: none;
}

.page-games-jili-fishing-details__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-games-jili-fishing-details__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-games-jili-fishing-details__subsection-title {
    font-size: 1.8em;
    color: #f5e6d0; /* Light text for subsection titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-games-jili-fishing-details p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #c0c0c0; /* Slightly lighter gray for body text */
}

.page-games-jili-fishing-details a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-games-jili-fishing-details a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-games-jili-fishing-details ul,
.page-games-jili-fishing-details ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.page-games-jili-fishing-details ul li,
.page-games-jili-fishing-details ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-games-jili-fishing-details .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-games-jili-fishing-details__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-games-jili-fishing-details__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

/* Accordion for FAQ section */
.page-games-jili-fishing-details__accordion {
    margin-top: 30px;
}

.page-games-jili-fishing-details__accordion-item {
    background-color: #1a2a47; /* Slightly lighter dark blue */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-games-jili-fishing-details__accordion-header {
    background-color: #2a3b5b; /* Darker blue for header */
    color: #FFD700; /* Gold text */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-games-jili-fishing-details__accordion-header:hover {
    background-color: #3e527a;
}

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

.page-games-jili-fishing-details__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

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

.page-games-jili-fishing-details__accordion-content.active {
    max-height: 500px; /* Adjust as needed for content length */
    padding: 15px 25px;
}

.page-games-jili-fishing-details__accordion-content p {
    color: #c0c0c0;
    margin-bottom: 10px;
}

.page-games-jili-fishing-details__cta {
    text-align: center;
    background-color: #1a2a47;
    padding: 80px 0;
}

.page-games-jili-fishing-details__cta .page-games-jili-fishing-details__section-title {
    margin-bottom: 20px;
}

.page-games-jili-fishing-details__cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f5e6d0;
}

.page-games-jili-fishing-details__cta .page-games-jili-fishing-details__btn {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-games-jili-fishing-details__hero-title {
        font-size: 2.5em;
    }

    .page-games-jili-fishing-details__hero-subtitle {
        font-size: 1.2em;
    }

    .page-games-jili-fishing-details__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-games-jili-fishing-details__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-games-jili-fishing-details__section-title {
        font-size: 2em;
    }

    .page-games-jili-fishing-details__subsection-title {
        font-size: 1.5em;
    }

    .page-games-jili-fishing-details__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-games-jili-fishing-details__cta .page-games-jili-fishing-details__btn {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-games-jili-fishing-details__hero-title {
        font-size: 2em;
    }

    .page-games-jili-fishing-details__hero-subtitle {
        font-size: 1em;
    }

    .page-games-jili-fishing-details__section {
        padding: 40px 0;
    }

    .page-games-jili-fishing-details__section-title {
        font-size: 1.8em;
    }

    .page-games-jili-fishing-details__subsection-title {
        font-size: 1.3em;
    }

    .page-games-jili-fishing-details__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-games-jili-fishing-details__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}