/* style/fishing-games.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1E90FF; /* Dodger Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f4f4;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
}

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

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

/* Hero Section */
.page-fishing-games .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.page-fishing-games .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-fishing-games .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

.page-fishing-games .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-fishing-games .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-fishing-games .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games .cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-fishing-games section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-fishing-games section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-fishing-games .section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-dark);
}

.page-fishing-games .highlight-keyword {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Intro Section */
.page-fishing-games .intro-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

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

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

.page-fishing-games .intro-section .feature-icon {
    width: 250px; /* Increased size */
    height: 200px; /* Increased size */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-fishing-games .intro-section .feature-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-fishing-games .intro-section .feature-item p {
    font-size: 1em;
    color: var(--text-dark);
}

.page-fishing-games .cta-button.secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.page-fishing-games .cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Popular Games Section */
.page-fishing-games .game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games .game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-fishing-games .game-info {
    padding: 25px;
}

.page-fishing-games .game-info h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

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

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

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

.page-fishing-games .game-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-fishing-games .game-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Why Choose Section */
.page-fishing-games .why-choose-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-fishing-games .why-choose-list li {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .why-choose-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games .why-choose-list h3 {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
}

.page-fishing-games .why-choose-list h3::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
}

.page-fishing-games .why-choose-list p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Guide Section */
.page-fishing-games .guide-list {
    list-style: none;
    padding: 0;
    counter-reset: guide-counter;
}

.page-fishing-games .guide-list li {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 80px;
}

.page-fishing-games .guide-list li::before {
    counter-increment: guide-counter;
    content: counter(guide-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-fishing-games .guide-list h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-fishing-games .guide-list p {
    font-size: 1em;
    color: var(--text-dark);
}

.page-fishing-games .guide-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.page-fishing-games .guide-button:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Tips Section */
.page-fishing-games .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-fishing-games .tip-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games .tip-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-fishing-games .tip-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Promotions Section */
.page-fishing-games .promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

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

.page-fishing-games .promo-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-fishing-games .promo-list p {
    font-size: 1em;
    color: var(--text-dark);
}

/* FAQ Section */
.page-fishing-games .faq-list {
    margin-top: 40px;
}

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

.page-fishing-games .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-question:hover {
    background: #f0f0f0;
}

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

.page-fishing-games .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

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

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

.page-fishing-games .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
}

.page-fishing-games .faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}

.page-fishing-games .faq-answer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-fishing-games .faq-answer a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games .hero-title {
        font-size: 2.5em;
    }
    .page-fishing-games .hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games .section-title {
        font-size: 2em;
    }
    .page-fishing-games .intro-section .feature-item {
        padding: 25px;
    }
    .page-fishing-games .intro-section .feature-icon {
        width: 200px;
        height: 160px;
    }
    .page-fishing-games .game-image {
        height: 200px;
    }
    .page-fishing-games .why-choose-list h3,
    .page-fishing-games .guide-list h3,
    .page-fishing-games .tip-item h3,
    .page-fishing-games .promo-list h3 {
        font-size: 1.3em;
    }
    .page-fishing-games .faq-question h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games .hero-section {
        padding: 40px 15px;
    }
    .page-fishing-games .hero-title {
        font-size: 2em;
    }
    .page-fishing-games .hero-description {
        font-size: 1em;
    }
    .page-fishing-games .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-fishing-games section {
        padding: 40px 0;
    }
    .page-fishing-games .section-title {
        font-size: 1.8em;
    }
    .page-fishing-games .section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-fishing-games .intro-section .features-grid,
    .page-fishing-games .game-cards-grid,
    .page-fishing-games .why-choose-list,
    .page-fishing-games .tips-grid,
    .page-fishing-games .promo-list {
        grid-template-columns: 1fr;
    }
    .page-fishing-games .intro-section .feature-icon {
        width: 180px;
        height: 140px;
    }
    .page-fishing-games .game-card .game-info {
        padding: 20px;
    }
    .page-fishing-games .game-image {
        height: 180px;
    }
    .page-fishing-games .guide-list li {
        padding: 20px 20px 20px 70px;
    }
    .page-fishing-games .guide-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
        top: 20px;
    }
    .page-fishing-games .faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games .faq-answer {
        padding: 0 20px;
    }
    .page-fishing-games .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games .hero-title {
        font-size: 1.7em;
    }
    .page-fishing-games .hero-description {
        font-size: 0.9em;
    }
    .page-fishing-games .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-fishing-games .section-title {
        font-size: 1.5em;
    }
    .page-fishing-games .intro-section .feature-icon {
        width: 150px;
        height: 120px;
    }
    .page-fishing-games .game-image {
        height: 150px;
    }
    .page-fishing-games .why-choose-list h3,
    .page-fishing-games .guide-list h3,
    .page-fishing-games .tip-item h3,
    .page-fishing-games .promo-list h3 {
        font-size: 1.2em;
    }
    .page-fishing-games .faq-question h3 {
        font-size: 1em;
    }
    .page-fishing-games .faq-toggle {
        font-size: 1.5em;
    }
}