/* style/blog-we88-casino-game-analysis.css */

/* Custom Colors */
:root {
    --we88-bg-dark: #08160F;
    --we88-card-bg: #11271B;
    --we88-text-main: #F2FFF6;
    --we88-text-secondary: #A7D9B8;
    --we88-border: #2E7A4E;
    --we88-glow: #57E38D;
    --we88-gold: #F2C14E;
    --we88-divider: #1E3A2A;
    --we88-deep-green: #0A4B2C;
    --we88-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --we88-main-color: #11A84E; /* Primary color for general use */
    --we88-accent-color: #22C768; /* Secondary color for general use */
}

.page-blog-we88-casino-game-analysis {
    background-color: var(--we88-bg-dark); /* Matches background #08160F */
    color: var(--we88-text-main); /* Matches Text Main #F2FFF6 for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-we88-casino-game-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-we88-casino-game-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px; /* Small top padding, more bottom padding */
    text-align: center;
    background-color: var(--we88-bg-dark);
    overflow: hidden;
}

.page-blog-we88-casino-game-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height to prevent overly tall hero on desktop */
    overflow: hidden;
    position: relative;
}

.page-blog-we88-casino-game-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly darken image for better text contrast below */
}

.page-blog-we88-casino-game-analysis__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    z-index: 1;
    margin-top: -80px; /* Pull content up over the bottom part of the image for better visual flow */
    position: relative;
    background: linear-gradient(to top, var(--we88-bg-dark) 0%, rgba(8, 22, 15, 0.7) 70%, transparent 100%); /* Fading background for content on image */
    padding-top: 100px; /* Adjust padding to make space for the gradient */
    width: 100%;
    box-sizing: border-box;
}

.page-blog-we88-casino-game-analysis__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Flexible font size for H1 */
    color: var(--we88-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-we88-casino-game-analysis__description {
    font-size: 1.15rem;
    color: var(--we88-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-we88-casino-game-analysis__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}