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

:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background-color-page: #F4F7FB;
    --text-main-color: #1F2D3D;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-blog-top-jackpot-games-2024 {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color-page);
    line-height: 1.6;
}

/* Hero Section */
.page-blog-top-jackpot-games-2024__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* body padding-top handles header offset */
    background-color: var(--background-color-page);
    overflow: hidden;
}

.page-blog-top-jackpot-games-2024__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width on desktop for flex item */
}

.page-blog-top-jackpot-games-2024__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-top-jackpot-games-2024__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-blog-top-jackpot-games-2024__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-top-jackpot-games-2024__hero-content h1 {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-blog-top-jackpot-games-2024__hero-content p {
    font-size: 1.1rem;
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-blog-top-jackpot-games-2024__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-top-jackpot-games-2024__cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-blog-top-jackpot-games-2024__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.page-blog-top-jackpot-games-2024__article h2,
.page-blog-top-jackpot-games-2024__article h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-top-jackpot-games-2024__section-title {
    font-size: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.page-blog-top-jackpot-games-2024__subsection-title {
    font-size: 1.5rem;
    color: var(--text-main-color);
}

.page-blog-top-jackpot-games-2024__article p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-main-color);
}

.page-blog-top-jackpot-games-2024__article ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-blog-top-jackpot-games-2024__article li {
    margin-bottom: 8px;
    color: var(--text-main-color);
}

/* Game List Cards */
.page-blog-top-jackpot-games-2024__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-top-jackpot-games-2024__game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-top-jackpot-games-2024__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-top-jackpot-games-2024__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-top-jackpot-games-2024__card-title {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 15px;
    margin: 0;
}

.page-blog-top-jackpot-games-2024__card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-top-jackpot-games-2024__card-title a:hover {
    color: var(--secondary-color);
}

.page-blog-top-jackpot-games-2024__card-description {
    padding: 0 15px 15px;
    font-size: 0.95rem;
    color: var(--text-main-color);
}

/* Benefit List */
.page-blog-top-jackpot-games-2024__benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-top-jackpot-games-2024__benefit-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-top-jackpot-games-2024__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-top-jackpot-games-2024__benefit-item img {
    
    
    margin-bottom: 15px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-top-jackpot-games-2024__benefit-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-blog-top-jackpot-games-2024__benefit-item p {
    font-size: 0.95rem;
    color: var(--text-main-color);
}

/* CTA Blocks */
.page-blog-top-jackpot-games-2024__cta-block,
.page-blog-top-jackpot-games-2024__conclusion-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--background-color-page);
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-top-jackpot-games-2024__cta-block p,
.page-blog-top-jackpot-games-2024__conclusion-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-blog-top-jackpot-games-2024__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-top-jackpot-games-2024__btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* FAQ Section */
.page-blog-top-jackpot-games-2024__faq-section {
    margin-top: 40px;
}

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

details.page-blog-top-jackpot-games-2024__faq-item summary.page-blog-top-jackpot-games-2024__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

details.page-blog-top-jackpot-games-2024__faq-item summary.page-blog-top-jackpot-games-2024__faq-question:hover {
    background: var(--background-color-page);
}

.page-blog-top-jackpot-games-2024__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}

.page-blog-top-jackpot-games-2024__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

details.page-blog-top-jackpot-games-2024__faq-item .page-blog-top-jackpot-games-2024__faq-answer {
    padding: 0 20px 20px;
    background: var(--background-color-page);
    border-radius: 0 0 8px 8px;
    color: var(--text-main-color);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-top-jackpot-games-2024__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-top-jackpot-games-2024__hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-blog-top-jackpot-games-2024__hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-top-jackpot-games-2024__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-top: 15px;
    }

    .page-blog-top-jackpot-games-2024__content-area {
        padding: 20px 15px;
        margin-top: -30px;
    }

    .page-blog-top-jackpot-games-2024__section-title {
        font-size: 1.6rem;
    }

    .page-blog-top-jackpot-games-2024__subsection-title {
        font-size: 1.3rem;
    }

    .page-blog-top-jackpot-games-2024__game-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-top-jackpot-games-2024__game-card img {
        
    }

    .page-blog-top-jackpot-games-2024__benefit-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-top-jackpot-games-2024__cta-block,
    .page-blog-top-jackpot-games-2024__conclusion-cta {
        padding: 30px 15px;
    }

    .page-blog-top-jackpot-games-2024__cta-block p,
    .page-blog-top-jackpot-games-2024__conclusion-cta p {
        font-size: 1.1rem;
    }

    details.page-blog-top-jackpot-games-2024__faq-item summary.page-blog-top-jackpot-games-2024__faq-question {
        padding: 15px;
    }

    .page-blog-top-jackpot-games-2024__faq-qtext {
        font-size: 1rem;
    }

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

    /* Ensure all images are responsive */
    .page-blog-top-jackpot-games-2024 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-top-jackpot-games-2024__section,
    .page-blog-top-jackpot-games-2024__card,
    .page-blog-top-jackpot-games-2024__container,
    .page-blog-top-jackpot-games-2024__game-card,
    .page-blog-top-jackpot-games-2024__benefit-item,
    .page-blog-top-jackpot-games-2024__cta-block,
    .page-blog-top-jackpot-games-2024__conclusion-cta {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}