/* style/slot-games-hot-slots-recommendations.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-register: #C30808;
    --button-login: #C30808;
    --button-text-login-register: #FFFF00;
    --background-light: #FFFFFF;
}

.page-slot-games-hot-slots-recommendations {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: transparent; /* Let body background show through */
}

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

.page-slot-games-hot-slots-recommendations__section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games-hot-slots-recommendations__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

/* Hero Section */
.page-slot-games-hot-slots-recommendations__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-slot-games-hot-slots-recommendations__hero-section .page-slot-games-hot-slots-recommendations__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-slot-games-hot-slots-recommendations__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-slot-games-hot-slots-recommendations__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slot-games-hot-slots-recommendations__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games-hot-slots-recommendations__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.page-slot-games-hot-slots-recommendations__btn-primary,
.page-slot-games-hot-slots-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, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-games-hot-slots-recommendations__btn-primary {
    background-color: var(--button-register);
    color: var(--button-text-login-register);
    border: 2px solid var(--button-register);
}

.page-slot-games-hot-slots-recommendations__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-slot-games-hot-slots-recommendations__btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-slot-games-hot-slots-recommendations__btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.page-slot-games-hot-slots-recommendations__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: inherit;
}

.page-slot-games-hot-slots-recommendations__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: inherit;
}

/* Features Grid */
.page-slot-games-hot-slots-recommendations__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-hot-slots-recommendations__feature-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slot-games-hot-slots-recommendations__feature-card:hover {
    transform: translateY(-10px);
}

.page-slot-games-hot-slots-recommendations__feature-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-hot-slots-recommendations__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-slot-games-hot-slots-recommendations__feature-text {
    font-size: 1em;
    color: var(--text-dark);
}

/* Game Types Grid */
.page-slot-games-hot-slots-recommendations__game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-hot-slots-recommendations__game-type-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    color: var(--text-light);
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-hot-slots-recommendations__game-type-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__game-type-text {
    font-size: 0.95em;
    color: var(--text-light);
}

/* How to Play List */
.page-slot-games-hot-slots-recommendations__how-to-play-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games-hot-slots-recommendations__how-to-play-item {
    background-color: var(--background-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-slot-games-hot-slots-recommendations__how-to-play-item h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-slot-games-hot-slots-recommendations__how-to-play-item p {
    color: var(--text-dark);
}

/* Tips List */
.page-slot-games-hot-slots-recommendations__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-slot-games-hot-slots-recommendations__tips-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__tips-item-title {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-slot-games-hot-slots-recommendations__tips-item p {
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Promotions Grid */
.page-slot-games-hot-slots-recommendations__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-hot-slots-recommendations__promo-card {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slot-games-hot-slots-recommendations__promo-card:hover {
    transform: translateY(-5px);
}

.page-slot-games-hot-slots-recommendations__promo-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-hot-slots-recommendations__promo-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-slot-games-hot-slots-recommendations__promo-text {
    font-size: 0.95em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-slot-games-hot-slots-recommendations__btn-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-slot-games-hot-slots-recommendations__btn-link:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__cta-button-wrapper {
    margin-top: 40px;
}

/* Safety List */
.page-slot-games-hot-slots-recommendations__safety-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games-hot-slots-recommendations__safety-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__safety-item strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-slot-games-hot-slots-recommendations__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-slot-games-hot-slots-recommendations__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
}

.page-slot-games-hot-slots-recommendations__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-slot-games-hot-slots-recommendations__faq-question h3 {
    margin: 0;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.page-slot-games-hot-slots-recommendations__faq-item.active .page-slot-games-hot-slots-recommendations__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games-hot-slots-recommendations__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__faq-item.active .page-slot-games-hot-slots-recommendations__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 15px 20px 20px 20px;
}

.page-slot-games-hot-slots-recommendations__faq-answer p {
    margin: 0;
    color: var(--text-light);
}

/* CTA Section */
.page-slot-games-hot-slots-recommendations__cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px;
}

.page-slot-games-hot-slots-recommendations__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-slot-games-hot-slots-recommendations__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games-hot-slots-recommendations__hero-title {
        font-size: 2.8em;
    }

    .page-slot-games-hot-slots-recommendations__section-title,
    .page-slot-games-hot-slots-recommendations__cta-title {
        font-size: 2em;
    }
}

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

    .page-slot-games-hot-slots-recommendations__hero-section .page-slot-games-hot-slots-recommendations__container {
        flex-direction: column;
        text-align: center;
    }

    .page-slot-games-hot-slots-recommendations__hero-content {
        text-align: center;
    }

    .page-slot-games-hot-slots-recommendations__hero-cta-buttons {
        justify-content: center;
    }

    .page-slot-games-hot-slots-recommendations__hero-title {
        font-size: 2.2em;
    }

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

    .page-slot-games-hot-slots-recommendations__section {
        padding: 40px 0;
    }

    .page-slot-games-hot-slots-recommendations__section-title,
    .page-slot-games-hot-slots-recommendations__cta-title {
        font-size: 1.8em;
    }

    .page-slot-games-hot-slots-recommendations__section-description,
    .page-slot-games-hot-slots-recommendations__cta-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Image Responsiveness */
    .page-slot-games-hot-slots-recommendations img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games-hot-slots-recommendations__section,
    .page-slot-games-hot-slots-recommendations__container,
    .page-slot-games-hot-slots-recommendations__feature-card,
    .page-slot-games-hot-slots-recommendations__game-type-card,
    .page-slot-games-hot-slots-recommendations__how-to-play-item,
    .page-slot-games-hot-slots-recommendations__tips-item,
    .page-slot-games-hot-slots-recommendations__promo-card,
    .page-slot-games-hot-slots-recommendations__safety-item,
    .page-slot-games-hot-slots-recommendations__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-slot-games-hot-slots-recommendations__hero-section {
        padding-top: var(--header-offset, 120px) !important; 
    }

    /* Button Responsiveness */
    .page-slot-games-hot-slots-recommendations__btn-primary,
    .page-slot-games-hot-slots-recommendations__btn-secondary,
    .page-slot-games-hot-slots-recommendations a[class*="button"],
    .page-slot-games-hot-slots-recommendations a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-slot-games-hot-slots-recommendations__hero-cta-buttons,
    .page-slot-games-hot-slots-recommendations__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column;
        gap: 15px;
    }

    .page-slot-games-hot-slots-recommendations__cta-button-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games-hot-slots-recommendations__btn-link {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-slot-games-hot-slots-recommendations__hero-title {
        font-size: 1.8em;
    }

    .page-slot-games-hot-slots-recommendations__section-title,
    .page-slot-games-hot-slots-recommendations__cta-title {
        font-size: 1.5em;
    }

    .page-slot-games-hot-slots-recommendations__btn-primary,
    .page-slot-games-hot-slots-recommendations__btn-secondary {
        padding: 12px 20px;
    }
}