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

:root {
    --primary-color: #0A2463;
    --secondary-color: #E0B143;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f4f7f6;
    --bg-dark: #071a47;
    --accent-color-contrast: #f5db9c; /* Complementary to primary */
    --accent-color-secondary-contrast: #1f4ebc; /* Complementary to secondary */
}

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

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

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

.page-game-lobby-fishing-games__section:nth-of-type(even) {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-game-lobby-fishing-games__section:nth-of-type(even) h2,
.page-game-lobby-fishing-games__section:nth-of-type(even) h3 {
    color: var(--secondary-color);
}

.page-game-lobby-fishing-games__section:nth-of-type(even) p {
    color: var(--text-light);
}

.page-game-lobby-fishing-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.page-game-lobby-fishing-games__section:nth-of-type(even) .page-game-lobby-fishing-games__section-title {
    color: var(--secondary-color);
}

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

.page-game-lobby-fishing-games__section-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #666;
}

.page-game-lobby-fishing-games__section:nth-of-type(even) .page-game-lobby-fishing-games__section-subtitle {
    color: #cccccc;
}

.page-game-lobby-fishing-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-game-lobby-fishing-games__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-game-lobby-fishing-games__btn--primary:hover {
    background-color: var(--accent-color-contrast);
    transform: translateY(-2px);
}

.page-game-lobby-fishing-games__btn--secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.page-game-lobby-fishing-games__btn--secondary:hover {
    background-color: var(--primary-color);
    color: var(--accent-color-contrast);
    border-color: var(--accent-color-contrast);
    transform: translateY(-2px);
}

/* Hero Section */
.page-game-lobby-fishing-games__hero {
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    padding: 100px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

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

.page-game-lobby-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-game-lobby-fishing-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-game-lobby-fishing-games__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
}

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

/* Why Choose Section */
.page-game-lobby-fishing-games__why-choose {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

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

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

.page-game-lobby-fishing-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
}

.page-game-lobby-fishing-games__feature-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games__feature-item p {
    color: #555;
}

/* Game Lobbies Section */
.page-game-lobby-fishing-games__game-lobbies {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

.page-game-lobby-fishing-games__game-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

.page-game-lobby-fishing-games__game-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-fishing-games__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--secondary-color);
}

.page-game-lobby-fishing-games__game-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-game-lobby-fishing-games__game-description {
    color: #cccccc;
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-lobby-fishing-games__game-card .page-game-lobby-fishing-games__btn {
    margin-top: auto;
}

/* How to Play Section */
.page-game-lobby-fishing-games__how-to-play {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-game-lobby-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-game-lobby-fishing-games__steps-list li {
    background-color: #ffffff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    counter-increment: step-counter;
    padding-left: 80px;
}

.page-game-lobby-fishing-games__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-game-lobby-fishing-games__steps-list li h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-lobby-fishing-games__steps-list li p {
    color: #555;
}

.page-game-lobby-fishing-games__steps-list li a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-game-lobby-fishing-games__steps-list li a:hover {
    text-decoration: underline;
}

/* Tips Section */
.page-game-lobby-fishing-games__tips {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-game-lobby-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-game-lobby-fishing-games__tips-list li {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games__tips-list li:hover {
    transform: translateY(-5px);
}

.page-game-lobby-fishing-games__tips-list li h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-lobby-fishing-games__tips-list li p {
    color: #cccccc;
}

/* Promotions Section */
.page-game-lobby-fishing-games__promotions {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-game-lobby-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-game-lobby-fishing-games__promo-list li {
    background-color: #ffffff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-game-lobby-fishing-games__promo-list li h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-lobby-fishing-games__promo-list li p {
    color: #555;
}

/* App Download Section */
.page-game-lobby-fishing-games__app-download {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-game-lobby-fishing-games__app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-game-lobby-fishing-games__app-image {
    width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-fishing-games__app-info {
    text-align: left;
    max-width: 500px;
}

.page-game-lobby-fishing-games__app-info h3 {
    color: var(--secondary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games__app-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-game-lobby-fishing-games__app-benefits li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.page-game-lobby-fishing-games__app-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.page-game-lobby-fishing-games__app-note {
    font-style: italic;
    color: #cccccc;
    margin-top: 15px;
}

/* FAQ Section */
.page-game-lobby-fishing-games__faq {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-game-lobby-fishing-games__faq-accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-fishing-games__faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-game-lobby-fishing-games__faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    padding: 20px 30px;
    cursor: pointer;
    margin: 0;
    position: relative;
    text-align: left;
}

.page-game-lobby-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games__faq-item.active .page-game-lobby-fishing-games__faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.page-game-lobby-fishing-games__faq-answer {
    padding: 0 30px 20px;
    text-align: left;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-game-lobby-fishing-games__faq-item.active .page-game-lobby-fishing-games__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 0 30px 30px;
}

/* Conclusion Section */
.page-game-lobby-fishing-games__conclusion {
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    color: var(--text-light);
    padding: 80px 0;
}

.page-game-lobby-fishing-games__conclusion .page-game-lobby-fishing-games__section-title {
    color: var(--secondary-color);
}

.page-game-lobby-fishing-games__conclusion .page-game-lobby-fishing-games__section-subtitle {
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-fishing-games__hero-content {
        text-align: center;
    }

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

    .page-game-lobby-fishing-games__hero-image-wrapper {
        margin-top: 40px;
    }

    .page-game-lobby-fishing-games__app-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-game-lobby-fishing-games__app-info {
        text-align: center;
    }
}

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

    .page-game-lobby-fishing-games__section-title {
        font-size: 2em;
    }

    .page-game-lobby-fishing-games__hero {
        padding: 60px 0;
    }

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

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

    .page-game-lobby-fishing-games__features-grid,
    .page-game-lobby-fishing-games__game-list,
    .page-game-lobby-fishing-games__tips-list {
        grid-template-columns: 1fr;
    }

    .page-game-lobby-fishing-games__steps-list li {
        padding: 25px 20px 25px 65px;
    }

    .page-game-lobby-fishing-games__steps-list li::before {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .page-game-lobby-fishing-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-game-lobby-fishing-games__faq-question::after {
        right: 20px;
    }

    .page-game-lobby-fishing-games__faq-answer {
        padding: 0 20px 15px;
    }
}

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

    .page-game-lobby-fishing-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-game-lobby-fishing-games__section-subtitle {
        font-size: 1em;
    }
}