/* style/blog-top-slot-games-2024.css */

:root {
    --page-primary-color: #017439;
    --page-secondary-color: #FFFFFF;
    --page-text-light: #ffffff;
    --page-text-dark: #333333;
    --page-background-dark: #0a0a0a;
    --page-background-light: #f8f9fa;
    --page-register-button: #C30808;
    --page-login-button: #C30808;
    --page-button-text-color: #FFFF00;
}

.page-blog-top-slot-games-2024 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-light); /* Default text color for dark body background */
    background-color: var(--page-background-dark); /* Inherited from body, but ensures consistency */
}

.page-blog-top-slot-games-2024__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-blog-top-slot-games-2024__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    color: var(--page-text-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-top-slot-games-2024__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.page-blog-top-slot-games-2024__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-top-slot-games-2024__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    margin-top: 20px;
}

.page-blog-top-slot-games-2024__main-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--page-secondary-color);
    line-height: 1.2;
}

.page-blog-top-slot-games-2024__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--page-secondary-color);
}

.page-blog-top-slot-games-2024__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-top-slot-games-2024__btn-primary,
.page-blog-top-slot-games-2024__btn-secondary,
.page-blog-top-slot-games-2024__game-btn,
.page-blog-top-slot-games-2024__article-read-more {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt */
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-top-slot-games-2024__btn-primary {
    background-color: var(--page-register-button); /* #C30808 */
    color: var(--page-button-text-color); /* #FFFF00 */
    border: 2px solid var(--page-register-button);
}

.page-blog-top-slot-games-2024__btn-primary:hover {
    background-color: darken(var(--page-register-button), 10%);
    border-color: darken(var(--page-register-button), 10%);
}

.page-blog-top-slot-games-2024__btn-secondary {
    background-color: transparent;
    color: var(--page-primary-color); /* #017439 */
    border: 2px solid var(--page-primary-color);
}

.page-blog-top-slot-games-2024__btn-secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
}

/* Introduction Section */
.page-blog-top-slot-games-2024__introduction-section {
    background-color: var(--page-background-light); /* #f8f9fa */
    color: var(--page-text-dark); /* #333333 */
    padding: 60px 0;
}

.page-blog-top-slot-games-2024__section-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--page-primary-color);
}

.page-blog-top-slot-games-2024__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Top Games Section */
.page-blog-top-slot-games-2024__top-games-section {
    background-color: var(--page-background-dark); /* #0a0a0a */
    color: var(--page-text-light); /* #ffffff */
    padding: 60px 0;
}

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

.page-blog-top-slot-games-2024__game-card {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-top-slot-games-2024__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-blog-top-slot-games-2024__game-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 10px 15px;
    min-height: 50px;
}

.page-blog-top-slot-games-2024__game-title a {
    color: var(--page-secondary-color); /* White */
    text-decoration: none;
}

.page-blog-top-slot-games-2024__game-title a:hover {
    color: var(--page-primary-color);
}

.page-blog-top-slot-games-2024__game-description {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-top-slot-games-2024__game-btn {
    background-color: var(--page-primary-color); /* #017439 */
    color: var(--page-secondary-color); /* #FFFFFF */
    border: 2px solid var(--page-primary-color);
    margin: 0 15px;
}

.page-blog-top-slot-games-2024__game-btn:hover {
    background-color: darken(var(--page-primary-color), 10%);
    border-color: darken(var(--page-primary-color), 10%);
}

.page-blog-top-slot-games-2024__view-all-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Strategy Section */
.page-blog-top-slot-games-2024__strategy-section {
    background-color: var(--page-background-light); /* #f8f9fa */
    color: var(--page-text-dark); /* #333333 */
    padding: 60px 0;
}

.page-blog-top-slot-games-2024__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-top-slot-games-2024__list-item {
    background-color: var(--page-secondary-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-blog-top-slot-games-2024__list-title {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--page-primary-color);
    margin-bottom: 10px;
}

.page-blog-top-slot-games-2024__list-description {
    font-size: 1em;
    color: var(--page-text-dark);
}

/* Advantages Section */
.page-blog-top-slot-games-2024__advantages-section {
    background-color: var(--page-primary-color); /* #017439 */
    color: var(--page-text-light); /* #ffffff */
    padding: 60px 0;
}

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

.page-blog-top-slot-games-2024__advantage-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-top-slot-games-2024__advantage-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-top-slot-games-2024__advantage-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--page-secondary-color);
}

.page-blog-top-slot-games-2024__advantage-description {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.page-blog-top-slot-games-2024__faq-section {
    background-color: var(--page-background-light); /* #f8f9fa */
    color: var(--page-text-dark); /* #333333 */
    padding: 60px 0;
}

.page-blog-top-slot-games-2024__faq-list {
    margin-top: 40px;
}

.page-blog-top-slot-games-2024__faq-item {
    background-color: var(--page-secondary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-blog-top-slot-games-2024__faq-item summary {
    list-style: none;
}

.page-blog-top-slot-games-2024__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-top-slot-games-2024__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--page-primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.page-blog-top-slot-games-2024__faq-item[open] .page-blog-top-slot-games-2024__faq-question {
    border-bottom: 1px solid var(--page-primary-color);
}

.page-blog-top-slot-games-2024__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--page-primary-color);
    transition: transform 0.3s ease;
}

.page-blog-top-slot-games-2024__faq-item[open] .page-blog-top-slot-games-2024__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-top-slot-games-2024__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--page-text-dark);
    border-top: 1px solid #f0f0f0;
}

.page-blog-top-slot-games-2024__faq-item:not([open]) .page-blog-top-slot-games-2024__faq-answer {
    display: none;
}

/* CTA Section */
.page-blog-top-slot-games-2024__cta-section {
    background-color: var(--page-background-dark); /* #0a0a0a */
    color: var(--page-text-light); /* #ffffff */
    padding: 60px 0;
    text-align: center;
}

/* Related Articles Section */
.page-blog-top-slot-games-2024__related-articles-section {
    background-color: var(--page-background-light); /* #f8f9fa */
    color: var(--page-text-dark); /* #333333 */
    padding: 60px 0;
}

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

.page-blog-top-slot-games-2024__article-card {
    background-color: var(--page-secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-top-slot-games-2024__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-blog-top-slot-games-2024__article-title {
    font-size: 1.3em;
    font-weight: 600;
    margin: 15px 20px 10px;
    min-height: 60px;
}

.page-blog-top-slot-games-2024__article-title a {
    color: var(--page-primary-color);
    text-decoration: none;
}

.page-blog-top-slot-games-2024__article-title a:hover {
    text-decoration: underline;
}

.page-blog-top-slot-games-2024__article-meta {
    font-size: 0.85em;
    color: #777;
    margin: 0 20px 10px;
}

.page-blog-top-slot-games-2024__article-excerpt {
    font-size: 0.95em;
    color: var(--page-text-dark);
    margin: 0 20px 15px;
    flex-grow: 1;
}

.page-blog-top-slot-games-2024__article-read-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-top-slot-games-2024__article-read-more:hover {
    text-decoration: underline;
}

/* General image styling for content area */
.page-blog-top-slot-games-2024 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-top-slot-games-2024__main-title {
        font-size: 2.5em;
    }
    .page-blog-top-slot-games-2024__section-title {
        font-size: 2em;
    }
    .page-blog-top-slot-games-2024__games-grid,
    .page-blog-top-slot-games-2024__advantages-grid,
    .page-blog-top-slot-games-2024__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .page-blog-top-slot-games-2024__hero-section {
        padding-top: 10px !important; /* Small top padding, relying on body for header offset */
        padding-bottom: 30px;
    }

    .page-blog-top-slot-games-2024__hero-content {
        margin-top: 10px;
        padding: 15px;
    }

    .page-blog-top-slot-games-2024__main-title {
        font-size: 2em;
    }

    .page-blog-top-slot-games-2024__hero-description {
        font-size: 1em;
    }

    .page-blog-top-slot-games-2024__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsiveness */
    .page-blog-top-slot-games-2024__btn-primary,
    .page-blog-top-slot-games-2024__btn-secondary,
    .page-blog-top-slot-games-2024__game-btn,
    .page-blog-top-slot-games-2024__article-read-more,
    .page-blog-top-slot-games-2024 a[class*="button"],
    .page-blog-top-slot-games-2024 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;
    }

    /* Button containers responsiveness */
    .page-blog-top-slot-games-2024__cta-buttons,
    .page-blog-top-slot-games-2024__button-group,
    .page-blog-top-slot-games-2024__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-blog-top-slot-games-2024__section-title {
        font-size: 1.8em;
    }

    .page-blog-top-slot-games-2024__container,
    .page-blog-top-slot-games-2024__introduction-section,
    .page-blog-top-slot-games-2024__top-games-section,
    .page-blog-top-slot-games-2024__strategy-section,
    .page-blog-top-slot-games-2024__advantages-section,
    .page-blog-top-slot-games-2024__faq-section,
    .page-blog-top-slot-games-2024__cta-section,
    .page-blog-top-slot-games-2024__related-articles-section {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* General image responsiveness */
    .page-blog-top-slot-games-2024 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-top-slot-games-2024__game-card,
    .page-blog-top-slot-games-2024__advantage-card,
    .page-blog-top-slot-games-2024__article-card {
        margin-bottom: 20px;
    }

    .page-blog-top-slot-games-2024__games-grid,
    .page-blog-top-slot-games-2024__advantages-grid,
    .page-blog-top-slot-games-2024__articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-top-slot-games-2024__list-item {
        padding: 20px;
    }

    .page-blog-top-slot-games-2024__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-blog-top-slot-games-2024__faq-answer {
        padding: 15px 20px;
    }

    .page-blog-top-slot-games-2024__game-image {
        height: 180px;
    }

    .page-blog-top-slot-games-2024__article-image {
        height: 180px;
    }
}

/* Contrast Fixes - Ensure text is visible on dark body background */
.page-blog-top-slot-games-2024__light-bg {
    color: var(--page-text-dark); /* Dark text on light background */
}

.page-blog-top-slot-games-2024__dark-bg {
    color: var(--page-text-light); /* Light text on dark background */
}

.page-blog-top-slot-games-2024__card,
.page-blog-top-slot-games-2024__list-item,
.page-blog-top-slot-games-2024__faq-item,
.page-blog-top-slot-games-2024__article-card {
    background-color: var(--page-secondary-color); /* Always white background for cards/list items for readability */
    color: var(--page-text-dark); /* Dark text on white background */
}

.page-blog-top-slot-games-2024__game-card {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
    color: var(--page-text-light); /* Light text on this card */
}

.page-blog-top-slot-games-2024__game-title a {
    color: var(--page-secondary-color); /* White for game titles on dark cards */
}

.page-blog-top-slot-games-2024__game-description {
    color: rgba(255, 255, 255, 0.8); /* Slightly lighter text for description on dark cards */
}

.page-blog-top-slot-games-2024__advantage-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on primary color background */
    color: var(--page-text-light); /* Light text */
}

.page-blog-top-slot-games-2024__advantage-description {
    color: rgba(255, 255, 255, 0.8); /* Slightly lighter text for description on advantage cards */
}

.page-blog-top-slot-games-2024__article-meta {
    color: #777; /* Neutral grey for meta text */
}

.page-blog-top-slot-games-2024__article-excerpt {
    color: var(--page-text-dark);
}