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

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

.page-game-center-fishing-games__section {
    padding: 60px 0;
}

.page-game-center-fishing-games__section--intro {
    background-color: #fff;
}

.page-game-center-fishing-games__section--strategies {
    background-color: #f0f0f0;
}

.page-game-center-fishing-games__section--advanced {
    background-color: #fff;
}

.page-game-center-fishing-games__section--benefits {
    background-color: #f0f0f0;
}

.page-game-center-fishing-games__section--get-started {
    background-color: #fff;
}

.page-game-center-fishing-games__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #2a5a64 100%); /* Darker primary for background */
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.page-game-center-fishing-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B400; /* Secondary color for title */
    font-weight: bold;
}

.page-game-center-fishing-games__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-center-fishing-games__section-title {
    font-size: 2.5em;
    color: #0A2E36; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-center-fishing-games__article {
    margin-bottom: 50px;
}

.page-game-center-fishing-games__article-title {
    font-size: 1.8em;
    color: #0A2E36; /* Primary color for article titles */
    margin-bottom: 15px;
    border-left: 5px solid #E0B400; /* Secondary color for accent */
    padding-left: 15px;
}

.page-game-center-fishing-games__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-game-center-fishing-games__keyword {
    color: #0A2E36;
    font-weight: bold;
}

.page-game-center-fishing-games__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.page-game-center-fishing-games__list li {
    margin-bottom: 8px;
}

.page-game-center-fishing-games__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-center-fishing-games__image--centered {
    margin-left: auto;
    margin-right: auto;
}

.page-game-center-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-game-center-fishing-games__btn--primary {
    background-color: #E0B400; /* Secondary color for primary button */
    color: #0A2E36; /* Primary color for text */
    border: 2px solid #E0B400;
}

.page-game-center-fishing-games__btn--primary:hover {
    background-color: #ffc91a; /* Lighter secondary color on hover */
    transform: translateY(-3px);
}

.page-game-center-fishing-games__btn--secondary {
    background-color: #0A2E36; /* Primary color for secondary button */
    color: #E0B400; /* Secondary color for text */
    border: 2px solid #0A2E36;
}

.page-game-center-fishing-games__btn--secondary:hover {
    background-color: #1a4f5d; /* Lighter primary color on hover */
    transform: translateY(-3px);
}

.page-game-center-fishing-games__btn--action {
    background-color: #E0B400; /* Secondary color for action button */
    color: #0A2E36; /* Primary color for text */
    border: 2px solid #E0B400;
    margin-top: 20px;
    margin-bottom: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-game-center-fishing-games__btn--action:hover {
    background-color: #ffc91a;
    transform: translateY(-3px);
}

.page-game-center-fishing-games__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

.page-game-center-fishing-games__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-center-fishing-games__grid-title {
    font-size: 1.5em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-game-center-fishing-games__faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-center-fishing-games__faq-question {
    font-size: 1.3em;
    color: #0A2E36;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-center-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #E0B400;
}

.page-game-center-fishing-games__faq-question.active::after {
    content: '-';
}

.page-game-center-fishing-games__faq-answer {
    font-size: 1.05em;
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-game-center-fishing-games__faq-answer.active {
    display: block;
}

.page-game-center-fishing-games__cta {
    background: #0A2E36;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-game-center-fishing-games__cta-title {
    font-size: 2.8em;
    color: #E0B400;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-center-fishing-games__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-center-fishing-games__hero-title {
        font-size: 2.5em;
    }
    .page-game-center-fishing-games__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-center-fishing-games__section-title {
        font-size: 2em;
    }
    .page-game-center-fishing-games__article-title {
        font-size: 1.6em;
    }
    .page-game-center-fishing-games__grid {
        grid-template-columns: 1fr;
    }
    .page-game-center-fishing-games__cta-title {
        font-size: 2em;
    }
    .page-game-center-fishing-games__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-center-fishing-games__hero-title {
        font-size: 2em;
    }
    .page-game-center-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-game-center-fishing-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-center-fishing-games__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-game-center-fishing-games__section {
        padding: 40px 0;
    }
}