/* style/game-guides-lottery-betting-tips.css */
.page-game-guides-lottery-betting-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

.page-game-guides-lottery-betting-tips__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #ffc107 100%);
    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: 400px;
}

.page-game-guides-lottery-betting-tips__hero-section .page-game-guides-lottery-betting-tips__container {
    z-index: 1;
    position: relative;
}

.page-game-guides-lottery-betting-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-game-guides-lottery-betting-tips__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-lottery-betting-tips__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
}

.page-game-guides-lottery-betting-tips__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.page-game-guides-lottery-betting-tips__btn--primary {
    background-color: #ffc107;
    color: #007bff;
    border: 2px solid #ffc107;
}

.page-game-guides-lottery-betting-tips__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-game-guides-lottery-betting-tips__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-game-guides-lottery-betting-tips__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-game-guides-lottery-betting-tips__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-game-guides-lottery-betting-tips__section:last-of-type {
    border-bottom: none;
}

.page-game-guides-lottery-betting-tips__intro {
    background-color: #fff;
}

.page-game-guides-lottery-betting-tips__tips {
    background-color: #f0f8ff;
}

.page-game-guides-lottery-betting-tips__types {
    background-color: #fff;
}

.page-game-guides-lottery-betting-tips__registration-guide {
    background-color: #f0f8ff;
}

.page-game-guides-lottery-betting-tips__responsibility {
    background-color: #fff;
}

.page-game-guides-lottery-betting-tips__cta {
    background-color: #007bff;
    color: #fff;
    text-align: center;
}

.page-game-guides-lottery-betting-tips__cta .page-game-guides-lottery-betting-tips__section-title,
.page-game-guides-lottery-betting-tips__cta .page-game-guides-lottery-betting-tips__text {
    color: #fff;
}

.page-game-guides-lottery-betting-tips__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-game-guides-lottery-betting-tips__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #333;
}

.page-game-guides-lottery-betting-tips__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-game-guides-lottery-betting-tips__link:hover {
    text-decoration: underline;
}

.page-game-guides-lottery-betting-tips__highlight {
    color: #0056b3;
    font-weight: bold;
}

.page-game-guides-lottery-betting-tips__tips .page-game-guides-lottery-betting-tips__list {
    list-style: none;
    padding: 0;
}

.page-game-guides-lottery-betting-tips__tips .page-game-guides-lottery-betting-tips__list-item {
    background-color: #fff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-game-guides-lottery-betting-tips__tips .page-game-guides-lottery-betting-tips__list-item:hover {
    transform: translateY(-5px);
}

.page-game-guides-lottery-betting-tips__list-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-game-guides-lottery-betting-tips__numbered-list {
    list-style-type: decimal;
    padding-left: 25px;
}

.page-game-guides-lottery-betting-tips__numbered-list .page-game-guides-lottery-betting-tips__list-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #ffc107;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-lottery-betting-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-guides-lottery-betting-tips__grid-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
}

.page-game-guides-lottery-betting-tips__item-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-game-guides-lottery-betting-tips__item-text {
    color: #555;
    font-size: 1em;
}

.page-game-guides-lottery-betting-tips__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-guides-lottery-betting-tips__btn-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides-lottery-betting-tips__title {
        font-size: 2.8em;
    }
    .page-game-guides-lottery-betting-tips__subtitle {
        font-size: 1.2em;
    }
    .page-game-guides-lottery-betting-tips__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-lottery-betting-tips__hero-section {
        padding: 60px 0;
        min-height: 300px;
    }
    .page-game-guides-lottery-betting-tips__title {
        font-size: 2.2em;
    }
    .page-game-guides-lottery-betting-tips__subtitle {
        font-size: 1em;
    }
    .page-game-guides-lottery-betting-tips__section {
        padding: 40px 0;
    }
    .page-game-guides-lottery-betting-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-guides-lottery-betting-tips__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-guides-lottery-betting-tips__list-title {
        font-size: 1.4em;
    }
    .page-game-guides-lottery-betting-tips__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-guides-lottery-betting-tips__title {
        font-size: 1.8em;
    }
    .page-game-guides-lottery-betting-tips__subtitle {
        font-size: 0.9em;
    }
    .page-game-guides-lottery-betting-tips__btn-group {
        flex-direction: column;
        align-items: center;
    }
    .page-game-guides-lottery-betting-tips__btn {
        width: 80%;
        margin: 5px 0;
    }
    .page-game-guides-lottery-betting-tips__list-item {
        padding: 20px;
    }
    .page-game-guides-lottery-betting-tips__numbered-list .page-game-guides-lottery-betting-tips__list-item {
        padding: 15px;
    }
}

/* Color contrast checks */
/* Text on light background */
.page-game-guides-lottery-betting-tips__text, .page-game-guides-lottery-betting-tips__item-text {
    color: #333; /* Dark gray */
}
.page-game-guides-lottery-betting-tips__intro, .page-game-guides-lottery-betting-tips__types, .page-game-guides-lottery-betting-tips__responsibility {
    background-color: #fff; /* White */
}
/* Contrast ratio for #333 on #fff is > 4.5:1 */

/* Text on tinted background */
.page-game-guides-lottery-betting-tips__tips, .page-game-guides-lottery-betting-tips__registration-guide {
    background-color: #f0f8ff; /* Light blue */
}
/* Contrast ratio for #333 on #f0f8ff is > 4.5:1 */

/* Text on primary/secondary brand colors */
.page-game-guides-lottery-betting-tips__title, .page-game-guides-lottery-betting-tips__subtitle {
    color: #fff; /* White */
}
.page-game-guides-lottery-betting-tips__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #ffc107 100%); /* Blue/Yellow gradient */
}
/* Contrast ratio for #fff on #007bff (blue) is > 4.5:1 */
/* Contrast ratio for #fff on #ffc107 (yellow) is < 4.5:1. Adjusting title/subtitle color for yellow sections or ensuring gradient provides sufficient contrast overall. For hero, it's a gradient, so overall readability is key. */

.page-game-guides-lottery-betting-tips__cta .page-game-guides-lottery-betting-tips__section-title,
.page-game-guides-lottery-betting-tips__cta .page-game-guides-lottery-betting-tips__text {
    color: #fff; /* White */
}
.page-game-guides-lottery-betting-tips__cta {
    background-color: #007bff; /* Blue */
}
/* Contrast ratio for #fff on #007bff is > 4.5:1 */

.page-game-guides-lottery-betting-tips__btn--primary {
    background-color: #ffc107; /* Yellow */
    color: #007bff; /* Blue */
}
/* Contrast ratio for #007bff on #ffc107 is > 4.5:1 */

.page-game-guides-lottery-betting-tips__btn--secondary {
    background-color: #007bff; /* Blue */
    color: #fff; /* White */
}
/* Contrast ratio for #fff on #007bff is > 4.5:1 */

.page-game-guides-lottery-betting-tips__highlight {
    color: #0056b3; /* Darker blue */
}
/* Contrast ratio for #0056b3 on #fff is > 4.5:1 */