/* style/games-fishing-games-features.css */
.page-games-fishing-games-features {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-games-fishing-games-features__hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Deeper blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-fishing-games-features__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:ocean_waves,abstract_pattern,blue_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-games-fishing-games-features__hero .page-games-fishing-games-features__container {
    position: relative;
    z-index: 1;
}

.page-games-fishing-games-features__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden yellow for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-fishing-games-features__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-games-fishing-games-features__section {
    padding: 60px 0;
    text-align: center;
}

.page-games-fishing-games-features__section--features {
    background-color: #ffffff;
}

.page-games-fishing-games-features__section--cta {
    background-color: #FFCC00;
    color: #003366;
    padding: 80px 0;
}

.page-games-fishing-games-features__section--how-to-play {
    background-color: #f0f5fa;
}

.page-games-fishing-games-features__section--tips {
    background-color: #ffffff;
}

.page-games-fishing-games-features__section--faq {
    background-color: #f0f5fa;
}

.page-games-fishing-games-features__section--final-cta {
    background: linear-gradient(90deg, #003366 0%, #004080 100%);
    color: #ffffff;
    padding: 80px 0;
}

.page-games-fishing-games-features__heading {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #003366;
    position: relative;
    padding-bottom: 15px;
}

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

.page-games-fishing-games-features__section--cta .page-games-fishing-games-features__heading,
.page-games-fishing-games-features__section--final-cta .page-games-fishing-games-features__heading {
    color: #ffffff;
}

.page-games-fishing-games-features__section--cta .page-games-fishing-games-features__heading::after,
.page-games-fishing-games-features__section--final-cta .page-games-fishing-games-features__heading::after {
    background-color: #ffffff;
}

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

.page-games-fishing-games-features__feature-item,
.page-games-fishing-games-features__step-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fishing-games-features__feature-item:hover,
.page-games-fishing-games-features__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-games-fishing-games-features__feature-icon,
.page-games-fishing-games-features__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-games-fishing-games-features__feature-title,
.page-games-fishing-games-features__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-games-fishing-games-features__feature-description,
.page-games-fishing-games-features__step-description {
    font-size: 1.1em;
    color: #555;
}

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

.page-games-fishing-games-features__button--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

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

.page-games-fishing-games-features__button--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
}

.page-games-fishing-games-features__button--secondary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-2px);
}

.page-games-fishing-games-features__button--outline {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-games-fishing-games-features__button--outline:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-2px);
}

.page-games-fishing-games-features__link {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

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

.page-games-fishing-games-features__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-games-fishing-games-features__text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;
}

.page-games-fishing-games-features__section--cta .page-games-fishing-games-features__text {
    color: #003366;
}

.page-games-fishing-games-features__section--final-cta .page-games-fishing-games-features__text {
    color: #e0e0e0;
}

.page-games-fishing-games-features__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-fishing-games-features__list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
}

.page-games-fishing-games-features__list li strong {
    color: #003366;
}

.page-games-fishing-games-features__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-fishing-games-features__faq-question {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
}

.page-games-fishing-games-features__faq-answer {
    font-size: 1.1em;
    color: #555;
}

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

    .page-games-fishing-games-features__subtitle {
        font-size: 1.1em;
    }

    .page-games-fishing-games-features__heading {
        font-size: 2em;
    }

    .page-games-fishing-games-features__feature-grid,
    .page-games-fishing-games-features__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-games-fishing-games-features__hero,
    .page-games-fishing-games-features__section {
        padding: 60px 0;
    }
}

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

    .page-games-fishing-games-features__subtitle {
        font-size: 1em;
    }

    .page-games-fishing-games-features__heading {
        font-size: 1.8em;
    }

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