/* style/blog-top-card-game-strategies.css */

/* Base styles for the page content */
.page-blog-top-card-game-strategies {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--bg-color, #FFFFFF); /* Inherit or default to white */
}

/* Container for content */
.page-blog-top-card-game-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-top-card-game-strategies__hero-section {
    display: flex;
    flex-direction: column; /* Enforce top image, bottom content */
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #26A9E0, #1a7bbd);
    color: #FFFFFF;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-blog-top-card-game-strategies__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Example max width for the image */
    margin-bottom: 20px;
}

.page-blog-top-card-game-strategies__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-top-card-game-strategies__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.page-blog-top-card-game-strategies__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Example clamp */
}

.page-blog-top-card-game-strategies__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-blog-top-card-game-strategies__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 600px; /* Limit button group width */
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden; /* Prevent overflow */
}

.page-blog-top-card-game-strategies__btn-primary,
.page-blog-top-card-game-strategies__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't exceed container */
}

.page-blog-top-card-game-strategies__btn-primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-blog-top-card-game-strategies__btn-primary:hover {
    background-color: #d16b00;
    border-color: #d16b00;
    transform: translateY(-2px);
}

.page-blog-top-card-game-strategies__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0; /* Main brand color */
    border: 2px solid #FFFFFF;
}

.page-blog-top-card-game-strategies__btn-secondary:hover {
    background-color: #e0f2f7;
    border-color: #e0f2f7;
    transform: translateY(-2px);
}

/* Section General Styles */
.page-blog-top-card-game-strategies__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #26A9E0; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
}

.page-blog-top-card-game-strategies__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

.page-blog-top-card-game-strategies__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-blog-top-card-game-strategies__dark-section {
    background-color: #26A9E0; /* Main brand color */
    color: #FFFFFF;
    padding: 60px 0;
}

.page-blog-top-card-game-strategies__dark-section .page-blog-top-card-game-strategies__section-title,
.page-blog-top-card-game-strategies__dark-section .page-blog-top-card-game-strategies__paragraph,
.page-blog-top-card-game-strategies__dark-section .page-blog-top-card-game-strategies__strategy-title,
.page-blog-top-card-game-strategies__dark-section .page-blog-top-card-game-strategies__game-type-title,
.page-blog-top-card-game-strategies__dark-section .page-blog-top-card-game-strategies__tip-title,
.page-blog-top-card-game-strategies__dark-section .page-blog-top-card-game-strategies__criteria-title {
    color: #FFFFFF; /* White text for dark sections */
}

/* Content Images */
.page-blog-top-card-game-strategies__content-image,
.page-blog-top-card-game-strategies__game-image,
.page-blog-top-card-game-strategies__article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Strategy items */
.page-blog-top-card-game-strategies__strategy-item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for contrast */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-top-card-game-strategies__strategy-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

/* Game Types Section */
.page-blog-top-card-game-strategies__game-type-item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-top-card-game-strategies__game-type-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #26A9E0;
}

/* Tips Section */
.page-blog-top-card-game-strategies__tip-list {
    list-style: none;
    padding: 0;
}

.page-blog-top-card-game-strategies__tip-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-top-card-game-strategies__tip-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

/* Platform Selection Section */
.page-blog-top-card-game-strategies__criteria-list {
    list-style: none;
    padding: 0;
}

.page-blog-top-card-game-strategies__criteria-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for contrast */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-top-card-game-strategies__criteria-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

/* Related Articles Section */
.page-blog-top-card-game-strategies__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top-card-game-strategies__article-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-blog-top-card-game-strategies__article-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-top-card-game-strategies__article-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 15px 15px 10px;
    color: #26A9E0;
}

.page-blog-top-card-game-strategies__article-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-blog-top-card-game-strategies__article-title a:hover {
    text-decoration: underline;
}

.page-blog-top-card-game-strategies__article-meta {
    font-size: 0.9rem;
    color: #666666;
    margin: 0 15px 10px;
}

.page-blog-top-card-game-strategies__article-excerpt {
    font-size: 0.95rem;
    color: #555555;
    margin: 0 15px 15px;
    flex-grow: 1;
}

.page-blog-top-card-game-strategies__read-more {
    display: inline-block;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 15px 15px;
    align-self: flex-start;
}

.page-blog-top-card-game-strategies__read-more:hover {
    background-color: #1a7bbd;
}

/* FAQ Section */
.page-blog-top-card-game-strategies__faq-list {
    margin-top: 30px;
}

.page-blog-top-card-game-strategies__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-top-card-game-strategies__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #26A9E0;
    list-style: none; /* For details/summary */
}

.page-blog-top-card-game-strategies__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}

.page-blog-top-card-game-strategies__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #26A9E0;
    margin-left: 10px;
}

.page-blog-top-card-game-strategies__faq-answer {
    padding: 0 20px 15px;
    font-size: 1rem;
    color: #555555;
}

.page-blog-top-card-game-strategies__faq-item[open] .page-blog-top-card-game-strategies__faq-toggle {
    content: "−"; /* Change toggle to minus when open */
}

.page-blog-top-card-game-strategies__text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-top-card-game-strategies__container {
        padding: 15px;
    }

    .page-blog-top-card-game-strategies__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-top-card-game-strategies__section-title {
        font-size: 1.8rem;
    }

    .page-blog-top-card-game-strategies__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-blog-top-card-game-strategies__hero-section {
        padding-top: 10px !important; /* Small top padding, override any shared.css */
        padding-bottom: 30px;
    }

    .page-blog-top-card-game-strategies__hero-content {
        padding: 0 15px;
    }

    .page-blog-top-card-game-strategies__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-blog-top-card-game-strategies__description {
        font-size: 1rem;
    }

    /* Buttons and Button Containers */
    .page-blog-top-card-game-strategies__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        max-width: 100% !important; /* Ensure container takes full width with padding */
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-top-card-game-strategies__btn-primary,
    .page-blog-top-card-game-strategies__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
    }

    /* General Images and Containers */
    .page-blog-top-card-game-strategies img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-top-card-game-strategies__container,
    .page-blog-top-card-game-strategies__section,
    .page-blog-top-card-game-strategies__card,
    .page-blog-top-card-game-strategies__article-card,
    .page-blog-top-card-game-strategies__strategy-item,
    .page-blog-top-card-game-strategies__game-type-item,
    .page-blog-top-card-game-strategies__tip-item,
    .page-blog-top-card-game-strategies__criteria-item,
    .page-blog-top-card-game-strategies__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden; /* Ensure content does not overflow */
    }

    /* Product Display Area (Gameshow images) */
    .page-blog-top-card-game-strategies__game-type-item {
        margin-bottom: 20px;
    }

    /* Related Articles Grid */
    .page-blog-top-card-game-strategies__article-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    
    .page-blog-top-card-game-strategies__article-image {
        height: 180px; /* Adjust height for mobile */
    }

    /* Other content modules */
    .page-blog-top-card-game-strategies__section-title {
        font-size: 1.5rem;
        padding-top: 30px;
    }
    .page-blog-top-card-game-strategies__strategy-title,
    .page-blog-top-card-game-strategies__game-type-title,
    .page-blog-top-card-game-strategies__tip-title,
    .page-blog-top-card-game-strategies__criteria-title {
        font-size: 1.4rem;
    }
    .page-blog-top-card-game-strategies__paragraph {
        font-size: 0.95rem;
    }
    .page-blog-top-card-game-strategies__faq-question {
        font-size: 1rem;
    }
}