/* style/slot-games-popular-recommendations.css */
.page-slot-games-popular-recommendations {
    font-family: Arial, sans-serif;
    color: #ffffff; /* Body background is dark, so text is light */
    background-color: #000000;
    line-height: 1.6;
}

.page-slot-games-popular-recommendations__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    overflow: hidden;
    background-color: #000000; /* Ensure dark background for hero */
}

.page-slot-games-popular-recommendations__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle overlay for text readability */
}

.page-slot-games-popular-recommendations__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-slot-games-popular-recommendations__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-slot-games-popular-recommendations__main-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-slot-games-popular-recommendations__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-slot-games-popular-recommendations__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slot-games-popular-recommendations__btn-primary,
.page-slot-games-popular-recommendations__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-popular-recommendations__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-slot-games-popular-recommendations__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
}

.page-slot-games-popular-recommendations__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-slot-games-popular-recommendations__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

.page-slot-games-popular-recommendations__section {
    padding: 60px 20px;
    text-align: center;
}

.page-slot-games-popular-recommendations__dark-bg {
    background-color: #000000;
    color: #ffffff;
}

.page-slot-games-popular-recommendations__light-bg {
    background-color: #f5f5f5;
    color: #333333;
}

.page-slot-games-popular-recommendations__content-area {
    max-width: 1200px;
    margin: 0 auto;
}

.page-slot-games-popular-recommendations__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #26A9E0;
}

.page-slot-games-popular-recommendations__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

.page-slot-games-popular-recommendations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slot-games-popular-recommendations__game-grid,
.page-slot-games-popular-recommendations__promo-grid,
.page-slot-games-popular-recommendations__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-popular-recommendations__game-card,
.page-slot-games-popular-recommendations__promo-card,
.page-slot-games-popular-recommendations__feature-card,
.page-slot-games-popular-recommendations__step-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-recommendations__game-card:hover,
.page-slot-games-popular-recommendations__promo-card:hover,
.page-slot-games-popular-recommendations__feature-card:hover,
.page-slot-games-popular-recommendations__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-recommendations__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slot-games-popular-recommendations__card-title,
.page-slot-games-popular-recommendations__feature-title,
.page-slot-games-popular-recommendations__step-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-slot-games-popular-recommendations__card-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-slot-games-popular-recommendations__card-title a:hover {
    text-decoration: underline;
}

.page-slot-games-popular-recommendations__card-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: left;
    flex-grow: 1;
}

.page-slot-games-popular-recommendations__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slot-games-popular-recommendations__list-item {
    background-color: #ffffff;
    color: #333333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games-popular-recommendations__list-item-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-slot-games-popular-recommendations__list-item p {
    color: #333333;
}

.page-slot-games-popular-recommendations__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    color: #f0f0f0;
}

.page-slot-games-popular-recommendations__step-card p {
    color: #f0f0f0;
}

.page-slot-games-popular-recommendations__promo-section {
    padding: 80px 20px;
}

.page-slot-games-popular-recommendations__app-download-section {
    padding: 80px 20px;
}

.page-slot-games-popular-recommendations__app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games-popular-recommendations__app-text {
    flex: 1;
}

.page-slot-games-popular-recommendations__app-text .page-slot-games-popular-recommendations__btn-primary,
.page-slot-games-popular-recommendations__app-text .page-slot-games-popular-recommendations__btn-secondary {
    margin-top: 20px;
    margin-right: 15px;
}

.page-slot-games-popular-recommendations__app-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-slot-games-popular-recommendations__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-popular-recommendations__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-slot-games-popular-recommendations__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-slot-games-popular-recommendations__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-popular-recommendations__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games-popular-recommendations__faq-item summary {
    list-style: none;
}

.page-slot-games-popular-recommendations__faq-qtext {
    flex-grow: 1;
}

.page-slot-games-popular-recommendations__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-slot-games-popular-recommendations__faq-item[open] .page-slot-games-popular-recommendations__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games-popular-recommendations__faq-answer {
    padding: 20px 30px;
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-popular-recommendations__faq-answer a {
    color: #26A9E0;
    text-decoration: none;
}

.page-slot-games-popular-recommendations__faq-answer a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-slot-games-popular-recommendations__main-title {
        font-size: 3em;
    }
    .page-slot-games-popular-recommendations__section-title {
        font-size: 2em;
    }
    .page-slot-games-popular-recommendations__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-slot-games-popular-recommendations__app-text .page-slot-games-popular-recommendations__btn-primary,
    .page-slot-games-popular-recommendations__app-text .page-slot-games-popular-recommendations__btn-secondary {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-slot-games-popular-recommendations {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-slot-games-popular-recommendations__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important;
        min-height: 450px;
    }

    .page-slot-games-popular-recommendations__main-title {
        font-size: 2.2em;
    }

    .page-slot-games-popular-recommendations__hero-description {
        font-size: 1em;
    }

    .page-slot-games-popular-recommendations__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-slot-games-popular-recommendations__btn-primary,
    .page-slot-games-popular-recommendations__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
    }

    .page-slot-games-popular-recommendations__section {
        padding: 40px 15px;
    }

    .page-slot-games-popular-recommendations__section-title {
        font-size: 1.8em;
    }

    .page-slot-games-popular-recommendations__text-block {
        font-size: 1em;
    }

    .page-slot-games-popular-recommendations__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-slot-games-popular-recommendations__game-grid,
    .page-slot-games-popular-recommendations__promo-grid,
    .page-slot-games-popular-recommendations__feature-grid,
    .page-slot-games-popular-recommendations__step-by-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games-popular-recommendations__card-image {
        height: 180px;
    }

    .page-slot-games-popular-recommendations__card-title,
    .page-slot-games-popular-recommendations__feature-title,
    .page-slot-games-popular-recommendations__step-title {
        font-size: 1.3em;
    }

    .page-slot-games-popular-recommendations__list-item {
        padding: 20px;
    }

    .page-slot-games-popular-recommendations__list-item-title {
        font-size: 1.2em;
    }

    .page-slot-games-popular-recommendations__app-content {
        gap: 20px;
    }

    .page-slot-games-popular-recommendations__app-text .page-slot-games-popular-recommendations__btn-primary,
    .page-slot-games-popular-recommendations__app-text .page-slot-games-popular-recommendations__btn-secondary {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .page-slot-games-popular-recommendations__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-slot-games-popular-recommendations__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    /* Mobile image and video responsiveness */
    .page-slot-games-popular-recommendations img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games-popular-recommendations video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games-popular-recommendations__hero-image-wrapper,
    .page-slot-games-popular-recommendations__app-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-slot-games-popular-recommendations__section,
    .page-slot-games-popular-recommendations__card,
    .page-slot-games-popular-recommendations__container,
    .page-slot-games-popular-recommendations__video-section,
    .page-slot-games-popular-recommendations__video-container,
    .page-slot-games-popular-recommendations__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-slot-games-popular-recommendations__app-text .page-slot-games-popular-recommendations__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-slot-games-popular-recommendations__main-title {
        font-size: 1.8em;
    }
    .page-slot-games-popular-recommendations__section-title {
        font-size: 1.6em;
    }
    .page-slot-games-popular-recommendations__card-title,
    .page-slot-games-popular-recommendations__feature-title,
    .page-slot-games-popular-recommendations__step-title {
        font-size: 1.1em;
    }
    .page-slot-games-popular-recommendations__card-description,
    .page-slot-games-popular-recommendations__text-block,
    .page-slot-games-popular-recommendations__list-item p,
    .page-slot-games-popular-recommendations__faq-answer {
        font-size: 0.9em;
    }
}