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

:root {
    --qh88-primary-color: #0A2342;
    --qh88-secondary-color: #FFD700;
    --qh88-text-light: #F8F8F8;
    --qh88-text-dark: #2C3E50;
    --qh88-bg-dark: #1A3A5D;
    --qh88-border-color: #3A5F8A;
    --qh88-shadow-color: rgba(0, 0, 0, 0.2);
}

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

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

.page-game-lobby-qh88-slot-games__hero {
    background: linear-gradient(135deg, var(--qh88-primary-color) 0%, #1a4d80 100%);
    color: var(--qh88-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-lobby-qh88-slot-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--qh88-secondary-color);
    text-shadow: 2px 2px 4px var(--qh88-shadow-color);
}

.page-game-lobby-qh88-slot-games__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-game-lobby-qh88-slot-games__section {
    padding: 60px 0;
    background-color: var(--qh88-text-light);
}

.page-game-lobby-qh88-slot-games__section--dark {
    background-color: var(--qh88-bg-dark);
    color: var(--qh88-text-light);
}

.page-game-lobby-qh88-slot-games__section-title {
    font-size: 2.5em;
    color: var(--qh88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-lobby-qh88-slot-games__section--dark .page-game-lobby-qh88-slot-games__section-title {
    color: var(--qh88-secondary-color);
}

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

.page-game-lobby-qh88-slot-games__text-center {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-qh88-slot-games__section--dark .page-game-lobby-qh88-slot-games__text-center {
    color: #e0e0e0;
}

.page-game-lobby-qh88-slot-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-game-lobby-qh88-slot-games__feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px var(--qh88-shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-qh88-slot-games__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__card-title {
    font-size: 1.5em;
    color: var(--qh88-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-lobby-qh88-slot-games__feature-card p {
    color: #555;
}

.page-game-lobby-qh88-slot-games__provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-qh88-slot-games__provider-card {
    background-color: var(--qh88-primary-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--qh88-text-light);
    border: 1px solid var(--qh88-border-color);
}

.page-game-lobby-qh88-slot-games__provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-qh88-slot-games__provider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-game-lobby-qh88-slot-games__provider-card .page-game-lobby-qh88-slot-games__card-title {
    color: var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__provider-card p {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-game-lobby-qh88-slot-games__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-qh88-slot-games__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px var(--qh88-shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-game-lobby-qh88-slot-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.page-game-lobby-qh88-slot-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__game-card .page-game-lobby-qh88-slot-games__card-title {
    padding: 15px 20px 10px;
    font-size: 1.4em;
    color: var(--qh88-primary-color);
}

.page-game-lobby-qh88-slot-games__game-card p {
    padding: 0 20px 20px;
    color: #555;
    flex-grow: 1;
}

.page-game-lobby-qh88-slot-games__game-card .page-game-lobby-qh88-slot-games__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
    width: calc(100% - 40px);
    text-align: center;
}

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

.page-game-lobby-qh88-slot-games__step-card {
    background-color: var(--qh88-primary-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    color: var(--qh88-text-light);
    border: 1px solid var(--qh88-border-color);
}

.page-game-lobby-qh88-slot-games__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--qh88-secondary-color);
    color: var(--qh88-primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid var(--qh88-primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-qh88-slot-games__step-card .page-game-lobby-qh88-slot-games__card-title {
    margin-top: 25px;
    color: var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__step-card p {
    color: #e0e0e0;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-game-lobby-qh88-slot-games__list {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-game-lobby-qh88-slot-games__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--qh88-text-dark);
}

.page-game-lobby-qh88-slot-games__section--dark .page-game-lobby-qh88-slot-games__list li {
    color: var(--qh88-text-light);
}

.page-game-lobby-qh88-slot-games__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--qh88-secondary-color);
    font-size: 1.2em;
    line-height: 1;
}

.page-game-lobby-qh88-slot-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-qh88-slot-games__promo-card {
    background-color: var(--qh88-primary-color);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--qh88-border-color);
    color: var(--qh88-text-light);
}

.page-game-lobby-qh88-slot-games__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-qh88-slot-games__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__promo-card .page-game-lobby-qh88-slot-games__card-title {
    padding: 15px 20px 10px;
    font-size: 1.4em;
    color: var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__promo-card p {
    padding: 0 20px 20px;
    color: #e0e0e0;
    flex-grow: 1;
}

.page-game-lobby-qh88-slot-games__promo-card .page-game-lobby-qh88-slot-games__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
    width: calc(100% - 40px);
    text-align: center;
}

.page-game-lobby-qh88-slot-games__app-download {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.page-game-lobby-qh88-slot-games__app-info {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.page-game-lobby-qh88-slot-games__app-info p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--qh88-text-dark);
}

.page-game-lobby-qh88-slot-games__app-image-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

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

.page-game-lobby-qh88-slot-games__faq {
    max-width: 900px;
    margin: 40px auto;
}

.page-game-lobby-qh88-slot-games__faq-item {
    background-color: var(--qh88-primary-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--qh88-border-color);
}

.page-game-lobby-qh88-slot-games__faq-question {
    font-size: 1.3em;
    color: var(--qh88-secondary-color);
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a3a5d;
    transition: background-color 0.3s ease;
}

.page-game-lobby-qh88-slot-games__faq-question:hover {
    background-color: #2b5484;
}

.page-game-lobby-qh88-slot-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-game-lobby-qh88-slot-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-lobby-qh88-slot-games__faq-answer {
    padding: 0 25px;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-lobby-qh88-slot-games__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px 25px;
}

.page-game-lobby-qh88-slot-games__section--cta-final {
    background: linear-gradient(135deg, var(--qh88-primary-color) 0%, var(--qh88-bg-dark) 100%);
    color: var(--qh88-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-game-lobby-qh88-slot-games__section--cta-final .page-game-lobby-qh88-slot-games__section-title {
    color: var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__section--cta-final .page-game-lobby-qh88-slot-games__text-center {
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Buttons */
.page-game-lobby-qh88-slot-games__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px var(--qh88-shadow-color);
}

.page-game-lobby-qh88-slot-games__btn--primary {
    background-color: var(--qh88-secondary-color);
    color: var(--qh88-primary-color);
}

.page-game-lobby-qh88-slot-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-qh88-slot-games__btn--secondary {
    background-color: var(--qh88-primary-color);
    color: var(--qh88-secondary-color);
    border: 2px solid var(--qh88-secondary-color);
}

.page-game-lobby-qh88-slot-games__btn--secondary:hover {
    background-color: var(--qh88-bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-qh88-slot-games__btn--small {
    padding: 8px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-game-lobby-qh88-slot-games__btn--large {
    padding: 18px 40px;
    font-size: 1.25em;
    min-width: 250px;
}

.page-game-lobby-qh88-slot-games__cta-block {
    text-align: center;
    margin-top: 50px;
}

.page-game-lobby-qh88-slot-games__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--qh88-primary-color);
    font-weight: bold;
}

.page-game-lobby-qh88-slot-games__section--dark .page-game-lobby-qh88-slot-games__cta-text {
    color: var(--qh88-text-light);
}

.page-game-lobby-qh88-slot-games__mt-20 {
    margin-top: 20px;
}

.page-game-lobby-qh88-slot-games__mt-40 {
    margin-top: 40px;
}

.highlight-text {
    color: var(--qh88-secondary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-lobby-qh88-slot-games__hero-title {
        font-size: 2.8em;
    }
    .page-game-lobby-qh88-slot-games__section-title {
        font-size: 2em;
    }
    .page-game-lobby-qh88-slot-games__app-download {
        flex-direction: column;
    }
    .page-game-lobby-qh88-slot-games__app-info,
    .page-game-lobby-qh88-slot-games__app-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-qh88-slot-games__hero {
        padding: 80px 0;
    }
    .page-game-lobby-qh88-slot-games__hero-title {
        font-size: 2.2em;
    }
    .page-game-lobby-qh88-slot-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-lobby-qh88-slot-games__section {
        padding: 40px 0;
    }
    .page-game-lobby-qh88-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-lobby-qh88-slot-games__grid,
    .page-game-lobby-qh88-slot-games__provider-grid,
    .page-game-lobby-qh88-slot-games__game-list,
    .page-game-lobby-qh88-slot-games__steps-grid,
    .page-game-lobby-qh88-slot-games__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-game-lobby-qh88-slot-games__btn--large {
        width: 100%;
        min-width: unset;
    }
    .page-game-lobby-qh88-slot-games__cta-block .page-game-lobby-qh88-slot-games__btn--large:last-child {
        margin-top: 15px;
    }
    .page-game-lobby-qh88-slot-games__faq-question {
        font-size: 1.1em;
    }
    .page-game-lobby-qh88-slot-games__faq-answer {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-qh88-slot-games__hero {
        padding: 60px 0;
    }
    .page-game-lobby-qh88-slot-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby-qh88-slot-games__section-title {
        font-size: 1.5em;
    }
    .page-game-lobby-qh88-slot-games__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-lobby-qh88-slot-games__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}