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

.page-game-lobby-fishing-games-guide-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A192F;
}

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

.page-game-lobby-fishing-games-guide-tips__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #2a3d5f 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-game-lobby-fishing-games-guide-tips__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-game-lobby-fishing-games-guide-tips__hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-fishing-games-guide-tips__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-game-lobby-fishing-games-guide-tips__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-game-lobby-fishing-games-guide-tips__btn--primary:hover {
    background-color: #e0b800;
    transform: translateY(-3px);
}

.page-game-lobby-fishing-games-guide-tips__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games-guide-tips__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-game-lobby-fishing-games-guide-tips__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-game-lobby-fishing-games-guide-tips__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-game-lobby-fishing-games-guide-tips__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-game-lobby-fishing-games-guide-tips__intro p,
.page-game-lobby-fishing-games-guide-tips__why-xn88 p,
.page-game-lobby-fishing-games-guide-tips__basic-guide p,
.page-game-lobby-fishing-games-guide-tips__advanced-tips p,
.page-game-lobby-fishing-games-guide-tips__common-mistakes p,
.page-game-lobby-fishing-games-guide-tips__promotions p,
.page-game-lobby-fishing-games-guide-tips__responsible-gaming p,
.page-game-lobby-fishing-games-guide-tips__cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.page-game-lobby-fishing-games-guide-tips__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-lobby-fishing-games-guide-tips__list li {
    background-color: #1A2B42;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-game-lobby-fishing-games-guide-tips__list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-game-lobby-fishing-games-guide-tips__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

.page-game-lobby-fishing-games-guide-tips a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-lobby-fishing-games-guide-tips a:hover {
    color: #e0b800;
    text-decoration: underline;
}

.page-game-lobby-fishing-games-guide-tips__btn--cta {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-fishing-games-guide-tips__cta {
    background-color: #1A2B42;
    text-align: center;
    padding: 80px 0;
}

.page-game-lobby-fishing-games-guide-tips__cta .page-game-lobby-fishing-games-guide-tips__section-title {
    color: #FFD700;
}

.page-game-lobby-fishing-games-guide-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-lobby-fishing-games-guide-tips__hero-title {
        font-size: 2.5em;
    }

    .page-game-lobby-fishing-games-guide-tips__hero-subtitle {
        font-size: 1.2em;
    }

    .page-game-lobby-fishing-games-guide-tips__hero-actions,
    .page-game-lobby-fishing-games-guide-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-lobby-fishing-games-guide-tips__btn {
        padding: 12px 25px;
        font-size: 1em;
        width: 80%;
        margin: 0 auto;
    }

    .page-game-lobby-fishing-games-guide-tips__section-title {
        font-size: 2em;
    }

    .page-game-lobby-fishing-games-guide-tips__subsection-title {
        font-size: 1.5em;
    }

    .page-game-lobby-fishing-games-guide-tips__intro p,
    .page-game-lobby-fishing-games-guide-tips__why-xn88 p,
    .page-game-lobby-fishing-games-guide-tips__basic-guide p,
    .page-game-lobby-fishing-games-guide-tips__advanced-tips p,
    .page-game-lobby-fishing-games-guide-tips__common-mistakes p,
    .page-game-lobby-fishing-games-guide-tips__promotions p,
    .page-game-lobby-fishing-games-guide-tips__responsible-gaming p,
    .page-game-lobby-fishing-games-guide-tips__cta p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-fishing-games-guide-tips__hero-title {
        font-size: 2em;
    }

    .page-game-lobby-fishing-games-guide-tips__hero-subtitle {
        font-size: 1em;
    }

    .page-game-lobby-fishing-games-guide-tips__btn {
        width: 90%;
    }

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

    .page-game-lobby-fishing-games-guide-tips__subsection-title {
        font-size: 1.3em;
    }
}