/* style/game-lobby-fishing-games-intro.css */

/* Base styles for the page content */
.page-game-lobby-fishing-games-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-game-lobby-fishing-games-intro__hero {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-game-lobby-fishing-games-intro__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

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

.page-game-lobby-fishing-games-intro__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-game-lobby-fishing-games-intro__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-fishing-games-intro__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0f2ff;
}

/* Buttons */
.page-game-lobby-fishing-games-intro__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games-intro__btn--primary {
    background-color: #ffc107;
    color: #000;
    border: none;
}

.page-game-lobby-fishing-games-intro__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-game-lobby-fishing-games-intro__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #ffc107;
}

.page-game-lobby-fishing-games-intro__btn--secondary:hover {
    background-color: #ffc107;
    color: #000;
    transform: translateY(-2px);
}

.page-game-lobby-fishing-games-intro__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Sections */
.page-game-lobby-fishing-games-intro__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-game-lobby-fishing-games-intro__section:last-of-type {
    border-bottom: none;
}

.page-game-lobby-fishing-games-intro__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-lobby-fishing-games-intro__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-game-lobby-fishing-games-intro__sub-title {
    font-size: 1.6em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games-intro__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-game-lobby-fishing-games-intro__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-game-lobby-fishing-games-intro__list--two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding-left: 0;
}

.page-game-lobby-fishing-games-intro__list--two-col li {
    background-color: #e9f7ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    color: #333;
}

.page-game-lobby-fishing-games-intro__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-fishing-games-intro__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-fishing-games-intro__image--left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    width: 40%; /* Adjust as needed */
}

.page-game-lobby-fishing-games-intro__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    width: 40%; /* Adjust as needed */
}

.page-game-lobby-fishing-games-intro__text-after-image {
    clear: both;
    padding-top: 20px; /* Adjust if image floats are not cleared */
}

/* Game Grid */
.page-game-lobby-fishing-games-intro__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

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

.page-game-lobby-fishing-games-intro__game-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games-intro__game-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-game-lobby-fishing-games-intro__game-description {
    color: #666;
    font-size: 0.95em;
}

/* Promotions Section */
.page-game-lobby-fishing-games-intro__section--promotions {
    background-color: #e9f7ff;
    text-align: center;
}

.page-game-lobby-fishing-games-intro__promo-text {
    font-size: 1.2em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-game-lobby-fishing-games-intro__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #007bff;
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games-intro__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-lobby-fishing-games-intro__feature-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games-intro__feature-item p {
    color: #666;
}

/* CTA Section */
.page-game-lobby-fishing-games-intro__section--cta {
    background: linear-gradient(90deg, #0056b3, #007bff);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

.page-game-lobby-fishing-games-intro__section--cta .page-game-lobby-fishing-games-intro__section-title {
    color: #fff;
}

.page-game-lobby-fishing-games-intro__section--cta .page-game-lobby-fishing-games-intro__section-title::after {
    background-color: #ffc107;
}

.page-game-lobby-fishing-games-intro__section--cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0f2ff;
}

.page-game-lobby-fishing-games-intro__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* FAQ Section */
.page-game-lobby-fishing-games-intro__section--faq {
    background-color: #fff;
}

.page-game-lobby-fishing-games-intro__faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f2faff;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-fishing-games-intro__faq-question {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-lobby-fishing-games-intro__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games-intro__faq-question.active::after {
    transform: rotate(45deg);
}

.page-game-lobby-fishing-games-intro__faq-answer {
    font-size: 1.05em;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #e0f2ff;
    margin-top: 10px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-game-lobby-fishing-games-intro__faq-answer.active {
    display: block;
}

/* Conclusion Section */
.page-game-lobby-fishing-games-intro__section--conclusion {
    text-align: center;
    background-color: #f8f9fa;
}

.page-game-lobby-fishing-games-intro__section--conclusion p {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-fishing-games-intro__title {
        font-size: 2.2em;
    }

    .page-game-lobby-fishing-games-intro__subtitle {
        font-size: 1.1em;
    }

    .page-game-lobby-fishing-games-intro__section-title {
        font-size: 1.8em;
    }

    .page-game-lobby-fishing-games-intro__image--left,
    .page-game-lobby-fishing-games-intro__image--right {
        float: none;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-fishing-games-intro__hero {
        padding: 60px 0;
        min-height: 350px;
    }

    .page-game-lobby-fishing-games-intro__title {
        font-size: 1.8em;
    }

    .page-game-lobby-fishing-games-intro__subtitle {
        font-size: 1em;
    }

    .page-game-lobby-fishing-games-intro__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }

    .page-game-lobby-fishing-games-intro__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-game-lobby-fishing-games-intro__section {
        padding: 40px 0;
    }

    .page-game-lobby-fishing-games-intro__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .page-game-lobby-fishing-games-intro__sub-title {
        font-size: 1.4em;
    }

    .page-game-lobby-fishing-games-intro__game-grid,
    .page-game-lobby-fishing-games-intro__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-game-lobby-fishing-games-intro__list--two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-fishing-games-intro__container {
        padding: 0 15px;
    }

    .page-game-lobby-fishing-games-intro__title {
        font-size: 1.5em;
    }

    .page-game-lobby-fishing-games-intro__subtitle {
        font-size: 0.9em;
    }

    .page-game-lobby-fishing-games-intro__btn {
        width: 100%;
        margin: 5px 0;
    }

    .page-game-lobby-fishing-games-intro__cta-buttons {
        flex-direction: column;
    }
}