/* style/fishing-games.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A1A; /* Dark Black */
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --accent-color: #FFC107; /* Slightly darker gold for hover */
    --background-light: #F8F8F8;
    --background-dark: #2A2A2A;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    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-child(even) {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-fishing-games-section:nth-child(even) h2, 
.page-fishing-games-section:nth-child(even) h3 {
    color: var(--primary-color);
}

.page-fishing-games-section:nth-child(even) p {
    color: #E0E0E0;
}

.page-fishing-games-section:nth-child(even) a {
    color: var(--primary-color);
}

.page-fishing-games-section:nth-child(even) .page-fishing-games-btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.page-fishing-games-section:nth-child(even) .page-fishing-games-btn-secondary:hover {
    background-color: var(--accent-color);
}

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

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

.page-fishing-games h2 {
    font-size: 2.5em;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-fishing-games h3 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-fishing-games p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-fishing-games-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-fishing-games-cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
}

.page-fishing-games-btn-secondary:hover {
    background: #000000;
    transform: translateY(-1px);
}

.page-fishing-games-btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
}

.page-fishing-games-btn-small:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

/* Hero Section */
.page-fishing-games-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, #333333 100%);
    padding: 80px 20px;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-fishing-games-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-fishing-games-hero h1 {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games-hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #E0E0E0;
}

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

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

.page-fishing-games-game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-game-card img {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.page-fishing-games-game-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games-game-card h3 a:hover {
    color: var(--primary-color);
}

.page-fishing-games-game-card p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 15px;
}

.page-fishing-games-more-games {
    margin-top: 40px;
    font-style: italic;
    color: #666666;
}

/* Benefits Section */
.page-fishing-games-benefits {
    background-color: var(--background-dark);
    color: var(--text-light);
}

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

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

.page-fishing-games-benefit-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-fishing-games-benefit-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
}

.page-fishing-games-benefit-item p {
    color: #CCCCCC;
    font-size: 0.95em;
}

/* Guide Section */
.page-fishing-games-guide ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    padding: 0;
}

.page-fishing-games-guide ol li {
    counter-increment: my-awesome-counter;
    margin-bottom: 25px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-fishing-games-guide ol li::before {
    content: counter(my-awesome-counter);
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-guide ol li strong {
    color: var(--secondary-color);
}

/* Strategy Section */
.page-fishing-games-strategy ul {
    list-style: none;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    padding: 0;
}

.page-fishing-games-strategy ul li {
    background-color: #3A3A3A;
    color: var(--text-light);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy ul li strong {
    color: var(--primary-color);
}

/* Promotions Section */
.page-fishing-games-promotions ul {
    list-style: none;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    padding: 0;
}

.page-fishing-games-promotions ul li {
    background-color: #FFFFFF;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.page-fishing-games-promotions ul li:hover {
    transform: translateX(5px);
}

.page-fishing-games-promotions ul li strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-fishing-games-faq {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-fishing-games-faq-list {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-fishing-games-faq-list .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-fishing-games-faq-list .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-fishing-games-faq-list .faq-question:hover {
    background: #F5F5F5;
}

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

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

.page-fishing-games-faq-list .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games-faq-list .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    background: #F9F9F9;
    border-radius: 0 0 8px 8px;
}

.page-fishing-games-faq-list .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px;
    border: 1px solid #E0E0E0;
    border-top: none;
}

.page-fishing-games-faq-list .faq-answer p {
    color: #555555;
    margin: 0;
    padding-bottom: 10px;
}

/* Conclusion Section */
.page-fishing-games-conclusion {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-fishing-games-conclusion h2 {
    color: var(--primary-color);
}

.page-fishing-games-conclusion p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-hero h1 {
        font-size: 2.8em;
    }
    .page-fishing-games h2 {
        font-size: 2em;
    }
    .page-fishing-games h3 {
        font-size: 1.6em;
    }
    .page-fishing-games p {
        font-size: 1em;
    }
    .page-fishing-games-cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-fishing-games-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-fishing-games-benefit-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-fishing-games-section {
        padding: 40px 0;
    }
    .page-fishing-games-hero {
        padding: 60px 15px;
    }
    .page-fishing-games-hero h1 {
        font-size: 2.2em;
    }
    .page-fishing-games-hero p {
        font-size: 1.1em;
    }
    .page-fishing-games h2 {
        font-size: 1.8em;
    }
    .page-fishing-games h3 {
        font-size: 1.4em;
    }
    .page-fishing-games-game-grid, .page-fishing-games-benefit-list {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-guide ol li, .page-fishing-games-strategy ul li, .page-fishing-games-promotions ul li {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 1em;
    }
    .page-fishing-games-guide ol li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
    .page-fishing-games-faq-list .faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games-faq-list .faq-question h3 {
        font-size: 1.1em;
    }
    .page-fishing-games-faq-list .faq-toggle {
        font-size: 20px;
    }
    .page-fishing-games-faq-list .faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-hero h1 {
        font-size: 1.8em;
    }
    .page-fishing-games-hero p {
        font-size: 1em;
    }
    .page-fishing-games h2 {
        font-size: 1.5em;
    }
    .page-fishing-games-cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-fishing-games-game-card img {
        height: 200px;
    }
}