/* style/slot-games-popular-recommendations.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --card-bg-color: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-slot-games-popular-recommendations {
    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color);
}

.page-slot-games-popular-recommendations__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-slot-games-popular-recommendations__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games-popular-recommendations__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

.page-slot-games-popular-recommendations__main-title {
    color: var(--gold-color);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games-popular-recommendations__hero-description {
    color: var(--text-main-color);
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-popular-recommendations__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-slot-games-popular-recommendations__btn-primary,
.page-slot-games-popular-recommendations__btn-secondary,
.page-slot-games-popular-recommendations__btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-games-popular-recommendations__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-slot-games-popular-recommendations__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(87, 227, 141, 0.8);
}

.page-slot-games-popular-recommendations__btn-secondary {
    background-color: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

.page-slot-games-popular-recommendations__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

.page-slot-games-popular-recommendations__btn-small {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 5px;
    margin-top: 15px;
}

.page-slot-games-popular-recommendations__section {
    padding: 60px 20px;
    background-color: var(--background-color);
}

.page-slot-games-popular-recommendations__introduction {
    background-color: var(--deep-green-color);
}

.page-slot-games-popular-recommendations__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-slot-games-popular-recommendations__section-title {
    color: var(--gold-color);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-slot-games-popular-recommendations__text-block {
    color: var(--text-secondary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-slot-games-popular-recommendations__card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}

.page-slot-games-popular-recommendations__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games-popular-recommendations__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-slot-games-popular-recommendations__card-title {
    color: var(--gold-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games-popular-recommendations__card-description {
    color: var(--text-secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 15px;
}

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

.page-slot-games-popular-recommendations__feature-item {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-slot-games-popular-recommendations__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-slot-games-popular-recommendations__feature-title {
    color: var(--gold-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-slot-games-popular-recommendations__feature-description {
    color: var(--text-secondary-color);
    font-size: 1rem;
    line-height: 1.6;
}

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

.page-slot-games-popular-recommendations__step-item {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-slot-games-popular-recommendations__step-title {
    color: var(--glow-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-slot-games-popular-recommendations__step-item p {
    color: var(--text-secondary-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.page-slot-games-popular-recommendations__tip-item {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-slot-games-popular-recommendations__tip-title {
    color: var(--glow-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-slot-games-popular-recommendations__tip-item p {
    color: var(--text-secondary-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-slot-games-popular-recommendations__faq-section {
    background-color: var(--deep-green-color);
}

.page-slot-games-popular-recommendations__faq-list {
    margin-top: 40px;
}

.page-slot-games-popular-recommendations__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

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

.page-slot-games-popular-recommendations__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main-color);
    cursor: pointer;
    background-color: var(--card-bg-color);
    transition: background-color 0.3s ease;
}

.page-slot-games-popular-recommendations__faq-question:hover {
    background-color: var(--deep-green-color);
}

.page-slot-games-popular-recommendations__faq-qtext {
    flex-grow: 1;
    color: var(--gold-color);
}

.page-slot-games-popular-recommendations__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-slot-games-popular-recommendations__faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary-color);
    font-size: 1rem;
    line-height: 1.7;
}

.page-slot-games-popular-recommendations__call-to-action {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--deep-green-color);
}

.page-slot-games-popular-recommendations__call-to-action .page-slot-games-popular-recommendations__section-title {
    color: var(--gold-color);
}

.page-slot-games-popular-recommendations__call-to-action .page-slot-games-popular-recommendations__text-block {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-main-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-popular-recommendations__hero-content {
        margin-top: 20px;
    }
    .page-slot-games-popular-recommendations__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-slot-games-popular-recommendations__hero-description {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    .page-slot-games-popular-recommendations__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-slot-games-popular-recommendations__game-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .page-slot-games-popular-recommendations__hero-section {
        padding-bottom: 40px;
    }

    .page-slot-games-popular-recommendations__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-games-popular-recommendations__hero-image-wrapper,
    .page-slot-games-popular-recommendations__container,
    .page-slot-games-popular-recommendations__section,
    .page-slot-games-popular-recommendations__game-cards,
    .page-slot-games-popular-recommendations__card,
    .page-slot-games-popular-recommendations__features-grid,
    .page-slot-games-popular-recommendations__feature-item,
    .page-slot-games-popular-recommendations__steps-list,
    .page-slot-games-popular-recommendations__step-item,
    .page-slot-games-popular-recommendations__tips-list,
    .page-slot-games-popular-recommendations__tip-item,
    .page-slot-games-popular-recommendations__faq-list,
    .page-slot-games-popular-recommendations__faq-item,
    .page-slot-games-popular-recommendations__call-to-action,
    .page-slot-games-popular-recommendations__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games-popular-recommendations__hero-content {
        padding: 0 15px;
    }

    .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,
    .page-slot-games-popular-recommendations__btn-small {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games-popular-recommendations__card-image,
    .page-slot-games-popular-recommendations__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    .page-slot-games-popular-recommendations__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-slot-games-popular-recommendations__card-title,
    .page-slot-games-popular-recommendations__feature-title,
    .page-slot-games-popular-recommendations__step-title,
    .page-slot-games-popular-recommendations__tip-title {
        font-size: 1.5rem;
    }

    .page-slot-games-popular-recommendations__text-block,
    .page-slot-games-popular-recommendations__card-description,
    .page-slot-games-popular-recommendations__feature-description,
    .page-slot-games-popular-recommendations__step-item p,
    .page-slot-games-popular-recommendations__tip-item p,
    .page-slot-games-popular-recommendations__faq-answer p {
        font-size: 1rem;
    }

    .page-slot-games-popular-recommendations__faq-question {
        font-size: 1.1rem;
        padding: 15px;
    }

    .page-slot-games-popular-recommendations__faq-toggle {
        font-size: 1.5rem;
    }

    .page-slot-games-popular-recommendations__call-to-action {
        padding: 60px 15px;
    }
}