:root {
    --primary-color: #E53935;
    --secondary-color: #FF5A4F;
    --card-bg: #FFFFFF;
    --page-bg: #F5F7FA;
    --text-main: #333333;
    --border-color: #E0E0E0;
    --accent-color: #d6d604; /* Yellow-green/Lemon yellow as per 3WIN style */
    --header-offset: 122px; /* Default from shared, body handles this */
}

/* Base styles for the page content */
.page-blog-top-casino-games-analysis {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: var(--page-bg); /* Use page background color */
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-blog-top-casino-games-analysis__container {
    max-width: 1200px; /* Boxed feel */
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-blog-top-casino-games-analysis__hero-section {
    position: relative;
    background-color: var(--primary-color); /* Fallback background for hero */
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-blog-top-casino-games-analysis__hero-figure {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-blog-top-casino-games-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* Example ratio, can be adjusted */
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no CSS filters are applied */
}

.page-blog-top-casino-games-analysis__hero-content {
    padding: 40px 20px 60px;
    background-color: #2d0000; /* Deep red/wine red as per 3WIN style */
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
}

.page-blog-top-casino-games-analysis__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent-color); /* Use accent color for H1 */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-top-casino-games-analysis__intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-blog-top-casino-games-analysis__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-blog-top-casino-games-analysis__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.page-blog-top-casino-games-analysis__content-section {
    padding: 60px 0;
    background-color: var(--page-bg); /* Use page background for content area */
}

.page-blog-top-casino-games-analysis__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.page-blog-top-casino-games-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.page-blog-top-casino-games-analysis__game-article {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-blog-top-casino-games-analysis__game-title {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-blog-top-casino-games-analysis__game-figure {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.page-blog-top-casino-games-analysis__game-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3; /* Common ratio for content images */
    object-fit: cover;
    object-position: center;
    filter: none; /* No CSS filters */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-blog-top-casino-games-analysis__game-article p {
    font-size: 1rem;
    color: var(--text-main);
}

.page-blog-top-casino-games-analysis__read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-top-casino-games-analysis__read-more-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-blog-top-casino-games-analysis__cta-bottom {
    text-align: center;
    padding: 50px 20px;
    background-color: #2d0000; /* Deep red/wine red */
    color: #ffffff;
    border-radius: 12px;
    margin-top: 40px;
}

.page-blog-top-casino-games-analysis__cta-bottom .page-blog-top-casino-games-analysis__section-title {
    color: var(--accent-color); /* Use accent color for H2 in CTA bottom */
    margin-bottom: 20px;
}

.page-blog-top-casino-games-analysis__cta-bottom .page-blog-top-casino-games-analysis__section-title::after {
    background-color: var(--accent-color);
}

.page-blog-top-casino-games-analysis__cta-bottom p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-blog-top-casino-games-analysis__cta-button--bottom {
    font-size: 1.1rem;
    padding: 18px 35px;
}

/* Responsive Adjustments */
@media (max-width: 849px) {
    .page-blog-top-casino-games-analysis__hero-content {
        padding: 30px 15px 40px;
    }
    .page-blog-top-casino-games-analysis__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-blog-top-casino-games-analysis__intro-text {
        font-size: 1rem;
    }
    .page-blog-top-casino-games-analysis__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    .page-blog-top-casino-games-analysis__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 30px;
    }
    .page-blog-top-casino-games-analysis__game-article {
        padding: 20px;
        margin-bottom: 30px;
    }
    .page-blog-top-casino-games-analysis__game-title {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
    }
    .page-blog-top-casino-games-analysis__game-image {
        min-width: 200px; /* Ensure min-width/height is respected */
        min-height: 200px;
        max-width: 100%; /* Important for mobile overflow */
        height: auto;
    }
    .page-blog-top-casino-games-analysis__cta-bottom {
        padding: 40px 15px;
    }
    .page-blog-top-casino-games-analysis__cta-button--bottom {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

@media (max-width: 549px) {
    .page-blog-top-casino-games-analysis__container {
        padding: 0 15px;
    }
    .page-blog-top-casino-games-analysis__hero-content {
        padding: 25px 10px 30px;
    }
    .page-blog-top-casino-games-analysis__main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    .page-blog-top-casino-games-analysis__intro-text {
        font-size: 0.9rem;
    }
    .page-blog-top-casino-games-analysis__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-blog-top-casino-games-analysis__section-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        margin-bottom: 25px;
    }
    .page-blog-top-casino-games-analysis__game-article {
        padding: 15px;
        margin-bottom: 25px;
    }
    .page-blog-top-casino-games-analysis__game-title {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }
    .page-blog-top-casino-games-analysis__game-image {
        max-width: 100%; /* Ensure no overflow */
        height: auto;
    }
    .page-blog-top-casino-games-analysis__cta-bottom {
        padding: 30px 10px;
    }
    .page-blog-top-casino-games-analysis__cta-bottom p {
        font-size: 1rem;
    }
    .page-blog-top-casino-games-analysis__cta-button--bottom {
        font-size: 0.95rem;
        padding: 12px 25px;
    }
}

/* Ensure content images are responsive on mobile */
@media (max-width: 768px) {
    .page-blog-top-casino-games-analysis__content-section img {
        max-width: 100%;
        height: auto;
    }
}