/* style/game-types-fishing.css */
.page-game-types-fishing {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-game-types-fishing .section-title {
    font-size: 2.5em;
    color: #004D99;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-types-fishing .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-types-fishing .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-game-types-fishing .btn-primary {
    background-color: #004D99;
    color: #fff;
    border: 2px solid #004D99;
}

.page-game-types-fishing .btn-primary:hover {
    background-color: #003a73;
    border-color: #003a73;
}

.page-game-types-fishing .btn-secondary {
    background-color: #FFD700;
    color: #004D99;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-game-types-fishing .btn-secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Hero Section */
.page-game-types-fishing .hero-section {
    background: linear-gradient(135deg, #004D99, #003a73);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-game-types-fishing .hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-game-types-fishing .hero-content {
    flex: 1;
    max-width: 600px;
}

.page-game-types-fishing .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700;
}

.page-game-types-fishing .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-game-types-fishing .hero-actions .btn {
    font-size: 1.1em;
    padding: 15px 30px;
}

.page-game-types-fishing .hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-game-types-fishing .hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Fishing Game Section */
.page-game-types-fishing .about-fishing-game {
    padding: 80px 0;
    background-color: #fff;
}

.page-game-types-fishing .about-fishing-game p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #555;
}

/* Features Section */
.page-game-types-fishing .features-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

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

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

.page-game-types-fishing .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-types-fishing .feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #e0f2f7;
    padding: 10px;
    object-fit: contain;
}

.page-game-types-fishing .feature-item h3 {
    font-size: 1.5em;
    color: #004D99;
    margin-bottom: 15px;
}

.page-game-types-fishing .feature-item p {
    color: #666;
    font-size: 0.95em;
}

/* How to Play Section */
.page-game-types-fishing .how-to-play-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-game-types-fishing .play-steps {
    list-style: none;
    padding: 0;
}

.page-game-types-fishing .play-steps li {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-left: 5px solid #004D99;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.page-game-types-fishing .play-steps li:last-child {
    margin-bottom: 0;
}

.page-game-types-fishing .play-steps li h4 {
    font-size: 1.8em;
    color: #004D99;
    margin-bottom: 15px;
}

.page-game-types-fishing .play-steps li p {
    color: #555;
    font-size: 1.05em;
    margin-bottom: 15px;
}

.page-game-types-fishing .play-steps li .btn {
    margin-top: 10px;
    font-size: 0.95em;
    padding: 10px 20px;
}

.page-game-types-fishing .play-steps li .btn-register, .page-game-types-fishing .play-steps li .btn-deposit, .page-game-types-fishing .play-steps li .btn-withdraw {
    background-color: #FFD700;
    color: #004D99;
    border: 2px solid #FFD700;
}

.page-game-types-fishing .play-steps li .btn-register:hover, .page-game-types-fishing .play-steps li .btn-deposit:hover, .page-game-types-fishing .play-steps li .btn-withdraw:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-game-types-fishing .step-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Strategy Tips Section */
.page-game-types-fishing .strategy-tips-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.page-game-types-fishing .strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-game-types-fishing .strategy-item {
    background-color: #fff;
    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-game-types-fishing .strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-types-fishing .strategy-item h4 {
    font-size: 1.6em;
    color: #004D99;
    margin-bottom: 15px;
}

.page-game-types-fishing .strategy-item p {
    color: #555;
    font-size: 1em;
}

.page-game-types-fishing .strategy-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-game-types-fishing .strategy-conclusion {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    color: #004D99;
    font-weight: bold;
}

/* Promotions CTA Section */
.page-game-types-fishing .promotions-cta-section {
    padding: 80px 0;
    background-color: #004D99;
    color: #fff;
    text-align: center;
}

.page-game-types-fishing .promotions-cta-section .section-title {
    color: #FFD700;
}

.page-game-types-fishing .promotions-cta-section .section-title::after {
    background-color: #fff;
}

.page-game-types-fishing .promotions-cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-game-types-fishing .promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
    display: inline-block;
}

.page-game-types-fishing .promo-list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    color: #fff;
    border-left: 4px solid #FFD700;
}

.page-game-types-fishing .promo-list li strong {
    color: #FFD700;
}

.page-game-types-fishing .cta-text {
    font-size: 1.3em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 30px;
}

.page-game-types-fishing .cta-buttons .btn {
    font-size: 1.1em;
    padding: 15px 30px;
}

.page-game-types-fishing .cta-buttons .btn-primary {
    background-color: #FFD700;
    color: #004D99;
    border-color: #FFD700;
}

.page-game-types-fishing .cta-buttons .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-game-types-fishing .cta-buttons .btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-game-types-fishing .cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.page-game-types-fishing .faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-game-types-fishing .faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-game-types-fishing .faq-item h3 {
    font-size: 1.6em;
    color: #004D99;
    margin-bottom: 10px;
}

.page-game-types-fishing .faq-item p {
    color: #555;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-game-types-fishing .faq-item .btn {
    font-size: 0.9em;
    padding: 8px 18px;
    background-color: #FFD700;
    color: #004D99;
    border: 2px solid #FFD700;
}

.page-game-types-fishing .faq-item .btn:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-fishing .hero-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-game-types-fishing .hero-content {
        max-width: 100%;
    }

    .page-game-types-fishing .hero-title {
        font-size: 2.8em;
    }

    .page-game-types-fishing .hero-actions .btn {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .page-game-types-fishing .hero-actions .btn-secondary {
        margin-left: 0;
    }

    .page-game-types-fishing .features-grid, .page-game-types-fishing .strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-game-types-fishing .section-title {
        font-size: 2em;
    }

    .page-game-types-fishing .play-steps li h4 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-game-types-fishing .hero-section {
        padding: 80px 0 40px;
    }

    .page-game-types-fishing .hero-title {
        font-size: 2.2em;
    }

    .page-game-types-fishing .hero-description {
        font-size: 1em;
    }

    .page-game-types-fishing .hero-actions .btn {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    .page-game-types-fishing .hero-actions .btn-secondary {
        margin-left: 0;
    }

    .page-game-types-fishing .about-fishing-game, 
    .page-game-types-fishing .features-section, 
    .page-game-types-fishing .how-to-play-section, 
    .page-game-types-fishing .strategy-tips-section, 
    .page-game-types-fishing .promotions-cta-section, 
    .page-game-types-fishing .faq-section {
        padding: 60px 0;
    }

    .page-game-types-fishing .section-title {
        font-size: 1.8em;
    }

    .page-game-types-fishing .strategy-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-game-types-fishing .hero-title {
        font-size: 1.8em;
    }

    .page-game-types-fishing .hero-description {
        font-size: 0.9em;
    }

    .page-game-types-fishing .hero-actions .btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-game-types-fishing .section-title {
        font-size: 1.6em;
    }

    .page-game-types-fishing .play-steps li {
        padding: 20px;
    }

    .page-game-types-fishing .play-steps li h4 {
        font-size: 1.3em;
    }

    .page-game-types-fishing .strategy-image {
        height: 150px;
    }
}