/* style/game-lobby-lottery-games-types-play.css */
.page-game-lobby-lottery-games-types-play {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Dark blue primary background */
}

.page-game-lobby-lottery-games-types-play__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-lobby-lottery-games-types-play__hero {
    background: linear-gradient(135deg, #0A192F, #1A2E4C);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.page-game-lobby-lottery-games-types-play__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    position: relative;
    z-index: 1;
}

.page-game-lobby-lottery-games-types-play__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
    position: relative;
    z-index: 1;
}

.page-game-lobby-lottery-games-types-play__section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-game-lobby-lottery-games-types-play__section--dark {
    background-color: #1A2E4C;
    color: #FFFFFF;
}

.page-game-lobby-lottery-games-types-play__section--cta {
    background: linear-gradient(90deg, #0A192F, #FFD700);
    text-align: center;
    padding: 80px 0;
    color: #FFFFFF;
}

.page-game-lobby-lottery-games-types-play__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-game-lobby-lottery-lottery-games-types-play__section-title--light {
    color: #FFFFFF;
}

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

.page-game-lobby-lottery-games-types-play__section-description--light {
    color: #E0E0E0;
}

.page-game-lobby-lottery-games-types-play__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-game-lobby-lottery-games-types-play__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-game-lobby-lottery-games-types-play__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-game-lobby-lottery-games-types-play__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-game-lobby-lottery-games-types-play__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-lobby-lottery-games-types-play__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

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

.page-game-lobby-lottery-games-types-play__game-card {
    background-color: #1A2E4C;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-game-lobby-lottery-games-types-play__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-lottery-games-types-play__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-lobby-lottery-games-types-play__game-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-lobby-lottery-games-types-play__game-text {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-lobby-lottery-games-types-play__game-subtitle {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-game-lobby-lottery-games-types-play__game-list {
    list-style: disc inside;
    color: #B0B0B0;
    margin-left: 20px;
    padding-left: 0;
}

.page-game-lobby-lottery-games-types-play__game-list li {
    margin-bottom: 8px;
}

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

.page-game-lobby-lottery-games-types-play__feature-card {
    background-color: #0A192F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-game-lobby-lottery-games-types-play__feature-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-game-lobby-lottery-games-types-play__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-lobby-lottery-games-types-play__feature-text {
    font-size: 1em;
    color: #B0B0B0;
}

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

.page-game-lobby-lottery-games-types-play__step-card {
    background-color: #1A2E4C;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-lobby-lottery-games-types-play__step-number {
    font-size: 3em;
    color: rgba(255, 215, 0, 0.2);
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.page-game-lobby-lottery-games-types-play__step-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-game-lobby-lottery-games-types-play__step-text {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-lobby-lottery-games-types-play__hero-title {
        font-size: 2.5em;
    }

    .page-game-lobby-lottery-games-types-play__hero-subtitle {
        font-size: 1em;
    }

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

    .page-game-lobby-lottery-games-types-play__game-grid,
    .page-game-lobby-lottery-games-types-play__feature-grid,
    .page-game-lobby-lottery-games-types-play__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-game-lobby-lottery-games-types-play__hero {
        padding: 60px 0;
    }

    .page-game-lobby-lottery-games-types-play__section {
        padding: 40px 0;
    }
    
    .page-game-lobby-lottery-games-types-play__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

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

    .page-game-lobby-lottery-games-types-play__game-title,
    .page-game-lobby-lottery-games-types-play__feature-title,
    .page-game-lobby-lottery-games-types-play__step-title {
        font-size: 1.5em;
    }
    
    .page-game-lobby-lottery-games-types-play__hero,
    .page-game-lobby-lottery-games-types-play__section--cta {
        padding: 50px 0;
    }
}