:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

.page-blog-latest-game-trends {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-blog-latest-game-trends__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    padding: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.page-blog-latest-game-trends__hero-image-container {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}

.page-blog-latest-game-trends__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* For 1200x675 */
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--border-color);
}

.page-blog-latest-game-trends__hero-content {
    width: 100%;
    max-width: 800px; /* Constrain text width */
    margin-bottom: 20px;
}

.page-blog-latest-game-trends__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-blog-latest-game-trends__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-main-color);
    opacity: 0.9;
}

.page-blog-latest-game-trends__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: #000; /* Contrast for button text */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button is not too small */
}

.page-blog-latest-game-trends__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-game-trends__content-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--card-bg); /* Use card background for content area */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-blog-latest-game-trends__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-latest-game-trends__article-meta {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.page-blog-latest-game-trends__article-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.page-blog-latest-game-trends__article-heading {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.page-blog-latest-game-trends__article p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-main-color);
    text-align: justify;
}

.page-blog-latest-game-trends__image-figure {
    margin: 30px 0;
    text-align: center;
    background-color: var(--background-color);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.page-blog-latest-game-trends__article-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
    filter: none; /* No image filters */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}
/* Ensure HTML width/height attributes are not overridden by smaller CSS values */
.page-blog-latest-game-trends__article-image[width="800"][height="450"] {
    max-width: 800px;
    height: 450px; /* Keep consistent with HTML attribute if not responsive */
}

.page-blog-latest-game-trends__image-caption {
    font-size: 0.9rem;
    color: #AAA; /* A slightly lighter grey for captions */
    margin-top: 10px;
}

.page-blog-latest-game-trends__article blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background-color: rgba(242, 193, 78, 0.08); /* Light background for quote */
    color: var(--text-main-color);
    font-style: italic;
    border-radius: 4px;
}

.page-blog-latest-game-trends__article blockquote p {
    margin-bottom: 0;
}

.page-blog-latest-game-trends__read-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-blog-latest-game-trends__read-more-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #000; /* Contrast for button text */
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}

.page-blog-latest-game-trends__read-more-button:hover {
    background-color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-latest-game-trends__hero-section,
    .page-blog-latest-game-trends__content-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-latest-game-trends__main-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem); /* Adjust for smaller screens */
    }

    .page-blog-latest-game-trends__description {
        font-size: 1rem;
    }

    .page-blog-latest-game-trends__cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: unset;
        width: auto;
    }

    .page-blog-latest-game-trends__article p {
        text-align: left; /* Adjust text alignment for mobile */
    }

    /* Mobile content images constraint */
    .page-blog-latest-game-trends__article-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce minimum size */
        min-height: 200px; /* Still enforce minimum size */
    }
    .page-blog-latest-game-trends__article-image[width="800"][height="450"] {
        width: 100%; /* Override specific width for responsiveness */
        height: auto;
    }

    .page-blog-latest-game-trends__content-section {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 549px) {
    .page-blog-latest-game-trends__article p {
        text-align: left;
    }
}