.page-game-types-lottery-games-intro {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #1a1a1a; /* Deep dark background */
}

.page-game-types-lottery-games-intro__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF; /* White text for contrast on gradient */
}

.page-game-types-lottery-games-intro__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.page-game-types-lottery-games-intro__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-game-types-lottery-games-intro__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-game-types-lottery-games-intro__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF; /* White for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-game-types-lottery-games-intro__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #F0F0F0;
}

.page-game-types-lottery-games-intro__hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Deep red text on gold */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery-games-intro__hero-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-game-types-lottery-games-intro__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-game-types-lottery-games-intro__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-types-lottery-games-intro__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Deep red underline */
    border-radius: 2px;
}

.page-game-types-lottery-games-intro__section-intro {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #B0B0B0;
}

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

.page-game-types-lottery-games-intro__game-card {
    background-color: #2a2a2a; /* Darker background for cards */
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-types-lottery-games-intro__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-game-types-lottery-games-intro__game-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-game-types-lottery-games-intro__game-card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-game-types-lottery-games-intro__game-card-description {
    font-size: 0.95em;
    line-height: 1.7;
    color: #C0C0C0;
    flex-grow: 1;
    margin-bottom: 25px;
}

.page-game-types-lottery-games-intro__game-card-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #8B0000; /* Deep red button */
    color: #FFFFFF; /* White text on red */
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-types-lottery-games-intro__game-card-btn:hover {
    background-color: #6a0000; /* Darker red on hover */
    transform: translateY(-2px);
}

.page-game-types-lottery-games-intro__how-to-play {
    background-color: #1a1a1a;
}

.page-game-types-lottery-games-intro__steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 40px;
}

.page-game-types-lottery-games-intro__steps-list li {
    background-color: #2a2a2a;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700; /* Gold accent */
}

.page-game-types-lottery-games-intro__step-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 10px;
}

.page-game-types-lottery-games-intro__steps-list p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-game-types-lottery-games-intro__steps-list a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-types-lottery-games-intro__steps-list a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-game-types-lottery-games-intro__cta-group {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.page-game-types-lottery-games-intro__cta-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery-games-intro__cta-btn--primary {
    background-color: #FFD700;
    color: #8B0000;
}

.page-game-types-lottery-games-intro__cta-btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-types-lottery-games-intro__cta-btn--secondary {
    background-color: #8B0000;
    color: #FFFFFF;
    border: 2px solid #FFD700;
}

.page-game-types-lottery-games-intro__cta-btn--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-types-lottery-games-intro__winning-tips {
    background-color: #202020;
    position: relative;
    padding-bottom: 80px;
}

.page-game-types-lottery-games-intro__tips-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-game-types-lottery-games-intro__tips-list li {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-right: 4px solid #8B0000; /* Red accent */
}

.page-game-types-lottery-games-intro__tip-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for tip titles */
    margin-bottom: 10px;
}

.page-game-types-lottery-games-intro__tips-list p {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
}

.page-game-types-lottery-games-intro__tips-img {
    width: 80%;
    max-width: 700px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-types-lottery-games-intro__why-winclub {
    background-color: #1a1a1a;
}

.page-game-types-lottery-games-intro__benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 40px;
}

.page-game-types-lottery-games-intro__benefits-list li {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
    border-left: 4px solid #FFD700;
}

.page-game-types-lottery-games-intro__benefit-highlight {
    color: #FFD700;
}

.page-game-types-lottery-games-intro__cta-bottom {
    margin-top: 60px;
}

.page-game-types-lottery-games-intro__faq {
    background-color: #202020;
}

.page-game-types-lottery-games-intro__accordion {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-game-types-lottery-games-intro__accordion-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games-intro__accordion-header {
    background-color: #3a3a3a; /* Slightly lighter dark for header */
    color: #FFD700; /* Gold for accordion header */
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-types-lottery-games-intro__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #8B0000; /* Red plus sign */
    transition: transform 0.3s ease;
}

.page-game-types-lottery-games-intro__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-types-lottery-games-intro__accordion-header:hover {
    background-color: #4a4a4a;
}

.page-game-types-lottery-games-intro__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #2a2a2a;
}

.page-game-types-lottery-games-intro__accordion-content.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-game-types-lottery-games-intro__accordion-content p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-game-types-lottery-games-intro__accordion-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-types-lottery-games-intro__accordion-content a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-game-types-lottery-games-intro .keyword-highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-lottery-games-intro__hero-title {
        font-size: 2.5em;
    }

    .page-game-types-lottery-games-intro__hero-description {
        font-size: 1.1em;
    }

    .page-game-types-lottery-games-intro__section-title {
        font-size: 2em;
    }

    .page-game-types-lottery-games-intro__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-game-types-lottery-games-intro__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-game-types-lottery-games-intro__cta-btn {
        width: 80%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .page-game-types-lottery-games-intro__hero {
        padding: 60px 15px;
    }

    .page-game-types-lottery-games-intro__hero-title {
        font-size: 2em;
    }

    .page-game-types-lottery-games-intro__hero-description {
        font-size: 1em;
    }

    .page-game-types-lottery-games-intro__section {
        padding: 40px 15px;
    }

    .page-game-types-lottery-games-intro__section-title {
        font-size: 1.8em;
    }

    .page-game-types-lottery-games-intro__game-card-title {
        font-size: 1.4em;
    }

    .page-game-types-lottery-games-intro__tips-list {
        grid-template-columns: 1fr;
    }

    .page-game-types-lottery-games-intro__tips-img {
        width: 95%;
    }

    .page-game-types-lottery-games-intro__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-game-types-lottery-games-intro__accordion-content {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-game-types-lottery-games-intro__hero-title {
        font-size: 1.8em;
    }

    .page-game-types-lottery-games-intro__hero-description {
        font-size: 0.9em;
    }

    .page-game-types-lottery-games-intro__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-types-lottery-games-intro__section-title {
        font-size: 1.5em;
    }

    .page-game-types-lottery-games-intro__cta-btn {
        font-size: 1.05em;
        padding: 15px 30px;
    }

    .page-game-types-lottery-games-intro__steps-list li {
        padding: 20px;
    }

    .page-game-types-lottery-games-intro__step-title {
        font-size: 1.5em;
    }
}