/* style/game-introductions-fishing-games.css */

:root {
    --page-game-introductions-fishing-games-primary-color: #2C3E50;
    --page-game-introductions-fishing-games-accent-color: #F39C12;
    --page-game-introductions-fishing-games-text-light: #ECF0F1;
    --page-game-introductions-fishing-games-text-dark: #34495E;
    --page-game-introductions-fishing-games-background-light: #F8F9FA;
    --page-game-introductions-fishing-games-background-dark: #212F3C;
    --page-game-introductions-fishing-games-border-color: #BDC3C7;
}

.page-game-introductions-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-game-introductions-fishing-games-text-dark);
    background-color: var(--page-game-introductions-fishing-games-background-light);
}

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

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

.page-game-introductions-fishing-games__section:nth-child(even) {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    color: var(--page-game-introductions-fishing-games-text-light);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__section-title,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__section-description,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__card-title,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__card-text,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__game-title,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__game-description,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__step-title,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__step-text,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__list-title,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__list li p,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__section-footer,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__promo-title,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__promo-text,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__cta-text,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__responsible-list li p,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__faq-question,
.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__faq-answer {
    color: var(--page-game-introductions-fishing-games-text-light);
}

.page-game-introductions-fishing-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--page-game-introductions-fishing-games-primary-color);
    position: relative;
    padding-bottom: 10px;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__section-title {
    color: var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-game-introductions-fishing-games-accent-color);
    border-radius: 2px;
}

.page-game-introductions-fishing-games__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-game-introductions-fishing-games__hero {
    background: linear-gradient(135deg, var(--page-game-introductions-fishing-games-primary-color) 0%, #2C3E50 60%, var(--page-game-introductions-fishing-games-accent-color) 100%);
    color: var(--page-game-introductions-fishing-games-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-game-introductions-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-game-introductions-fishing-games-text-light);
}

.page-game-introductions-fishing-games__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introductions-fishing-games__hero-actions .page-game-introductions-fishing-games__btn {
    margin: 0 15px;
}

/* Buttons */
.page-game-introductions-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
}

.page-game-introductions-fishing-games__btn--primary {
    background-color: var(--page-game-introductions-fishing-games-accent-color);
    color: var(--page-game-introductions-fishing-games-primary-color);
    border: 2px solid var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__btn--primary:hover {
    background-color: darken(#F39C12, 10%);
    border-color: darken(#F39C12, 10%);
    color: white;
}

.page-game-introductions-fishing-games__btn--secondary {
    background-color: transparent;
    color: var(--page-game-introductions-fishing-games-text-light);
    border: 2px solid var(--page-game-introductions-fishing-games-text-light);
}

.page-game-introductions-fishing-games__btn--secondary:hover {
    background-color: var(--page-game-introductions-fishing-games-text-light);
    color: var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-game-introductions-fishing-games__btn--link {
    color: var(--page-game-introductions-fishing-games-accent-color);
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
}

.page-game-introductions-fishing-games__btn--link:hover {
    color: darken(#F39C12, 15%);
}

/* Grid for Cards */
.page-game-introductions-fishing-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-introductions-fishing-games__card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__card {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-game-introductions-fishing-games__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-game-introductions-fishing-games__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__card-title {
    color: var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__card-text {
    font-size: 1em;
    color: var(--page-game-introductions-fishing-games-text-dark);
}

/* Game List */
.page-game-introductions-fishing-games__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-introductions-fishing-games__game-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__game-item {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-game-introductions-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__game-item h3,
.page-game-introductions-fishing-games__game-item p {
    padding: 0 20px;
}

.page-game-introductions-fishing-games__game-title {
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__game-title {
    color: var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__game-description {
    font-size: 0.95em;
    color: var(--page-game-introductions-fishing-games-text-dark);
    margin-bottom: 20px;
}

.page-game-introductions-fishing-games__game-item .page-game-introductions-fishing-games__btn {
    margin: 0 20px 20px;
}

/* How-To Steps */
.page-game-introductions-fishing-games__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-game-introductions-fishing-games__step-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 60px;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__step-item {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: var(--page-game-introductions-fishing-games-accent-color);
    color: var(--page-game-introductions-fishing-games-primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-introductions-fishing-games__step-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__step-title {
    color: var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__step-text {
    font-size: 0.95em;
    color: var(--page-game-introductions-fishing-games-text-dark);
    margin-bottom: 15px;
}

/* Tips List */
.page-game-introductions-fishing-games__list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 50px auto;
}

.page-game-introductions-fishing-games__list li {
    background-color: white;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__list li {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
    border-left: 5px solid var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__list-title {
    font-size: 1.3em;
    color: var(--page-game-introductions-fishing-games-primary-color);
    margin-bottom: 10px;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__list-title {
    color: var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__list li p {
    font-size: 0.95em;
    color: var(--page-game-introductions-fishing-games-text-dark);
}

.page-game-introductions-fishing-games__section-footer {
    margin-top: 40px;
    font-style: italic;
    font-size: 1.1em;
    color: var(--page-game-introductions-fishing-games-text-dark);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__section-footer {
    color: var(--page-game-introductions-fishing-games-text-light);
}

/* Promotions */
.page-game-introductions-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-introductions-fishing-games__promo-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__promo-card {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-game-introductions-fishing-games__promo-title {
    font-size: 1.4em;
    color: var(--page-game-introductions-fishing-games-primary-color);
    margin-bottom: 10px;
    padding: 0 20px;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__promo-title {
    color: var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__promo-text {
    font-size: 0.95em;
    color: var(--page-game-introductions-fishing-games-text-dark);
    margin-bottom: 20px;
    padding: 0 20px;
}

.page-game-introductions-fishing-games__cta-bottom {
    margin-top: 60px;
    background-color: var(--page-game-introductions-fishing-games-primary-color);
    color: var(--page-game-introductions-fishing-games-text-light);
    padding: 40px;
    border-radius: 10px;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__cta-bottom {
    background-color: var(--page-game-introductions-fishing-games-accent-color);
    color: var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__cta-text {
    font-size: 1.3em;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__cta-bottom .page-game-introductions-fishing-games__btn--primary {
    background-color: var(--page-game-introductions-fishing-games-primary-color);
    color: var(--page-game-introductions-fishing-games-accent-color);
    border-color: var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__cta-bottom .page-game-introductions-fishing-games__btn--primary:hover {
    background-color: darken(#2C3E50, 10%);
    color: var(--page-game-introductions-fishing-games-text-light);
}

/* Responsible Gaming */
.page-game-introductions-fishing-games__responsible-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 50px auto;
}

.page-game-introductions-fishing-games__responsible-list li {
    background-color: white;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__responsible-list li {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
    border-left: 5px solid var(--page-game-introductions-fishing-games-accent-color);
}

.page-game-introductions-fishing-games__responsible-list .page-game-introductions-fishing-games__list-title {
    color: var(--page-game-introductions-fishing-games-primary-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__responsible-list .page-game-introductions-fishing-games__list-title {
    color: var(--page-game-introductions-fishing-games-accent-color);
}

/* FAQ Section */
.page-game-introductions-fishing-games__faq-items {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introductions-fishing-games__faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__faq-item {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    border: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__faq-question {
    font-size: 1.2em;
    padding: 18px 25px;
    cursor: pointer;
    background-color: var(--page-game-introductions-fishing-games-background-light);
    color: var(--page-game-introductions-fishing-games-primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-bottom: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__faq-question {
    background-color: var(--page-game-introductions-fishing-games-background-dark);
    color: var(--page-game-introductions-fishing-games-accent-color);
    border-bottom: 1px solid var(--page-game-introductions-fishing-games-border-color);
}

.page-game-introductions-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-game-introductions-fishing-games__faq-answer {
    padding: 0 25px;
    font-size: 1em;
    color: var(--page-game-introductions-fishing-games-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-game-introductions-fishing-games__section:nth-child(even) .page-game-introductions-fishing-games__faq-answer {
    color: var(--page-game-introductions-fishing-games-text-light);
}

.page-game-introductions-fishing-games__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page-game-introductions-fishing-games__faq-answer a {
    color: var(--page-game-introductions-fishing-games-accent-color);
    text-decoration: underline;
}

.page-game-introductions-fishing-games__faq-answer a:hover {
    color: darken(#F39C12, 15%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-introductions-fishing-games__hero-title {
        font-size: 2.8em;
    }
    .page-game-introductions-fishing-games__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-introductions-fishing-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-introductions-fishing-games__hero {
        padding: 80px 0;
    }
    .page-game-introductions-fishing-games__hero-title {
        font-size: 2.2em;
    }
    .page-game-introductions-fishing-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-introductions-fishing-games__hero-actions {
        flex-direction: column;
        display: flex;
    }
    .page-game-introductions-fishing-games__hero-actions .page-game-introductions-fishing-games__btn {
        margin: 10px 0;
        width: 80%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-game-introductions-fishing-introductions-fishing-games__grid,
    .page-game-introductions-fishing-games__game-list,
    .page-game-introductions-fishing-games__steps,
    .page-game-introductions-fishing-games__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-game-introductions-fishing-games__section {
        padding: 40px 0;
    }
    .page-game-introductions-fishing-games__card,
    .page-game-introductions-fishing-games__game-item,
    .page-game-introductions-fishing-games__step-item,
    .page-game-introductions-fishing-games__promo-card {
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-game-introductions-fishing-games__cta-bottom {
        padding: 30px 20px;
    }
    .page-game-introductions-fishing-games__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-introductions-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-introductions-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-game-introductions-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-introductions-fishing-games__section-description {
        font-size: 0.95em;
    }
    .page-game-introductions-fishing-games__card-title,
    .page-game-introductions-fishing-games__game-title,
    .page-game-introductions-fishing-games__step-title,
    .page-game-introductions-fishing-games__list-title,
    .page-game-introductions-fishing-games__promo-title,
    .page-game-introductions-fishing-games__faq-question {
        font-size: 1.1em;
    }
    .page-game-introductions-fishing-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-introductions-fishing-games__faq-answer {
        font-size: 0.9em;
    }
}