/* style/game-types-fishing-games-details.css */
.page-game-types-fishing-games-details {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A1A1A;
    line-height: 1.6;
}

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

.page-game-types-fishing-games-details__hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 50%, #1A1A1A 100%);
    color: #FFD700;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-game-types-fishing-games-details__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-game-types-fishing-games-details__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    overflow: hidden;
}

.page-game-types-fishing-games-details__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(2px);
    transform: scale(1.05);
}

.page-game-types-fishing-games-details__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-types-fishing-games-details__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-game-types-fishing-games-details__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-types-fishing-games-details__cta-button:hover {
    background-color: #E5C100;
    transform: translateY(-3px);
}

.page-game-types-fishing-games-details__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-types-fishing-games-details__cta-button--large {
    padding: 20px 40px;
    font-size: 1.5em;
}

.page-game-types-fishing-games-details__section {
    padding: 60px 0;
    border-bottom: 1px solid #333333;
}

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

.page-game-types-fishing-games-details__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-types-fishing-games-details__introduction p,
.page-game-types-fishing-games-details__safety p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #CCCCCC;
}

.page-game-types-fishing-games-details__introduction a,
.page-game-types-fishing-games-details__safety a,
.page-game-types-fishing-games-details__accordion-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-game-types-fishing-games-details__introduction a:hover,
.page-game-types-fishing-games-details__safety a:hover,
.page-game-types-fishing-games-details__accordion-content a:hover {
    text-decoration: underline;
}

.page-game-types-fishing-games-details__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-game-types-fishing-games-details__image-centered {
    display: block;
    margin: 40px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

.page-game-types-fishing-games-details__feature-item {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-game-types-fishing-games-details__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A3A;
}

.page-game-types-fishing-games-details__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-types-fishing-games-details__feature-item p {
    color: #CCCCCC;
    font-size: 1em;
}

.page-game-types-fishing-games-details__how-to-play h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-game-types-fishing-games-details__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-game-types-fishing-games-details__steps-list li {
    background-color: #2A2A2A;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 70px;
}

.page-game-types-fishing-games-details__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #1A1A1A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-game-types-fishing-games-details__steps-list p {
    color: #CCCCCC;
}

.page-game-types-fishing-games-details__steps-list p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-game-types-fishing-games-details__steps-list p a:hover {
    text-decoration: underline;
}

.page-game-types-fishing-games-details__grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-game-types-fishing-games-details__tip-item {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-game-types-fishing-games-details__tip-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.page-game-types-fishing-games-details__tip-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-game-types-fishing-games-details__tip-item p {
    color: #CCCCCC;
    font-size: 1em;
}

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

.page-game-types-fishing-games-details__accordion-item {
    border: 1px solid #333333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-game-types-fishing-games-details__accordion-toggle {
    display: none;
}

.page-game-types-fishing-games-details__accordion-header {
    display: block;
    padding: 20px;
    background-color: #2A2A2A;
    color: #FFD700;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

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

.page-game-types-fishing-games-details__accordion-toggle:checked + .page-game-types-fishing-games-details__accordion-header {
    background-color: #3A3A3A;
}

.page-game-types-fishing-games-details__accordion-toggle:checked + .page-game-types-fishing-games-details__accordion-header::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-types-fishing-games-details__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #1A1A1A;
    color: #CCCCCC;
    padding: 0 20px;
}

.page-game-types-fishing-games-details__accordion-toggle:checked ~ .page-game-types-fishing-games-details__accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

.page-game-types-fishing-games-details__accordion-content p {
    margin-bottom: 15px;
    font-size: 1em;
}

.page-game-types-fishing-games-details__cta-final {
    background-color: #2A2A2A;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-fishing-games-details__cta-final-content {
    position: relative;
    z-index: 2;
}

.page-game-types-fishing-games-details__cta-final-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(3px);
    z-index: 1;
}

.page-game-types-fishing-games-details__cta-final .page-game-types-fishing-games-details__section-title {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-game-types-fishing-games-details__cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-types-fishing-games-details__title {
        font-size: 2.8em;
    }
    .page-game-types-fishing-games-details__subtitle {
        font-size: 1.2em;
    }
    .page-game-types-fishing-games-details__section-title {
        font-size: 2em;
    }
    .page-game-types-fishing-games-details__grid-2-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-types-fishing-games-details__hero-section {
        padding: 60px 0;
    }
    .page-game-types-fishing-games-details__title {
        font-size: 2.2em;
    }
    .page-game-types-fishing-games-details__subtitle {
        font-size: 1em;
    }
    .page-game-types-fishing-games-details__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-types-fishing-games-details__section {
        padding: 40px 0;
    }
    .page-game-types-fishing-games-details__section-title {
        font-size: 1.8em;
    }
    .page-game-types-fishing-games-details__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-game-types-fishing-games-details__steps-list li {
        padding-left: 60px;
    }
    .page-game-types-fishing-games-details__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
    }
    .page-game-types-fishing-games-details__cta-final .page-game-types-fishing-games-details__section-title {
        font-size: 2.2em;
    }
    .page-game-types-fishing-games-details__cta-final p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-types-fishing-games-details__title {
        font-size: 1.8em;
    }
    .page-game-types-fishing-games-details__subtitle {
        font-size: 0.9em;
    }
    .page-game-types-fishing-games-details__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-types-fishing-games-details__section-title {
        font-size: 1.5em;
    }
    .page-game-types-fishing-games-details__feature-title {
        font-size: 1.4em;
    }
    .page-game-types-fishing-games-details__tip-item h3 {
        font-size: 1.3em;
    }
    .page-game-types-fishing-games-details__accordion-header {
        font-size: 1em;
        padding: 15px;
    }
    .page-game-types-fishing-games-details__accordion-header::after {
        right: 15px;
    }
    .page-game-types-fishing-games-details__accordion-content {
        padding: 15px;
    }
    .page-game-types-fishing-games-details__cta-final .page-game-types-fishing-games-details__section-title {
        font-size: 1.8em;
    }
    .page-game-types-fishing-games-details__cta-final p {
        font-size: 0.9em;
    }
    .page-game-types-fishing-games-details__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}