/* style/game-lobby-slots.css */
.page-game-lobby-slots {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-game-lobby-slots__hero {
    background: linear-gradient(135deg, #0A192F, #1a3a60); /* Dark blue gradient */
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-slots__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-game-lobby-slots__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-slots__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-game-lobby-slots__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-game-lobby-slots__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    z-index: 1;
}

.page-game-lobby-slots__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-game-lobby-slots__section {
    padding: 60px 0;
    text-align: center;
    background-color: #0A192F;
}

.page-game-lobby-slots__section--dark {
    background-color: #0F1D36;
}

.page-game-lobby-slots__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-lobby-slots__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-lobby-slots__text-content {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-game-lobby-slots__text-content--center {
    text-align: center;
}

/* Buttons */
.page-game-lobby-slots__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-game-lobby-slots__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue text */
}

.page-game-lobby-slots__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-slots__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-game-lobby-slots__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-slots__btn--tertiary {
    background-color: #1a3a60;
    color: #FFD700;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-game-lobby-slots__btn--tertiary:hover {
    background-color: #2a4c70;
    color: #fff;
}

.page-game-lobby-slots__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 20px;
    background-color: #FFD700;
    color: #0A192F;
}

.page-game-lobby-slots__btn--small:hover {
    background-color: #e6c200;
}

.page-game-lobby-slots__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-lobby-slots__center-cta {
    margin-top: 40px;
    text-align: center;
}

/* Features Grid */
.page-game-lobby-slots__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-game-lobby-slots__feature-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-lobby-slots__feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-lobby-slots__feature-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold accent */
    margin-bottom: 15px;
}

.page-game-lobby-slots__feature-item p {
    color: #c0c0c0;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Game Showcase */
.page-game-lobby-slots__game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-slots__game-card {
    background-color: #1a3a60;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.page-game-lobby-slots__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-game-lobby-slots__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-game-lobby-slots__game-card p {
    color: #c0c0c0;
    font-size: 0.95em;
    padding: 0 15px 15px 15px;
    flex-grow: 1;
}

/* Guide List */
.page-game-lobby-slots__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-game-lobby-slots__guide-list li {
    background-color: #1a3a60;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-slots__guide-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-lobby-slots__guide-list p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

/* App Download Section */
.page-game-lobby-slots__app-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-game-lobby-slots__app-info {
    text-align: left;
    max-width: 600px;
}

.page-game-lobby-slots__app-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.page-game-lobby-slots__app-benefits li {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-game-lobby-slots__list-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: drop-shadow(0 0 3px #FFD700);
}

.page-game-lobby-slots__app-image-wrapper {
    max-width: 400px;
    width: 100%;
}

.page-game-lobby-slots__app-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Tips List */
.page-game-lobby-slots__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-game-lobby-slots__tips-list li {
    background-color: #1a3a60;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #c0c0c0;
    font-size: 1.05em;
}

.page-game-lobby-slots__list-heading {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 8px;
}

/* FAQ Section */
.page-game-lobby-slots__faq {
    margin-top: 40px;
    text-align: left;
}

.page-game-lobby-slots__faq-item {
    background-color: #1a3a60;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-slots__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-game-lobby-slots__faq-answer {
    color: #c0c0c0;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Final CTA */
.page-game-lobby-slots__cta-final {
    background: linear-gradient(45deg, #FFD700, #e6c200); /* Gold gradient */
    padding: 80px 20px;
    text-align: center;
    color: #0A192F; /* Dark text for light background */
}

.page-game-lobby-slots__cta-final-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0A192F;
}

.page-game-lobby-slots__cta-final-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-game-lobby-slots__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 20px;
    }

    .page-game-lobby-slots__hero-content {
        flex: 1;
        text-align: left;
    }

    .page-game-lobby-slots__hero-image-wrapper {
        flex: 1;
        margin-top: 0;
    }

    .page-game-lobby-slots__hero-actions {
        justify-content: flex-start;
    }

    .page-game-lobby-slots__app-download {
        flex-direction: row;
        text-align: left;
    }

    .page-game-lobby-slots__app-info {
        flex: 1;
    }

    .page-game-lobby-slots__app-image-wrapper {
        flex: 1;
        order: 2;
    }
}

@media (max-width: 767px) {
    .page-game-lobby-slots__hero-title {
        font-size: 2.5em;
    }

    .page-game-lobby-slots__section-title {
        font-size: 2em;
    }

    .page-game-lobby-slots__btn {
        width: 100%;
        text-align: center;
    }

    .page-game-lobby-slots__hero-actions {
        flex-direction: column;
    }

    .page-game-lobby-slots__cta-final-title {
        font-size: 2.2em;
    }

    .page-game-lobby-slots__cta-final-description {
        font-size: 1em;
    }
}