/* style/game-guides-popular-slots.css */
.page-game-guides-popular-slots {
    color: #ffffff; /* Dark body background #121212, so use light text */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a; /* Slightly lighter than body for contrast on sections */
}

.page-game-guides-popular-slots__hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero_bg:1920x1080:88clb88,slot_machine_background,luxury_casino,golden_red_lights]') center center/cover no-repeat;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    padding-top: var(--header-offset, 120px); /* Apply header offset */
}

.page-game-guides-popular-slots__hero-content {
    max-width: 900px;
    z-index: 1;
}

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

.page-game-guides-popular-slots__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-game-guides-popular-slots__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-guides-popular-slots__btn-primary,
.page-game-guides-popular-slots__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-popular-slots__btn-primary {
    background-color: #CC0000; /* Main color */
    color: #ffffff;
    border: 2px solid #CC0000;
}

.page-game-guides-popular-slots__btn-primary:hover {
    background-color: #e60000;
    border-color: #e60000;
    transform: translateY(-2px);
}

.page-game-guides-popular-slots__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
}

.page-game-guides-popular-slots__btn-secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-game-guides-popular-slots__hero-image {
    display: none; /* Hero image is part of background, hide the img tag */
}

.page-game-guides-popular-slots__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Consistent dark background for content */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-popular-slots__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-game-guides-popular-slots__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #CC0000; /* Main color as underline */
    border-radius: 2px;
}

.page-game-guides-popular-slots__text-block {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 25px;
    text-align: justify;
}

.page-game-guides-popular-slots__text-block a {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-guides-popular-slots__text-block a:hover {
    color: #CC0000;
}

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

.page-game-guides-popular-slots__feature-card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-guides-popular-slots__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-guides-popular-slots__feature-image {
    width: 100%;
    max-width: 250px; /* Example, ensure min 200px */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-game-guides-popular-slots__feature-description {
    font-size: 1em;
    color: #e0e0e0;
    text-align: justify;
}

.page-game-guides-popular-slots__ordered-list,
.page-game-guides-popular-slots__unordered-list {
    list-style-position: inside;
    margin-bottom: 25px;
    padding-left: 20px;
}

.page-game-guides-popular-slots__ordered-list {
    list-style-type: decimal;
}

.page-game-guides-popular-slots__unordered-list {
    list-style-type: disc;
}

.page-game-guides-popular-slots__list-item {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.page-game-guides-popular-slots__list-item strong {
    color: #FFD700;
}

.page-game-guides-popular-slots__image-content {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
}

/* FAQ Section */
.page-game-guides-popular-slots__faq-container {
    margin-top: 40px;
}

.page-game-guides-popular-slots__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-popular-slots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-game-guides-popular-slots__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-game-guides-popular-slots__faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: #FFD700;
}

.page-game-guides-popular-slots__faq-toggle {
    font-size: 1.8em;
    color: #CC0000;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-game-guides-popular-slots__faq-item.active .page-game-guides-popular-slots__faq-toggle {
    transform: rotate(45deg);
    color: #FFD700;
}

.page-game-guides-popular-slots__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-game-guides-popular-slots__faq-item.active .page-game-guides-popular-slots__faq-answer {
    max-height: 1000px !important; /* Ensure it expands sufficiently */
    padding: 15px 25px 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-game-guides-popular-slots__faq-answer p {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.05em;
    text-align: justify;
}

/* CTA Section */
.page-game-guides-popular-slots__cta-section {
    background-color: #CC0000; /* Main brand color */
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.page-game-guides-popular-slots__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-game-guides-popular-slots__cta-description {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-popular-slots__cta-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-guides-popular-slots__cta-description a:hover {
    color: #f0f0f0;
}

.page-game-guides-popular-slots__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-guides-popular-slots__hero-title {
        font-size: 3em;
    }
    .page-game-guides-popular-slots__section-title {
        font-size: 2.2em;
    }
    .page-game-guides-popular-slots__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-popular-slots__hero-section {
        padding: 80px 15px;
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    }
    .page-game-guides-popular-slots__hero-title {
        font-size: 2.5em;
    }
    .page-game-guides-popular-slots__hero-description {
        font-size: 1em;
    }
    .page-game-guides-popular-slots__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-guides-popular-slots__btn-primary,
    .page-game-guides-popular-slots__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-game-guides-popular-slots__content-area {
        padding: 40px 15px;
    }
    .page-game-guides-popular-slots__section-title {
        font-size: 2em;
    }
    .page-game-guides-popular-slots__text-block,
    .page-game-guides-popular-slots__list-item,
    .page-game-guides-popular-slots__feature-description,
    .page-game-guides-popular-slots__faq-answer p {
        font-size: 0.95em;
    }
    .page-game-guides-popular-slots__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-popular-slots__feature-image {
        max-width: 100%;
    }
    .page-game-guides-popular-slots__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-game-guides-popular-slots__cta-section {
        padding: 40px 15px;
    }
    .page-game-guides-popular-slots__cta-title {
        font-size: 2em;
    }
    .page-game-guides-popular-slots__cta-description {
        font-size: 1em;
    }

    /* Mobile image and container responsiveness */
    .page-game-guides-popular-slots img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-game-guides-popular-slots__section,
    .page-game-guides-popular-slots__card,
    .page-game-guides-popular-slots__container,
    .page-game-guides-popular-slots__feature-card,
    .page-game-guides-popular-slots__cta-section,
    .page-game-guides-popular-slots__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    /* Specific adjustment for feature-card as it has its own padding */
    .page-game-guides-popular-slots__feature-card {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Ensure images meet minimum size requirements and no filters */
.page-game-guides-popular-slots img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    filter: none; /* Explicitly disallow filters */
}

/* Contrast fixes for potential issues */
.page-game-guides-popular-slots__dark-bg {
  color: #ffffff; /* Deep dark background, ensure light text */
}

.page-game-guides-popular-slots__text-contrast-fix {
  color: #f0f0f0 !important; /* Ensure text is visible on dark backgrounds */
  text-shadow: none !important;
}

/* Additional specific styles for image width/height in HTML attributes */
.page-game-guides-popular-slots__hero-image {
    width: 1200px; /* Example, this is for the HTML attribute width, CSS will make it responsive */
    height: 675px; /* Example */
}
/* Feature images */
.page-game-guides-popular-slots__feature-image {
    width: 400px;
    height: 300px;
}
/* Content images */
.page-game-guides-popular-slots__image-content {
    width: 800px;
    height: 600px;
}