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

.page-game-lobby-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-game-lobby-fishing-games__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:fishing_game_pattern,abstract_waves]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-lobby-fishing-games__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-game-lobby-fishing-games__hero-subtitle {
    font-size: 1.3em;
    color: #F0F0F0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-lobby-fishing-games__hero-subtitle strong {
    color: #FFD700;
}

.page-game-lobby-fishing-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

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

.page-game-lobby-fishing-games__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-fishing-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-fishing-games__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text with border */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-game-lobby-fishing-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.page-game-lobby-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-fishing-games__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-game-lobby-fishing-games__about-fishing .page-game-lobby-fishing-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-game-lobby-fishing-games__grid-item {
    background-color: #1a2b40; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-fishing-games__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-lobby-fishing-games__grid-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games__grid-item p {
    color: #C0C0C0;
}

.page-game-lobby-fishing-games__how-to-play {
    background-color: #0f2238;
}

.page-game-lobby-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-game-lobby-fishing-games__steps-list li {
    background-color: #1a2b40;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.page-game-lobby-fishing-games__btn--inline {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 6px;
    align-self: flex-start;
}

.page-game-lobby-fishing-games__btn--inline:hover {
    background-color: #e6c200;
}

.page-game-lobby-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-lobby-fishing-games__tips-list li {
    background-color: #1a2b40;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-game-lobby-fishing-games__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px #FFD700);
}

.page-game-lobby-fishing-games__tip-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

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

.page-game-lobby-fishing-games__featured-games {
    background-color: #0f2238;
}

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

.page-game-lobby-fishing-games__game-card {
    background-color: #1a2b40;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-lobby-fishing-games__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-game-lobby-fishing-games__game-card p {
    color: #C0C0C0;
    padding: 0 15px 20px 15px;
}

.page-game-lobby-fishing-games__btn--small {
    padding: 10px 25px;
    font-size: 0.95em;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 6px;
}

.page-game-lobby-fishing-games__btn--small:hover {
    background-color: #e6c200;
}

.page-game-lobby-fishing-games__promotions {
    background-color: #0A192F;
}

.page-game-lobby-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-lobby-fishing-games__promo-list li {
    background-color: #1a2b40;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-game-lobby-fishing-games__promo-list li p {
    color: #C0C0C0;
    margin-bottom: 15px;
}

.page-game-lobby-fishing-games__cta-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-lobby-fishing-games__cta-bottom p {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

.page-game-lobby-fishing-games__app-download {
    background-color: #0f2238;
    padding: 80px 0;
}

.page-game-lobby-fishing-games__app-benefits {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 30px auto 50px auto;
    text-align: left;
}

.page-game-lobby-fishing-games__app-benefits li {
    background-color: #1a2b40;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    color: #C0C0C0;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games__app-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.page-game-lobby-fishing-games__qr-code {
    width: 180px;
    height: 180px;
    border: 5px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-game-lobby-fishing-games__faq {
    background-color: #0A192F;
}

.page-game-lobby-fishing-games__faq-items {
    margin-top: 50px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-fishing-games__faq-item {
    background-color: #1a2b40;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-fishing-games__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-lobby-fishing-games__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-lobby-fishing-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-lobby-fishing-games__faq-answer {
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-left: 10px;
    border-left: 2px solid #FFD700;
}

.page-game-lobby-fishing-games__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

.page-game-lobby-fishing-games__cta-final {
    background: linear-gradient(135deg, #0f2238 0%, #0A192F 100%);
    padding: 100px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-game-lobby-fishing-games__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.page-game-lobby-fishing-games__cta-description {
    font-size: 1.4em;
    color: #F0F0F0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-fishing-games__btn--hero {
    padding: 20px 40px;
    font-size: 1.3em;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-game-lobby-fishing-games__btn--hero:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-lobby-fishing-games__hero-title {
        font-size: 3em;
    }
    .page-game-lobby-fishing-games__section-title {
        font-size: 2em;
    }
    .page-game-lobby-fishing-games__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-fishing-games__hero-title {
        font-size: 2.5em;
    }
    .page-game-lobby-fishing-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-lobby-fishing-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-lobby-fishing-games__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-game-lobby-fishing-games__section {
        padding: 60px 0;
    }
    .page-game-lobby-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-fishing-games__grid, .page-game-lobby-fishing-games__tips-list, .page-game-lobby-fishing-games__game-cards, .page-game-lobby-fishing-games__promo-list {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-fishing-games__app-cta {
        flex-direction: column;
    }
    .page-game-lobby-fishing-games__qr-code {
        width: 150px;
        height: 150px;
    }
    .page-game-lobby-fishing-games__cta-title {
        font-size: 2em;
    }
    .page-game-lobby-fishing-games__cta-description {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-fishing-games__hero-title {
        font-size: 2em;
    }
    .page-game-lobby-fishing-games__hero-subtitle {
        font-size: 1em;
    }
    .page-game-lobby-fishing-games__btn {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-lobby-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-fishing-games__grid-item, .page-game-lobby-fishing-games__steps-list li, .page-game-lobby-fishing-games__tips-list li, .page-game-lobby-fishing-games__game-card, .page-game-lobby-fishing-games__promo-list li, .page-game-lobby-fishing-games__faq-item {
        padding: 20px;
    }
    .page-game-lobby-fishing-games__cta-title {
        font-size: 1.8em;
    }
    .page-game-lobby-fishing-games__cta-description {
        font-size: 1em;
    }
    .page-game-lobby-fishing-games__btn--hero {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}