/* style/game-guides-lottery-play-methods.css */
.page-game-guides-lottery-play-methods {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

.page-game-guides-lottery-play-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides-lottery-play-methods__hero-section {
    background: linear-gradient(135deg, #0A192F, #1a3a60);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.page-game-guides-lottery-play-methods__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-game-guides-lottery-play-methods__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-game-guides-lottery-play-methods__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold accent */
    color: #0A192F; /* Dark text for gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-guides-lottery-play-methods__cta-button:hover {
    background-color: #e0bb00;
    transform: translateY(-3px);
}

.page-game-guides-lottery-play-methods__introduction-section,
.page-game-guides-lottery-play-methods__content-section,
.page-game-guides-lottery-play-methods__strategy-section,
.page-game-guides-lottery-play-methods__why-choose-us-section,
.page-game-guides-lottery-play-methods__call-to-action-section,
.page-game-guides-lottery-play-methods__responsible-gaming-section {
    padding: 60px 0;
    background-color: #122842; /* Slightly lighter dark blue for sections */
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-game-guides-lottery-play-methods__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-game-guides-lottery-play-methods p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-game-guides-lottery-play-methods .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-game-guides-lottery-play-methods__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-lottery-play-methods__game-type-card {
    background-color: #0A192F;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a4a70;
}

.page-game-guides-lottery-play-methods__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 2px solid #2a4a70;
    padding-bottom: 10px;
}

.page-game-guides-lottery-play-methods__card-body h4 {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-game-guides-lottery-play-methods__card-body ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-game-guides-lottery-play-methods__card-body ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-game-guides-lottery-play-methods__strategy-list,
.page-game-guides-lottery-play-methods__advantages-list,
.page-game-guides-lottery-play-methods__responsible-list {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-guides-lottery-play-methods__strategy-list li,
.page-game-guides-lottery-play-methods__advantages-list li,
.page-game-guides-lottery-play-methods__responsible-list li {
    background-color: #0A192F;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    border-left: 5px solid #FFD700;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-game-guides-lottery-play-methods__strategy-list li::before,
.page-game-guides-lottery-play-methods__advantages-list li::before,
.page-game-guides-lottery-play-methods__responsible-list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-game-guides-lottery-play-methods__call-to-action-section {
    text-align: center;
    background-color: #0A192F;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FFD700;
}

.page-game-guides-lottery-play-methods__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-game-guides-lottery-play-methods__responsible-gaming-text {
    margin-top: 30px;
    font-style: italic;
    color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-guides-lottery-play-methods__hero-title {
        font-size: 2.5em;
    }

    .page-game-guides-lottery-play-methods__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-guides-lottery-play-methods__section-title {
        font-size: 2em;
    }

    .page-game-guides-lottery-play-methods p,
    .page-game-guides-lottery-play-methods ul li {
        font-size: 1em;
    }

    .page-game-guides-lottery-play-methods__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-guides-lottery-play-methods__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-game-guides-lottery-play-methods__game-type-card,
    .page-game-guides-lottery-play-methods__strategy-list li,
    .page-game-guides-lottery-play-methods__advantages-list li,
    .page-game-guides-lottery-play-methods__responsible-list li {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-lottery-play-methods__hero-title {
        font-size: 2em;
    }

    .page-game-guides-lottery-play-methods__hero-subtitle {
        font-size: 0.9em;
    }

    .page-game-guides-lottery-play-methods__section-title {
        font-size: 1.8em;
    }

    .page-game-guides-lottery-play-methods__hero-section,
    .page-game-guides-lottery-play-methods__introduction-section,
    .page-game-guides-lottery-play-methods__content-section,
    .page-game-guides-lottery-play-methods__strategy-section,
    .page-game-guides-lottery-play-methods__why-choose-us-section,
    .page-game-guides-lottery-play-methods__call-to-action-section,
    .page-game-guides-lottery-play-methods__responsible-gaming-section {
        padding: 40px 0;
    }
}