/* style/fishing-games.css */

:root {
    --primary-color: #1A2B4C;
    --secondary-color: #FFD700;
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --bg-light: #ffffff;
    --bg-dark: #2A3B5C;
    --accent-color: #FF6B6B;
}

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

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

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

.page-fishing-games__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-fishing-games h1,
.page-fishing-games h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.page-fishing-games h1 {
    font-size: 2.8em;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games h2 {
    font-size: 2.2em;
}

.page-fishing-games h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-fishing-games p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--secondary-color);
}

.page-fishing-games__cta-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__small-button {
    padding: 10px 25px;
    font-size: 1em;
}

.page-fishing-games__large-button {
    padding: 18px 45px;
    font-size: 1.3em;
}

.page-fishing-games__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-fishing-games__text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    padding: 80px 20px 40px;
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-fishing-games__hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    object-fit: cover;
}

.page-fishing-games__hero-content {
    color: var(--text-light);
    max-width: 800px;
}

.page-fishing-games__hero-content p {
    color: var(--text-light);
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Intro Section */
.page-fishing-games__intro {
    background-color: var(--bg-light);
}

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

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

.page-fishing-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Games Section */
.page-fishing-games__games {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games__games h2 {
    color: var(--secondary-color);
}

.page-fishing-games__games p {
    color: var(--text-light);
}

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

.page-fishing-games__game-card {
    background-color: #3A4B6C;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-fishing-games__game-card h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-fishing-games__game-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-fishing-games__game-card h3 a:hover {
    text-decoration: underline;
}

.page-fishing-games__game-card p {
    color: var(--text-light);
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-fishing-games__play-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-fishing-games__play-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Guide Section */
.page-fishing-games__guide {
    background-color: var(--bg-light);
}

.page-fishing-games__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__steps li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
    text-align: left;
}

.page-fishing-games__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__steps li h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-fishing-games__steps li p {
    margin-bottom: 15px;
}

/* Tips Section */
.page-fishing-games__tips {
    background-color: #f8f8f8;
}

.page-fishing-games__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__tip-list li {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__tip-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__tip-list li h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Promotions Section */
.page-fishing-games__promotions {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games__promotions h2 {
    color: var(--secondary-color);
}

.page-fishing-games__promotions p {
    color: var(--text-light);
}

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

.page-fishing-games__promo-card {
    background-color: #3A4B6C;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-fishing-games__promo-card h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-fishing-games__promo-card p {
    color: var(--text-light);
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* Security Section */
.page-fishing-games__security {
    background-color: var(--bg-light);
}

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

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

.page-fishing-games__security-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__security-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* FAQ Section */
.page-fishing-games__faq {
    background-color: #f8f8f8;
}

.page-fishing-games__faq-items {
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__faq .faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-fishing-games__faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq .faq-question:hover {
    background: #f5f5f5;
}

.page-fishing-games__faq .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.page-fishing-games__faq .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-fishing-games__faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-fishing-games__faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fdfdfd;
    color: var(--text-dark);
}

.page-fishing-games__faq .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 25px;
    border-top: 1px solid #e0e0e0;
}

.page-fishing-games__faq .faq-answer p {
    margin-bottom: 10px;
    font-size: 1em;
}

/* Conclusion Section */
.page-fishing-games__conclusion {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__conclusion h2 {
    color: var(--secondary-color);
}

.page-fishing-games__conclusion p {
    color: var(--text-light);
    font-size: 1.15em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games h1 {
        font-size: 2.4em;
    }
    .page-fishing-games h2 {
        font-size: 1.8em;
    }
    .page-fishing-games h3 {
        font-size: 1.3em;
    }
    .page-fishing-games__hero-image {
        max-width: 80%;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__promo-grid,
    .page-fishing-games__security-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-fishing-games__steps li {
        padding-left: 60px;
    }
    .page-fishing-games__steps li::before {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section {
        padding: 40px 0;
    }
    .page-fishing-games h1 {
        font-size: 2em;
    }
    .page-fishing-games h2 {
        font-size: 1.6em;
    }
    .page-fishing-games h3 {
        font-size: 1.2em;
    }
    .page-fishing-games p {
        font-size: 1em;
    }
    .page-fishing-games__hero-image {
        max-width: 90%;
        margin-bottom: 30px;
    }
    .page-fishing-games__hero-content p {
        font-size: 1em;
    }
    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-fishing-games__small-button {
        padding: 8px 18px;
        font-size: 0.9em;
    }
    .page-fishing-games__large-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__promo-grid,
    .page-fishing-games__security-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__steps li {
        padding-left: 50px;
    }
    .page-fishing-games__steps li::before {
        width: 40px;
        height: 40px;
        font-size: 1.4em;
    }
    .page-fishing-games__faq .faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games__faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page-fishing-games__faq .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games h1 {
        font-size: 1.8em;
    }
    .page-fishing-games h2 {
        font-size: 1.4em;
    }
    .page-fishing-games h3 {
        font-size: 1.1em;
    }
    .page-fishing-games__hero-content p {
        font-size: 0.9em;
    }
    .page-fishing-games__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-fishing-games__steps li {
        padding-left: 45px;
    }
    .page-fishing-games__steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    .page-fishing-games__faq .faq-question h3 {
        font-size: 1em;
    }
}