/* style/game-lobby-slot-games-selection.css */

:root {
    --xn88-primary-dark: #0A192F;
    --xn88-secondary-gold: #FFD700;
    --xn88-text-light: #F0F2F5;
    --xn88-text-dark: #1A2A40;
    --xn88-accent-blue: #00BFFF; /* A light blue for interactive elements, ensuring contrast */
    --xn88-background-light: #2A3B50; /* A slightly lighter dark for background sections */
    --xn88-card-bg: #1A2A40;
    --xn88-border-color: #445566;
}

.page-game-lobby-slot-games-selection {
    font-family: 'Arial', sans-serif;
    color: var(--xn88-text-light);
    background-color: var(--xn88-primary-dark);
    line-height: 1.6;
}

.page-game-lobby-slot-games-selection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-game-lobby-slot-games-selection__main-title,
.page-game-lobby-slot-games-selection__section-title {
    color: var(--xn88-secondary-gold);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-game-lobby-slot-games-selection__main-title {
    font-size: 3.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-slot-games-selection__section-title {
    font-size: 2.5em;
    padding-bottom: 15px;
    position: relative;
}

.page-game-lobby-slot-games-selection__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--xn88-secondary-gold);
    border-radius: 2px;
}

.page-game-lobby-slot-games-selection__text-content {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--xn88-text-light);
}

.page-game-lobby-slot-games-selection__hero-section {
    background: linear-gradient(135deg, var(--xn88-primary-dark) 0%, #1A2A40 50%, var(--xn88-primary-dark) 100%);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-slot-games-selection__hero-content {
    z-index: 10;
    max-width: 900px;
}

.page-game-lobby-slot-games-selection__hero-description {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 40px;
    color: var(--xn88-text-light);
}

.page-game-lobby-slot-games-selection__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    overflow: hidden;
}

.page-game-lobby-slot-games-selection__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.05);
}

.page-game-lobby-slot-games-selection__cta-button,
.page-game-lobby-slot-games-selection__secondary-cta-button,
.page-game-lobby-slot-games-selection__game-play-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    cursor: pointer;
}

.page-game-lobby-slot-games-selection__cta-button {
    background-color: var(--xn88-secondary-gold);
    color: var(--xn88-primary-dark);
    border: 2px solid var(--xn88-secondary-gold);
}

.page-game-lobby-slot-games-selection__cta-button:hover {
    background-color: transparent;
    color: var(--xn88-secondary-gold);
    border-color: var(--xn88-secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-slot-games-selection__secondary-cta-button {
    background-color: transparent;
    color: var(--xn88-secondary-gold);
    border: 2px solid var(--xn88-secondary-gold);
    margin-top: 20px;
}

.page-game-lobby-slot-games-selection__secondary-cta-button:hover {
    background-color: var(--xn88-secondary-gold);
    color: var(--xn88-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-slot-games-selection__introduction-section,
.page-game-lobby-slot-games-selection__featured-games-section,
.page-game-lobby-slot-games-selection__how-to-play-section,
.page-game-lobby-slot-games-selection__promotions-section,
.page-game-lobby-slot-games-selection__responsible-gambling-section,
.page-game-lobby-slot-games-selection__download-app-section {
    padding: 80px 0;
    background-color: var(--xn88-background-light);
    margin-top: 2px;
}

.page-game-lobby-slot-games-selection__introduction-section {
    background-color: var(--xn88-primary-dark);
}

.page-game-lobby-slot-games-selection__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-game-lobby-slot-games-selection__feature-item {
    background-color: var(--xn88-card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--xn88-border-color);
}

.page-game-lobby-slot-games-selection__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-slot-games-selection__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--xn88-secondary-gold));
}

.page-game-lobby-slot-games-selection__feature-title {
    color: var(--xn88-secondary-gold);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-game-lobby-slot-games-selection__feature-description {
    color: var(--xn88-text-light);
    font-size: 1em;
}

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

.page-game-lobby-slot-games-selection__game-card {
    background-color: var(--xn88-card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--xn88-border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-lobby-slot-games-selection__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-slot-games-selection__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--xn88-border-color);
}

.page-game-lobby-slot-games-selection__game-title {
    color: var(--xn88-secondary-gold);
    font-size: 1.5em;
    padding: 15px 20px 0;
}

.page-game-lobby-slot-games-selection__game-description {
    color: var(--xn88-text-light);
    font-size: 0.95em;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-game-lobby-slot-games-selection__game-play-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background-color: var(--xn88-accent-blue);
    color: var(--xn88-primary-dark);
    border: 2px solid var(--xn88-accent-blue);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1em;
}

.page-game-lobby-slot-games-selection__game-play-button:hover {
    background-color: transparent;
    color: var(--xn88-accent-blue);
    border-color: var(--xn88-accent-blue);
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(0, 191, 255, 0.4);
}

.page-game-lobby-slot-games-selection__how-to-play-section {
    background-color: var(--xn88-primary-dark);
}

.page-game-lobby-slot-games-selection__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-game-lobby-slot-games-selection__step-item {
    background-color: var(--xn88-card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--xn88-border-color);
}

.page-game-lobby-slot-games-selection__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--xn88-secondary-gold);
    color: var(--xn88-primary-dark);
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-slot-games-selection__step-title {
    color: var(--xn88-secondary-gold);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-game-lobby-slot-games-selection__step-description {
    color: var(--xn88-text-light);
    font-size: 1em;
}

.page-game-lobby-slot-games-selection__promotions-section {
    background-color: var(--xn88-background-light);
}

.page-game-lobby-slot-games-selection__promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-slot-games-selection__promotion-list li {
    background-color: var(--xn88-card-bg);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--xn88-border-color);
    color: var(--xn88-text-light);
}

.page-game-lobby-slot-games-selection__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: drop-shadow(0 0 3px var(--xn88-accent-blue));
}

.page-game-lobby-slot-games-selection__responsible-gambling-section {
    background-color: var(--xn88-primary-dark);
}

.page-game-lobby-slot-games-selection__download-app-section {
    padding: 100px 0;
    background: linear-gradient(90deg, var(--xn88-primary-dark) 0%, var(--xn88-background-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-game-lobby-slot-games-selection__download-content {
    text-align: center;
    max-width: 600px;
    margin-right: 50px;
}

.page-game-lobby-slot-games-selection__download-image-container {
    max-width: 400px;
}

.page-game-lobby-slot-games-selection__app-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--xn88-secondary-gold);
}

.page-game-lobby-slot-games-selection .highlight-keyword {
    color: var(--xn88-secondary-gold);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-slot-games-selection__hero-section {
        padding: 80px 20px;
    }
    .page-game-lobby-slot-games-selection__main-title {
        font-size: 2.8em;
    }
    .page-game-lobby-slot-games-selection__section-title {
        font-size: 2em;
    }
    .page-game-lobby-slot-games-selection__download-app-section {
        flex-direction: column;
        text-align: center;
    }
    .page-game-lobby-slot-games-selection__download-content {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .page-game-lobby-slot-games-selection__download-image-container {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-slot-games-selection__main-title {
        font-size: 2.2em;
    }
    .page-game-lobby-slot-games-selection__hero-description {
        font-size: 1.1em;
    }
    .page-game-lobby-slot-games-selection__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-slot-games-selection__features-grid,
    .page-game-lobby-slot-games-selection__game-grid,
    .page-game-lobby-slot-games-selection__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-slot-games-selection__game-card {
        margin: 0 auto;
        max-width: 400px;
    }
    .page-game-lobby-slot-games-selection__promotion-list li {
        flex-direction: column;
        text-align: center;
    }
    .page-game-lobby-slot-games-selection__list-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-slot-games-selection__main-title {
        font-size: 1.8em;
    }
    .page-game-lobby-slot-games-selection__cta-button,
    .page-game-lobby-slot-games-selection__secondary-cta-button,
    .page-game-lobby-slot-games-selection__game-play-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-lobby-slot-games-selection__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-game-lobby-slot-games-selection__step-title {
        font-size: 1.5em;
    }
}