/* style/blog-nw88-latest-games-analysis.css */

/* Base styles for the page content */
.page-blog-nw88-latest-games-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light background */
    background-color: #ffffff; /* Default light background for main content area */
}

/* Custom colors from prompt */
:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg: #D32F2F;
    --section-bg: #B71C1C;
    --text-main-light: #FFF5E1; /* For use on dark backgrounds */
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red: #7A0E0E; /* Good for text on gold buttons */
}

/* Hero Section */
.page-blog-nw88-latest-games-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding as body handles header offset */
    box-sizing: border-box;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-nw88-latest-games-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-blog-nw88-latest-games-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-nw88-latest-games-analysis__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: var(--text-main-light); /* Light text on dark background */
    padding: 20px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
}

.page-blog-nw88-latest-games-analysis__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-main-light);
    letter-spacing: 0.05em;
}

.page-blog-nw88-latest-games-analysis__lead-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-main-light);
}

/* CTA Buttons */
.page-blog-nw88-latest-games-analysis__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; /* Ensure button container is full width */
    max-width: 100%; /* Ensure button container is full width */
    box-sizing: border-box;
}

.page-blog-nw88-latest-games-analysis__btn-primary,
.page-blog-nw88-latest-games-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-blog-nw88-latest-games-analysis__btn-primary {
    background: var(--button-gradient);
    color: var(--deep-red); /* Deep red text on gold for contrast */
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-nw88-latest-games-analysis__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-nw88-latest-games-analysis__btn-secondary {
    background: var(--primary-color);
    color: var(--text-main-light);
    border: 2px solid var(--primary-color);
}

.page-blog-nw88-latest-games-analysis__btn-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-blog-nw88-latest-games-analysis__cta-buttons--center {
    justify-content: center;
    margin-top: 30px;
}

/* Video Section */
.page-blog-nw88-latest-games-analysis__video-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px 20px 40px;
    background-color: #f0f0f0;
}

.page-blog-nw88-latest-games-analysis__video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.page-blog-nw88-latest-games-analysis__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-blog-nw88-latest-games-analysis__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.page-blog-nw88-latest-games-analysis__video-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

/* Main Content Area */
.page-blog-nw88-latest-games-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: var(--light-bg, #ffffff); /* Default light background */
    color: var(--dark-text, #333333); /* Default dark text */
}

.page-blog-nw88-latest-games-analysis__section {
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 10px;
    background-color: #ffffff; /* Ensure light background for general text sections */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-nw88-latest-games-analysis__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.page-blog-nw88-latest-games-analysis__sub-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--deep-red);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-nw88-latest-games-analysis p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.page-blog-nw88-latest-games-analysis strong {
    color: var(--primary-color);
}

/* Dark section styling */
.page-blog-nw88-latest-games-analysis__section--dark {
    background-color: var(--section-bg); /* #B71C1C */
    color: var(--text-main-light); /* #FFF5E1 */
    box-shadow: none;
    padding: 40px 30px;
}

.page-blog-nw88-latest-games-analysis__section--dark .page-blog-nw88-latest-games-analysis__section-title,
.page-blog-nw88-latest-games-analysis__section--dark .page-blog-nw88-latest-games-analysis__sub-title {
    color: var(--text-main-light); /* Ensure light text on dark background */
}

.page-blog-nw88-latest-games-analysis__section--dark strong {
    color: var(--gold-color); /* Gold for highlights on dark background */
}

.page-blog-nw88-latest-games-analysis__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-blog-nw88-latest-games-analysis__list li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Image styling */
.page-blog-nw88-latest-games-analysis__image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.page-blog-nw88-latest-games-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure no extra space below image */
}

.page-blog-nw88-latest-games-analysis__image--full-width {
    width: 100%;
    margin: 30px auto;
}