/* style/blog-how-to-choose-best-slot-games.css */

/* Variables for colors */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-button-color: #EA7C07;
    --background-color-page: #FFFFFF;
    --black-color: #000000;
}

.page-blog-how-to-choose-best-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color-page);
}

.page-blog-how-to-choose-best-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-blog-how-to-choose-best-slot-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-blog-how-to-choose-best-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-choose-best-slot-games__hero-content {
    max-width: 900px;
    margin: 20px auto 0;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-how-to-choose-best-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-slot-games__section {
    padding: 60px 0;
    background-color: var(--background-color-page);
}

.page-blog-how-to-choose-best-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-choose-best-slot-games__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-slot-games__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-best-slot-games__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-slot-games__card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-choose-best-slot-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-choose-best-slot-games__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__card-text {
    font-size: 1em;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-slot-games__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-slot-games__feature-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-blog-how-to-choose-best-slot-games__feature-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__feature-description {
    font-size: 1em;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-slot-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-slot-games__list-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-blog-how-to-choose-best-slot-games__list-item:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-choose-best-slot-games__list-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__list-description {
    font-size: 1em;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-slot-games__faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-blog-how-to-choose-best-slot-games__faq-list {
    margin-top: 40px;
}

.page-blog-how-to-choose-best-slot-games__faq-item {
    background-color: var(--secondary-color);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-blog-how-to-choose-best-slot-games__faq-item summary {
    list-style: none;
}

.page-blog-how-to-choose-best-slot-games__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-choose-best-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    background-color: var(--secondary-color);
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-best-slot-games__faq-question:hover {
    background-color: #f0f0f0;
}

.page-blog-how-to-choose-best-slot-games__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-choose-best-slot-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-blog-how-to-choose-best-slot-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: var(--text-dark);
    background-color: #fcfcfc;
}

.page-blog-how-to-choose-best-slot-games__conclusion {
    text-align: center;
    padding: 80px 0;
}

.page-blog-how-to-choose-best-slot-games__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-blog-how-to-choose-best-slot-games__dark-section .page-blog-how-to-choose-best-slot-games__section-title,
.page-blog-how-to-choose-best-slot-games__dark-section .page-blog-how-to-choose-best-slot-games__paragraph {
    color: var(--text-light);
}

.page-blog-how-to-choose-best-slot-games__dark-section .page-blog-how-to-choose-best-slot-games__highlight {
    color: var(--secondary-color);
}

/* CTA Buttons */
.page-blog-how-to-choose-best-slot-games__cta-button {
    display: inline-block;
    padding: 15px 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: 2px solid transparent;
    margin: 10px 5px;
}

.page-blog-how-to-choose-best-slot-games__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.page-blog-how-to-choose-best-slot-games__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--primary-color), 0.3);
}

.page-blog-how-to-choose-best-slot-games__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-blog-how-to-choose-best-slot-games__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-best-slot-games__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-blog-how-to-choose-best-slot-games__section-title {
        font-size: 2em;
    }
    .page-blog-how-to-choose-best-slot-games__card-grid,
    .page-blog-how-to-choose-best-slot-games__feature-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-best-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-how-to-choose-best-slot-games__hero-section {
        padding-bottom: 20px;
    }
    .page-blog-how-to-choose-best-slot-games__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-blog-how-to-choose-best-slot-games__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-blog-how-to-choose-best-slot-games__section {
        padding: 40px 0;
    }
    .page-blog-how-to-choose-best-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-how-to-choose-best-slot-games__paragraph,
    .page-blog-how-to-choose-best-slot-games__card-text,
    .page-blog-how-to-choose-best-slot-games__feature-description,
    .page-blog-how-to-choose-best-slot-games__list-description,
    .page-blog-how-to-choose-best-slot-games__faq-answer p {
        font-size: 0.95em;
    }
    .page-blog-how-to-choose-best-slot-games__card,
    .page-blog-how-to-choose-best-slot-games__feature-item,
    .page-blog-how-to-choose-best-slot-games__list-item {
        padding: 20px;
    }
    .page-blog-how-to-choose-best-slot-games__card-title,
    .page-blog-how-to-choose-best-slot-games__feature-title,
    .page-blog-how-to-choose-best-slot-games__list-title {
        font-size: 1.3em;
    }
    .page-blog-how-to-choose-best-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-blog-how-to-choose-best-slot-games__cta-button {
        padding: 12px 20px;
        font-size: 1em;
        margin: 5px;
    }

    /* Mobile responsive images */
    .page-blog-how-to-choose-best-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-how-to-choose-best-slot-games__hero-image-wrapper,
    .page-blog-how-to-choose-best-slot-games__container,
    .page-blog-how-to-choose-best-slot-games__card-grid,
    .page-blog-how-to-choose-best-slot-games__feature-list,
    .page-blog-how-to-choose-best-slot-games__guide-list,
    .page-blog-how-to-choose-best-slot-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    /* Mobile responsive buttons */
    .page-blog-how-to-choose-best-slot-games__cta-button,
    .page-blog-how-to-choose-best-slot-games__btn-primary,
    .page-blog-how-to-choose-best-slot-games__btn-secondary,
    .page-blog-how-to-choose-best-slot-games a[class*="button"],
    .page-blog-how-to-choose-best-slot-games 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-blog-how-to-choose-best-slot-games__hero-content .page-blog-how-to-choose-best-slot-games__cta-button {
        margin: 10px auto;
        display: block;
    }
    .page-blog-how-to-choose-best-slot-games__list-item .page-blog-how-to-choose-best-slot-games__cta-button {
        margin: 15px auto 0;
        display: block;
    }
}

/* Color Contrast Fixes (if needed) */
.page-blog-how-to-choose-best-slot-games__contrast-fix {
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-how-to-choose-best-slot-games__text-contrast-fix {
  color: var(--text-dark) !important;
  text-shadow: none !important;
}