/* style/fishing-games.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #DC143C; /* Crimson Red */
    --dark-background: #1a1a1a; /* Dark Grey/Black */
    --light-text: #ffffff; /* White */
    --dark-text: #333333; /* Dark Grey */
    --accent-color: #00bcd4; /* Cyan for highlights */
    --card-background: #2a2a2a;
    --border-color: #444444;
}

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

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

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

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

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

.page-fishing-games h2 {
    font-size: 2.5em;
    margin-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games h3 {
    font-size: 1.8em;
    color: var(--light-text);
}

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

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

.page-fishing-games a:hover {
    color: var(--secondary-color);
}

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

.page-fishing-games .cta-button:hover {
    background: var(--primary-color);
    color: var(--dark-text);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games .btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 5px;
    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(--secondary-color);
    color: var(--light-text);
    transform: translateY(-1px);
}

/* 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: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
}

.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;
}

.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: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-fishing-games .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    margin-top: -80px; /* Overlap with image */
}

.page-fishing-games .hero-content h1 {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-bottom: 15px;
}

.page-fishing-games .hero-content p {
    font-size: 1.2em;
    color: #f0f0f0;
}

/* Intro Section */
.page-fishing-games .intro-section {
    background-color: var(--dark-background);
    padding: 80px 0;
}

.page-fishing-games .intro-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Types Section */
.page-fishing-games .game-types-section {
    background-color: #222222;
    padding: 80px 0;
}

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

.page-fishing-games .game-card {
    background: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

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

.page-fishing-games .game-card h3 {
    font-size: 1.5em;
    margin: 20px 15px 10px;
    color: var(--primary-color);
}

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

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

.page-fishing-games .game-card p {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px;
}

/* Guide Section */
.page-fishing-games .guide-section {
    background-color: var(--dark-background);
    padding: 80px 0;
}

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

.page-fishing-games ol li {
    counter-increment: guide-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-fishing-games ol li::before {
    content: counter(guide-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--dark-text);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

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

/* Promotions Section */
.page-fishing-games .promotions-section {
    background-color: #222222;
    padding: 80px 0;
}

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

.page-fishing-games .promotions-section ul li {
    background: var(--card-background);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    color: #e0e0e0;
}

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

/* Benefits Section */
.page-fishing-games .benefits-section {
    background-color: var(--dark-background);
    padding: 80px 0;
}

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

.page-fishing-games .benefit-item {
    background: var(--card-background);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: left;
}

.page-fishing-games .benefit-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2) saturate(1.5); /* Allowed for enhancing, not changing primary color */
}

.page-fishing-games .benefit-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

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

/* Tips Section */
.page-fishing-games .tips-section {
    background-color: #222222;
    padding: 80px 0;
}

.page-fishing-games .tips-section ul {
    list-style: disc;
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
    padding-left: 40px;
    color: #e0e0e0;
}

.page-fishing-games .tips-section ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

/* FAQ Section */
.page-fishing-games .faq-section {
    background-color: var(--dark-background);
    padding: 80px 0;
}

.page-fishing-games .faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-fishing-games .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-fishing-games .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--card-background);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-fishing-games .faq-question:hover {
    background: #3a3a3a;
}

.page-fishing-games .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--light-text);
    text-align: left;
    flex-grow: 1;
}

.page-fishing-games .faq-toggle {
    font-size: 2em;
    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);
}

.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: #2a2a2a;
    color: #e0e0e0;
    text-align: left;
}

.page-fishing-games .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to accommodate content */
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

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

/* Call to Action Section */
.page-fishing-games .call-to-action-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 80px 0;
    color: var(--light-text);
}

.page-fishing-games .call-to-action-section h2 {
    color: var(--light-text);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games .call-to-action-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games h1 {
        font-size: 2.8em;
    }
    .page-fishing-games h2 {
        font-size: 2em;
    }
    .page-fishing-games .hero-content h1 {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games section {
        padding: 40px 0;
    }
    .page-fishing-games h1 {
        font-size: 2.2em;
    }
    .page-fishing-games h2 {
        font-size: 1.8em;
    }
    .page-fishing-games h3 {
        font-size: 1.4em;
    }
    .page-fishing-games p {
        font-size: 1em;
    }
    .page-fishing-games .hero-content h1 {
        font-size: 2.5em;
    }
    .page-fishing-games .hero-content p {
        font-size: 1em;
    }
    .page-fishing-games .hero-image img {
        border-radius: 8px;
    }
    .page-fishing-games .hero-content {
        padding: 20px;
        margin-top: -60px;
    }
    .page-fishing-games .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-fishing-games .game-cards {
        grid-template-columns: 1fr;
    }
    .page-fishing-games .benefit-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games ol li, .page-fishing-games .promotions-section ul li, .page-fishing-games .tips-section ul li {
        font-size: 1em;
    }
    .page-fishing-games .faq-question h3 {
        font-size: 1.1em;
    }
    .page-fishing-games .faq-toggle {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games h1 {
        font-size: 1.8em;
    }
    .page-fishing-games h2 {
        font-size: 1.5em;
    }
    .page-fishing-games .hero-content h1 {
        font-size: 2em;
    }
    .page-fishing-games .hero-content {
        margin-top: -40px;
    }
    .page-fishing-games .cta-button {
        width: 90%;
    }
    .page-fishing-games ol li,
    .page-fishing-games .promotions-section ul li,
    .page-fishing-games .tips-section ul li {
        padding-left: 30px;
    }
    .page-fishing-games ol li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-fishing-games .faq-question {
        padding: 15px 20px;
    }
    .page-fishing-games .faq-answer {
        padding: 15px 20px;
    }
}