/* style/betting-games-lottery-gameplay.css */

:root {
    --page-main-color: #1A1A2E;
    --page-accent-color: #E0B34E;
    --page-text-light: #F8F8F8;
    --page-text-dark: #1A1A2E;
    --page-background-dark: #1A1A2E;
    --page-background-light: #f4f4f4;
    --page-button-bg-primary: #E0B34E;
    --page-button-text-primary: #1A1A2E;
    --page-button-bg-secondary: #33334d;
    --page-button-text-secondary: #E0B34E;
    --page-border-color: #33334d;
}

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

.page-betting-games-lottery-gameplay__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-games-lottery-gameplay__section {
    padding: 60px 0;
    text-align: center;
}

.page-betting-games-lottery-gameplay__section:nth-of-type(even) {
    background-color: #2a2a47; /* Slightly lighter dark for contrast */
}

.page-betting-games-lottery-gameplay__section-title {
    font-size: 2.8em;
    color: var(--page-accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.page-betting-games-lottery-gameplay__section-description {
    font-size: 1.1em;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-betting-games-lottery-gameplay__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-betting-games-lottery-gameplay__btn--primary {
    background-color: var(--page-button-bg-primary);
    color: var(--page-button-text-primary);
}

.page-betting-games-lottery-gameplay__btn--primary:hover {
    background-color: #ffc966; /* Lighter gold */
    transform: translateY(-2px);
}

.page-betting-games-lottery-gameplay__btn--secondary {
    background-color: var(--page-button-bg-secondary);
    color: var(--page-button-text-secondary);
    border: 1px solid var(--page-accent-color);
}

.page-betting-games-lottery-gameplay__btn--secondary:hover {
    background-color: var(--page-accent-color);
    color: var(--page-button-text-primary);
    transform: translateY(-2px);
}

.page-betting-games-lottery-gameplay__btn--small {
    padding: 8px 20px;
    font-size: 0.9em;
}

.page-betting-games-lottery-gameplay__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-betting-games-lottery-gameplay__hero {
    background: linear-gradient(135deg, var(--page-background-dark), #33334d);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 70vh;
}

.page-betting-games-lottery-gameplay__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-betting-games-lottery-gameplay__hero-title {
    font-size: 3.5em;
    color: var(--page-accent-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-betting-games-lottery-gameplay__hero-subtitle {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 40px;
}

.page-betting-games-lottery-gameplay__hero-image-wrapper {
    flex-shrink: 0;
}

.page-betting-games-lottery-gameplay__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Us Section */
.page-betting-games-lottery-gameplay__why-us {
    background-color: var(--page-background-dark);
}

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

.page-betting-games-lottery-gameplay__feature-item {
    background-color: #2a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-betting-games-lottery-gameplay__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-accent-color));
}

.page-betting-games-lottery-gameplay__feature-title {
    font-size: 1.8em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
}

.page-betting-games-lottery-gameplay__feature-description {
    color: #cccccc;
}

/* Game Types Section */
.page-betting-games-lottery-gameplay__game-types {
    background-color: #2a2a47;
}

.page-betting-games-lottery-gameplay__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-betting-games-lottery-gameplay__game-card {
    background-color: var(--page-background-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.page-betting-games-lottery-gameplay__game-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-betting-games-lottery-gameplay__game-title {
    font-size: 2em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
}

.page-betting-games-lottery-gameplay__game-text {
    color: #cccccc;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-betting-games-lottery-gameplay__game-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-betting-games-lottery-gameplay__game-card ul li {
    color: #e0e0e0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-betting-games-lottery-gameplay__game-card ul li::before {
    content: '•';
    color: var(--page-accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How to Play Section */
.page-betting-games-lottery-gameplay__how-to-play {
    background-color: var(--page-background-dark);
}

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

.page-betting-games-lottery-gameplay__step-item {
    background-color: #2a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    padding-top: 80px; /* Space for number */
}

.page-betting-games-lottery-gameplay__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-accent-color);
    background-color: var(--page-background-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--page-accent-color);
}

.page-betting-games-lottery-gameplay__step-title {
    font-size: 1.8em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
}

.page-betting-games-lottery-gameplay__step-text {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Tips Section */
.page-betting-games-lottery-gameplay__tips {
    background-color: #2a2a47;
}

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

.page-betting-games-lottery-gameplay__tip-card {
    background-color: var(--page-background-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-betting-games-lottery-gameplay__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-accent-color));
}

.page-betting-games-lottery-gameplay__tip-title {
    font-size: 1.8em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
}

.page-betting-games-lottery-gameplay__tip-text {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Promotions Section */
.page-betting-games-lottery-gameplay__promotions {
    background-color: var(--page-background-dark);
}

.page-betting-games-lottery-gameplay__promo-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-betting-games-lottery-gameplay__promo-list li {
    background-color: #2a2a47;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 50px;
}

.page-betting-games-lottery-gameplay__promo-list li::before {
    content: '⚡';
    position: absolute;
    left: 20px;
    color: var(--page-accent-color);
    font-size: 1.5em;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile App Section */
.page-betting-games-lottery-gameplay__mobile-app {
    background-color: #2a2a47;
}

.page-betting-games-lottery-gameplay__mobile-app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.page-betting-games-lottery-gameplay__mobile-app-text {
    flex: 1;
    max-width: 600px;
}

.page-betting-games-lottery-gameplay__mobile-app-text h2 {
    text-align: left;
}

.page-betting-games-lottery-gameplay__mobile-app-text p {
    text-align: left;
}

.page-betting-games-lottery-gameplay__mobile-app-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-betting-games-lottery-gameplay__mobile-app-text ul li {
    color: #e0e0e0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 1.1em;
}

.page-betting-games-lottery-gameplay__mobile-app-text ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--page-accent-color);
    font-size: 1.2em;
}

.page-betting-games-lottery-gameplay__mobile-app-image-wrapper {
    flex-shrink: 0;
}

.page-betting-games-lottery-gameplay__mobile-app-image {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--page-accent-color);
}

/* FAQ Section */
.page-betting-games-lottery-gameplay__faq {
    background-color: var(--page-background-dark);
}

.page-betting-games-lottery-gameplay__accordion {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-betting-games-lottery-gameplay__accordion-item {
    background-color: #2a2a47;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-games-lottery-gameplay__accordion-header {
    background-color: #3a3a5e; /* Slightly darker than item bg */
    color: var(--page-accent-color);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    padding-right: 50px;
}

.page-betting-games-lottery-gameplay__accordion-header:hover {
    background-color: #4a4a70;
}

.page-betting-games-lottery-gameplay__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-betting-games-lottery-gameplay__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-betting-games-lottery-gameplay__accordion-content {
    padding: 0 25px;
    background-color: #2a2a47;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-betting-games-lottery-gameplay__accordion-content p {
    color: #cccccc;
    padding-bottom: 20px;
    margin-top: 10px;
}

.page-betting-games-lottery-gameplay__accordion-content a.page-betting-games-lottery-gameplay__btn {
    margin-bottom: 20px;
}

/* CTA Section */
.page-betting-games-lottery-gameplay__cta {
    background: linear-gradient(45deg, var(--page-background-dark), #33334d);
    padding: 80px 0;
}

.page-betting-games-lottery-gameplay__cta-title {
    font-size: 3em;
    color: var(--page-accent-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-betting-games-lottery-gameplay__cta-description {
    font-size: 1.2em;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-betting-games-lottery-gameplay__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-betting-games-lottery-gameplay__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-betting-games-lottery-gameplay__hero-title {
        font-size: 2.8em;
    }

    .page-betting-games-lottery-gameplay__hero-image {
        max-width: 80%;
        margin-top: 40px;
    }

    .page-betting-games-lottery-gameplay__mobile-app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-betting-games-lottery-gameplay__mobile-app-text h2,
    .page-betting-games-lottery-gameplay__mobile-app-text p,
    .page-betting-games-lottery-gameplay__mobile-app-text ul {
        text-align: center;
    }

    .page-betting-games-lottery-gameplay__mobile-app-text ul li {
        padding-left: 0;
        text-align: center;
    }

    .page-betting-games-lottery-gameplay__mobile-app-text ul li::before {
        display: none;
    }

    .page-betting-games-lottery-gameplay__mobile-app-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-betting-games-lottery-gameplay__section-title {
        font-size: 2.2em;
    }

    .page-betting-games-lottery-gameplay__hero-title {
        font-size: 2.5em;
    }

    .page-betting-games-lottery-gameplay__cta-title {
        font-size: 2.5em;
    }

    .page-betting-games-lottery-gameplay__game-grid,
    .page-betting-games-lottery-gameplay__steps,
    .page-betting-games-lottery-gameplay__tips-grid {
        grid-template-columns: 1fr;
    }

    .page-betting-games-lottery-gameplay__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-betting-games-lottery-gameplay__hero-title {
        font-size: 2em;
    }

    .page-betting-games-lottery-gameplay__hero-subtitle {
        font-size: 1em;
    }

    .page-betting-games-lottery-gameplay__section-title {
        font-size: 1.8em;
    }

    .page-betting-games-lottery-gameplay__cta-title {
        font-size: 2em;
    }

    .page-betting-games-lottery-gameplay__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-betting-games-lottery-gameplay__btn--large {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-betting-games-lottery-gameplay__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
        padding-right: 45px;
    }

    .page-betting-games-lottery-gameplay__accordion-header::after {
        right: 20px;
    }

    .page-betting-games-lottery-gameplay__accordion-content {
        padding: 0 20px;
    }

    .page-betting-games-lottery-gameplay__promo-list li {
        padding: 15px 20px 15px 45px;
        font-size: 1em;
    }

    .page-betting-games-lottery-gameplay__promo-list li::before {
        left: 15px;
    }
}