/* style/fishing-games.css */

:root {
    --j9bet-primary-color: #0D47A1;
    --j9bet-secondary-color: #FFD600;
    --j9bet-text-dark: #333333;
    --j9bet-text-light: #ffffff;
    --j9bet-bg-light-blue: #e0f2f7; /* Lighter shade for sections */
    --j9bet-bg-dark-blue: #0A3C8B; /* Slightly darker than primary for contrast */
    --j9bet-highlight-yellow-text: #998000; /* Darker text for yellow background */
}

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

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

.page-fishing-games-hero {
    background: linear-gradient(135deg, var(--j9bet-primary-color) 0%, #0056b3 100%); /* Adjusted gradient */
    color: var(--j9bet-text-light);
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.page-fishing-games-hero-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.page-fishing-games-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-fishing-games-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

.page-fishing-games-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-fishing-games-btn-primary {
    display: inline-block;
    background-color: var(--j9bet-secondary-color);
    color: var(--j9bet-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-fishing-games-section-title {
    font-size: 2.5em;
    color: var(--j9bet-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-fishing-games-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--j9bet-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-fishing-games-section-title.text-light {
    color: var(--j9bet-text-light);
}

.page-fishing-games-section-title.text-light::after {
    background-color: var(--j9bet-secondary-color);
}

.page-fishing-games-section-title.text-dark {
    color: var(--j9bet-text-dark);
}

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

.page-fishing-games-text.text-light {
    color: var(--j9bet-text-light);
}

.page-fishing-games-text.text-dark {
    color: var(--j9bet-text-dark);
}

.page-fishing-games-intro .page-fishing-games-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-fishing-games-image-full-width {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games-feature-item, .page-fishing-games-safety-item, .page-fishing-games-strategy-item {
    background-color: var(--j9bet-text-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-feature-item:hover, .page-fishing-games-safety-item:hover, .page-fishing-games-strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-fishing-games-feature-title, .page-fishing-games-safety-title, .page-fishing-games-strategy-title {
    font-size: 1.5em;
    color: var(--j9bet-primary-color);
    margin-bottom: 15px;
}

.page-fishing-games-image-half-width {
    width: calc(50% - 15px);
    display: inline-block;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    vertical-align: top;
}

.page-fishing-games-image-half-width:first-of-type {
    margin-right: 30px;
}

.section-spacing {
    padding: 80px 0;
}

.bg-dark-blue {
    background-color: var(--j9bet-bg-dark-blue);
    color: var(--j9bet-text-light);
}

.bg-light-blue {
    background-color: var(--j9bet-bg-light-blue);
}

.bg-highlight-yellow {
    background-color: var(--j9bet-secondary-color);
    color: var(--j9bet-highlight-yellow-text);
}

.highlight {
    color: var(--j9bet-primary-color);
    font-weight: bold;
}

.highlight-yellow {
    color: var(--j9bet-secondary-color);
    font-weight: bold;
}

.page-fishing-games-ordered-list, .page-fishing-games-bullet-list {
    list-style-position: inside;
    margin: 20px auto;
    padding-left: 0;
    max-width: 900px;
}

.page-fishing-games-ordered-list li, .page-fishing-games-bullet-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    text-align: left;
}

.page-fishing-games-ordered-list li strong {
    color: var(--j9bet-secondary-color);
}

.page-fishing-games-bullet-list li {
    list-style-type: '🐠 ';
    padding-left: 10px;
}

.page-fishing-games-bullet-list li.text-light {
    list-style-type: '⭐ ';
}

.page-fishing-games-link-inline {
    color: var(--j9bet-secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-fishing-games-link-inline:hover {
    color: #e6c200;
}

.page-fishing-games-btn-secondary {
    display: inline-block;
    background-color: var(--j9bet-primary-color);
    color: var(--j9bet-text-light);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--j9bet-secondary-color);
    cursor: pointer;
    margin-top: 20px;
}

.page-fishing-games-btn-secondary:hover {
    background-color: #003a7f;
    transform: translateY(-3px);
}

.page-fishing-games-btn-primary-dark {
    display: inline-block;
    background-color: var(--j9bet-primary-color);
    color: var(--j9bet-text-light);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-fishing-games-btn-primary-dark:hover {
    background-color: #003a7f;
    transform: translateY(-3px);
}

.page-fishing-games-strategy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.page-fishing-games-image-app-mockup {
    max-width: 500px;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-faq-item {
    background-color: var(--j9bet-bg-light-blue);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-faq-question {
    font-size: 1.3em;
    color: var(--j9bet-primary-color);
    margin-bottom: 10px;
}

.page-fishing-games-faq-question::before {
    content: 'Q: ';
    color: var(--j9bet-secondary-color);
    font-weight: bold;
}

.page-fishing-games-faq-item .page-fishing-games-text {
    margin-bottom: 0;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games-title {
        font-size: 2.8em;
    }
    .page-fishing-games-subtitle {
        font-size: 1.3em;
    }
    .page-fishing-games-section-title {
        font-size: 2em;
    }
    .page-fishing-games-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-image-half-width {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-fishing-games-image-half-width:first-of-type {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-hero {
        padding: 80px 0;
    }
    .page-fishing-games-title {
        font-size: 2.2em;
    }
    .page-fishing-games-subtitle {
        font-size: 1.1em;
    }
    .page-fishing-games-btn-primary, .page-fishing-games-btn-secondary, .page-fishing-games-btn-primary-dark {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-fishing-games-section-title {
        font-size: 1.8em;
    }
    .section-spacing {
        padding: 60px 0;
    }
    .page-fishing-games-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-title {
        font-size: 1.8em;
    }
    .page-fishing-games-subtitle {
        font-size: 1em;
    }
    .page-fishing-games-section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-hero-content {
        padding: 0 15px;
    }
    .page-fishing-games-container {
        padding: 0 15px;
    }
    .page-fishing-games-ordered-list li, .page-fishing-games-bullet-list li, .page-fishing-games-faq-question, .page-fishing-games-faq-item .page-fishing-games-text {
        font-size: 0.95em;
    }
}