/* style/blog-how-to-choose-slotvip-games.css */

/* Variables for consistent styling */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg-color: #111111;
    --background-color-page: #0A0A0A; /* Page specific background, but body is from shared */
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --header-offset: 120px; /* Default desktop offset */
}

/* Base styles for the page content area */
.page-blog-how-to-choose-slotvip-games {
    color: var(--text-main-color); /* Light text for dark background */
    background-color: var(--background-color-page); /* Page specific background, body from shared */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space above footer */
}

/* Container for consistent content width */
.page-blog-how-to-choose-slotvip-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-blog-how-to-choose-slotvip-games__hero-section {
    position: relative;
    padding-top: var(--header-offset); /* Account for fixed header */
    background-color: #000; /* Dark background for hero area */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-how-to-choose-slotvip-games__hero-image-wrapper {
    width: 100%;
    max-height: 70vh; /* Limit height of the image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-how-to-choose-slotvip-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px; /* Ensure minimum height for hero image */
}

.page-blog-how-to-choose-slotvip-games__hero-content {
    padding: 40px 20px 60px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-blog-how-to-choose-slotvip-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-how-to-choose-slotvip-games__hero-description {
    font-size: 1.1em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-choose-slotvip-games__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Section titles */
.page-blog-how-to-choose-slotvip-games__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--primary-color);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

/* Paragraphs */
.page-blog-how-to-choose-slotvip-games__paragraph {
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--text-main-color);
    text-align: justify;
}

/* Content Image */
.page-blog-how-to-choose-slotvip-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Feature List */
.page-blog-how-to-choose-slotvip-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-blog-how-to-choose-slotvip-games__feature-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main-color);
    font-size: 1.05em;
    transition: transform 0.3s ease;
}

.page-blog-how-to-choose-slotvip-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-choose-slotvip-games__feature-item strong {
    color: var(--secondary-color);
}

/* Card Grid for Key Factors */
.page-blog-how-to-choose-slotvip-games__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-slotvip-games__card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-main-color);
}

.page-blog-how-to-choose-slotvip-games__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-blog-how-to-choose-slotvip-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

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

.page-blog-how-to-choose-slotvip-games__card-text {
    font-size: 0.95em;
    margin-bottom: 15px;
    flex-grow: 1; /* Ensures text fills space */
}

.page-blog-how-to-choose-slotvip-games__sub-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    color: var(--text-main-color);
}

.page-blog-how-to-choose-slotvip-games__sub-list li {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Step List */
.page-blog-how-to-choose-slotvip-games__step-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    counter-reset: step-counter;
}

.page-blog-how-to-choose-slotvip-games__step-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main-color);
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-slotvip-games__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.page-blog-how-to-choose-slotvip-games__step-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-how-to-choose-slotvip-games__step-item a:hover {
    text-decoration: underline;
}

/* Call to Action Buttons */
.page-blog-how-to-choose-slotvip-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Buttons */
.page-blog-how-to-choose-slotvip-games__btn-primary,
.page-blog-how-to-choose-slotvip-games__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-how-to-choose-slotvip-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* Button text always white */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-choose-slotvip-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
    filter: brightness(1.1);
}

.page-blog-how-to-choose-slotvip-games__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-blog-how-to-choose-slotvip-games__btn-secondary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* FAQ Section */
.page-blog-how-to-choose-slotvip-games__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-choose-slotvip-games__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-slotvip-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: var(--card-bg-color);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-slotvip-games__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-how-to-choose-slotvip-games__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1em; /* Reset h3 font size within FAQ */
}

.page-blog-how-to-choose-slotvip-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-blog-how-to-choose-slotvip-games__faq-item.active .page-blog-how-to-choose-slotvip-games__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-how-to-choose-slotvip-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-main-color);
}

/* Crucial: Ensure FAQ answer expands */
.page-blog-how-to-choose-slotvip-games__faq-item.active .page-blog-how-to-choose-slotvip-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 20px;
}

.page-blog-how-to-choose-slotvip-games__faq-answer p {
    margin: 0;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-slotvip-games__container {
        padding: 0 15px;
    }

    .page-blog-how-to-choose-slotvip-games__hero-content {
        padding: 30px 15px 50px;
    }

    .page-blog-how-to-choose-slotvip-games__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Mobile specific padding-top for hero */
    .page-blog-how-to-choose-slotvip-games__hero-section {
        padding-top: var(--header-offset, 100px) !important; /* Mobile offset */
    }

    .page-blog-how-to-choose-slotvip-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-how-to-choose-slotvip-games__hero-description {
        font-size: 1em;
    }

    .page-blog-how-to-choose-slotvip-games__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-blog-how-to-choose-slotvip-games__btn-primary,
    .page-blog-how-to-choose-slotvip-games__btn-secondary {
        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-slotvip-games__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-choose-slotvip-games__paragraph {
        font-size: 0.95em;
        text-align: left;
    }

    .page-blog-how-to-choose-slotvip-games__content-image,
    .page-blog-how-to-choose-slotvip-games__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important; /* Ensure images are responsive */
        display: block !important;
    }
    
    .page-blog-how-to-choose-slotvip-games__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-choose-slotvip-games__card {
        padding: 20px;
    }

    .page-blog-how-to-choose-slotvip-games__card-title {
        font-size: 1.3em;
    }

    .page-blog-how-to-choose-slotvip-games__feature-list {
        grid-template-columns: 1fr;
    }

    .page-blog-how-to-choose-slotvip-games__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-blog-how-to-choose-slotvip-games__faq-answer {
        padding: 10px 15px;
    }

    .page-blog-how-to-choose-slotvip-games__section,
    .page-blog-how-to-choose-slotvip-games__card,
    .page-blog-how-to-choose-slotvip-games__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }

    /* Additional mobile adjustments for containers with buttons */
    .page-blog-how-to-choose-slotvip-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-how-to-choose-slotvip-games__cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-choose-slotvip-games__hero-content {
        padding: 20px 10px 40px;
    }
    .page-blog-how-to-choose-slotvip-games__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-blog-how-to-choose-slotvip-games__hero-description {
        font-size: 0.9em;
    }
    .page-blog-how-to-choose-slotvip-games__btn-primary,
    .page-blog-how-to-choose-slotvip-games__btn-secondary {
        padding: 10px 20px;
    }
}