/* style/casino-fishing-games.css */

/* General Page Styles */
.page-casino-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-casino-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-casino-fishing-games__section:nth-of-type(even) {
    background-color: #fff;
}

.page-casino-fishing-games__section-title {
    font-size: 2.8em;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-casino-fishing-games__section-intro {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero Section */
.page-casino-fishing-games__hero {
    background: linear-gradient(135deg, #003366, #1a4f8a);
    color: #fff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    min-height: 60vh;
}

.page-casino-fishing-games__hero-content {
    max-width: 600px;
    text-align: left;
}

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

.page-casino-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-casino-fishing-games__hero-image-wrapper {
    flex-shrink: 0;
}

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

/* Buttons */
.page-casino-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-casino-fishing-games__btn--primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

.page-casino-fishing-games__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-casino-fishing-games__btn--secondary {
    background-color: #003366;
    color: #FFD700;
    border: 2px solid #003366;
}

.page-casino-fishing-games__btn--secondary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.4);
}

/* Why Choose Section */
.page-casino-fishing-games__why-choose {
    background-color: #f0f4f8;
}

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

.page-casino-fishing-games__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-fishing-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-fishing-games__feature-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-casino-fishing-games__feature-item p {
    color: #666;
    font-size: 1em;
}

/* Popular Games Section */
.page-casino-fishing-games__popular-games {
    background-color: #fff;
}

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

.page-casino-fishing-games__game-card {
    background-color: #f0f4f8;
    border-radius: 10px;
    overflow: hidden;
    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-casino-fishing-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-casino-fishing-games__game-title {
    font-size: 1.5em;
    color: #003366;
    margin: 20px 0 10px;
}

.page-casino-fishing-games__game-description {
    color: #666;
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-casino-fishing-games__game-card .page-casino-fishing-games__btn {
    margin-bottom: 20px;
}

/* Guide Section */
.page-casino-fishing-games__guide {
    background-color: #f0f4f8;
}

.page-casino-fishing-games__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.page-casino-fishing-games__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-casino-fishing-games__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-casino-fishing-games__step-item p {
    color: #555;
    font-size: 1.05em;
}

.page-casino-fishing-games__step-item ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 15px;
    color: #555;
}

.page-casino-fishing-games__step-item ul li {
    margin-bottom: 8px;
}

.page-casino-fishing-games__step-item ul li strong {
    color: #003366;
}

/* Tips & Tricks Section */
.page-casino-fishing-games__tips-tricks {
    background-color: #fff;
}

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

.page-casino-fishing-games__tip-item {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-casino-fishing-games__tip-item:hover {
    background-color: #e6edf5;
}

.page-casino-fishing-games__tip-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-casino-fishing-games__tip-item p {
    color: #666;
    font-size: 1em;
}

/* Promotions Section */
.page-casino-fishing-games__promotions {
    background-color: #003366;
    color: #fff;
}

.page-casino-fishing-games__promotions .page-casino-fishing-games__section-title {
    color: #FFD700;
}

.page-casino-fishing-games__promotions .page-casino-fishing-games__section-title::after {
    background-color: #fff;
}

.page-casino-fishing-games__promotions .page-casino-fishing-games__section-intro {
    color: #e0e0e0;
}

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

.page-casino-fishing-games__promo-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino-fishing-games__promo-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.page-casino-fishing-games__promo-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-casino-fishing-games__promo-item p {
    color: #f0f0f0;
    font-size: 1em;
}

.page-casino-fishing-games__cta-bottom {
    margin-top: 50px;
}

/* FAQ Section */
.page-casino-fishing-games__faq {
    background-color: #f8f8f8;
}

.page-casino-fishing-games__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-casino-fishing-games__faq-question {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-casino-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
}

.page-casino-fishing-games__faq-question.active::after {
    content: '-';
}

.page-casino-fishing-games__faq-answer {
    color: #666;
    font-size: 1em;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    margin-top: 15px;
}

.page-casino-fishing-games__faq-answer.active {
    display: block;
}

/* Call to Action Section */
.page-casino-fishing-games__cta {
    background: linear-gradient(90deg, #003366, #1a4f8a);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.page-casino-fishing-games__cta-image {
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-casino-fishing-games__cta-content {
    max-width: 600px;
    text-align: left;
}

.page-casino-fishing-games__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-casino-fishing-games__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-casino-fishing-games__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-casino-fishing-games__hero-content {
        text-align: center;
    }

    .page-casino-fishing-games__hero-title {
        font-size: 2.8em;
    }

    .page-casino-fishing-games__hero-description {
        font-size: 1.1em;
    }

    .page-casino-fishing-games__cta {
        flex-direction: column;
        text-align: center;
    }

    .page-casino-fishing-games__cta-content {
        text-align: center;
    }

    .page-casino-fishing-games__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-casino-fishing-games__section {
        padding: 40px 0;
    }

    .page-casino-fishing-games__section-title {
        font-size: 2.2em;
    }

    .page-casino-fishing-games__hero-title {
        font-size: 2.2em;
    }

    .page-casino-fishing-games__hero-description {
        font-size: 1em;
    }

    .page-casino-fishing-games__features-grid,
    .page-casino-fishing-games__game-grid,
    .page-casino-fishing-games__tips-grid,
    .page-casino-fishing-games__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-casino-fishing-games__step-title,
    .page-casino-fishing-games__feature-title,
    .page-casino-fishing-games__game-title,
    .page-casino-fishing-games__tip-title,
    .page-casino-fishing-games__promo-title,
    .page-casino-fishing-games__faq-question {
        font-size: 1.4em;
    }

    .page-casino-fishing-games__cta-title {
        font-size: 2em;
    }

    .page-casino-fishing-games__cta-image {
        max-width: 300px;
    }
}