/* style/lottery-games-how-to-play.css */
:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-color-light: #F8F8F8;
    --text-color-dark: #1A1A1A;
    --background-light: #FFFFFF;
    --background-dark: #0A192F;
    --border-color: #334455;
}

.page-lottery-games-how-to-play {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

.page-lottery-games-how-to-play__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-lottery-games-how-to-play__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a40 100%);
    color: var(--text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-how-to-play__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-lottery-games-how-to-play__hero > * {
    position: relative;
    z-index: 1;
}

.page-lottery-games-how-to-play__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--text-color-light);
}

.page-lottery-games-how-to-play__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-lottery-games-how-to-play__section {
    padding: 80px 0;
}

.page-lottery-games-how-to-play__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-lottery-games-how-to-play__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-lottery-games-how-to-play__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-lottery-games-how-to-play__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-lottery-games-how-to-play__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-lottery-games-how-to-play__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-lottery-games-how-to-play__btn--secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-lottery-games-how-to-play__btn--secondary:hover {
    background-color: #0d223f;
    transform: translateY(-3px);
}

.page-lottery-games-how-to-play__grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-lottery-games-how-to-play__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #333;
}

.page-lottery-games-how-to-play__text-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-lottery-games-how-to-play__text-content a:hover {
    color: var(--secondary-color);
}

.page-lottery-games-how-to-play__image-wrapper {
    text-align: center;
}

.page-lottery-games-how-to-play__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery-games-how-to-play__grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-lottery-games-how-to-play__card {
    background-color: var(--background-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.page-lottery-games-how-to-play__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-lottery-games-how-to-play__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.page-lottery-games-how-to-play__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-lottery-games-how-to-play__card-text {
    font-size: 1em;
    color: #444;
}

.page-lottery-games-how-to-play__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-lottery-games-how-to-play__step-item {
    background-color: var(--background-light);
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 30px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-lottery-games-how-to-play__step-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-lottery-games-how-to-play__step-item p {
    margin-bottom: 10px;
    color: #333;
}

.page-lottery-games-how-to-play__step-item ul {
    list-style-type: disc;
    margin-left: 25px;
    color: #333;
}

.page-lottery-games-how-to-play__step-item ul li {
    margin-bottom: 8px;
}

.page-lottery-games-how-to-play__image-wrapper--center {
    margin-top: 40px;
}

.page-lottery-games-how-to-play__list-bullet {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-lottery-games-how-to-play__list-bullet li {
    background-color: var(--background-light);
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    position: relative;
    padding-left: 40px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.page-lottery-games-how-to-play__list-bullet li::before {
    content: '✅'; /* Unicode checkmark */
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.page-lottery-games-how-to-play__list-bullet li a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-lottery-games-how-to-play__list-bullet li a:hover {
    color: var(--secondary-color);
}

.page-lottery-games-how-to-play__app-cta {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 80px 0;
}

.page-lottery-games-how-to-play__app-cta .page-lottery-games-how-to-play__section-title,
.page-lottery-games-how-to-play__app-cta p {
    color: var(--text-color-light);
}

.page-lottery-games-how-to-play__app-cta .highlight {
    color: var(--secondary-color);
}

.page-lottery-games-how-to-play__contact {
    text-align: center;
    padding-bottom: 100px;
}

.page-lottery-games-how-to-play .highlight {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-how-to-play__grid-two-cols {
        grid-template-columns: 1fr;
    }

    .page-lottery-games-how-to-play__hero-title {
        font-size: 2.8em;
    }

    .page-lottery-games-how-to-play__section-title {
        font-size: 2em;
    }

    .page-lottery-games-how-to-play__app-cta .page-lottery-games-how-to-play__image-wrapper {
        order: -1; /* Image first on mobile */
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-how-to-play__hero {
        padding: 80px 0;
    }

    .page-lottery-games-how-to-play__hero-title {
        font-size: 2.2em;
    }

    .page-lottery-games-how-to-play__hero-subtitle {
        font-size: 1.1em;
    }

    .page-lottery-games-how-to-play__section {
        padding: 60px 0;
    }

    .page-lottery-games-how-to-play__section-title {
        font-size: 1.8em;
    }

    .page-lottery-games-how-to-play__grid-cards {
        grid-template-columns: 1fr;
    }

    .page-lottery-games-how-to-play__card {
        padding: 25px;
    }

    .page-lottery-games-how-to-play__step-item {
        padding: 20px 25px;
    }

    .page-lottery-games-how-to-play__step-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-how-to-play__hero-title {
        font-size: 1.8em;
    }

    .page-lottery-games-how-to-play__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-lottery-games-how-to-play__section-title {
        font-size: 1.5em;
    }

    .page-lottery-games-how-to-play__list-bullet li {
        padding-left: 35px;
    }
}