:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-new-hot-game-reviews {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background-color); /* Matches body background */
    line-height: 1.6;
}

.page-blog-new-hot-game-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-new-hot-game-reviews__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-blog-new-hot-game-reviews__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-new-hot-game-reviews__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-new-hot-game-reviews__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-top: -100px; /* Adjust to slightly overlap the image for visual flow, without covering text */
    background: linear-gradient(0deg, var(--background-color) 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%);
    width: 100%;
    box-sizing: border-box;
}

.page-blog-new-hot-game-reviews__main-title {
    color: var(--gold-color);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-new-hot-game-reviews__intro-text {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Section Titles */
.page-blog-new-hot-game-reviews__section-title {
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

/* Text Blocks */
.page-blog-new-hot-game-reviews__text-block {
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 1.05em;
}

/* Buttons */
.page-blog-new-hot-game-reviews__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-blog-new-hot-game-reviews__btn-primary,
.page-blog-new-hot-game-reviews__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
}

.page-blog-new-hot-game-reviews__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-new-hot-game-reviews__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-new-hot-game-reviews__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-new-hot-game-reviews__btn-secondary:hover {
    background-color: rgba(17, 168, 78, 0.1);
    color: var(--text-main);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-blog-new-hot-game-reviews__large-btn {
    padding: 16px 40px;
    font-size: 1.1em;
}

/* Cards */
.page-blog-new-hot-game-reviews__game-grid,
.page-blog-new-hot-game-reviews__guide-grid,
.page-blog-new-hot-game-reviews__feature-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-blog-new-hot-game-reviews__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-new-hot-game-reviews__guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.page-blog-new-hot-game-reviews__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-blog-new-hot-game-reviews__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-main);
}

.page-blog-new-hot-game-reviews__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-new-hot-game-reviews__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-new-hot-game-reviews__game-card,
.page-blog-new-hot-game-reviews__guide-card,
.page-blog-new-hot-game-reviews__feature-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.page-blog-new-hot-game-reviews__card-title {
    color: var(--gold-color);
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-blog-new-hot-game-reviews__card-text {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-blog-new-hot-game-reviews__faq-section {
    padding: 60px 0;
}

.page-blog-new-hot-game-reviews__faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-blog-new-hot-game-reviews__faq-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--text-main);
}

.page-blog-new-hot-game-reviews__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

.page-blog-new-hot-game-reviews__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-new-hot-game-reviews__faq-item summary:hover {
    background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-new-hot-game-reviews__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-blog-new-hot-game-reviews__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-blog-new-hot-game-reviews__faq-item[open] .page-blog-new-hot-game-reviews__faq-toggle {
    color: var(--gold-color);
}

.page-blog-new-hot-game-reviews__faq-answer {
    padding: 0 25px 20px;
    font-size: 0.95em;
    line-height: 1.7;
    color: var(--text-secondary);
    border-top: 1px solid var(--divider-color);
    margin-top: -1px;
}

.page-blog-new-hot-game-reviews__faq-answer p {
    margin: 0;
}

/* Conclusion Section */
.page-blog-new-hot-game-reviews__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-new-hot-game-reviews__conclusion-section .page-blog-new-hot-game-reviews__text-block {
    font-size: 1.1em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* General Section Padding */
.page-blog-new-hot-game-reviews__section {
    padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-new-hot-game-reviews__main-title {
        font-size: 2.5em;
    }
    .page-blog-new-hot-game-reviews__section-title {
        font-size: 2em;
    }
    .page-blog-new-hot-game-reviews__hero-content {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .page-blog-new-hot-game-reviews__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-new-hot-game-reviews__hero-content {
        margin-top: -60px;
        padding: 15px;
    }
    .page-blog-new-hot-game-reviews__main-title {
        font-size: 2em;
    }
    .page-blog-new-hot-game-reviews__intro-text {
        font-size: 1em;
    }
    .page-blog-new-hot-game-reviews__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-new-hot-game-reviews__text-block {
        font-size: 0.95em;
    }
    .page-blog-new-hot-game-reviews__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-new-hot-game-reviews__btn-primary,
    .page-blog-new-hot-game-reviews__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    .page-blog-new-hot-game-reviews__large-btn {
        padding: 14px 30px;
        font-size: 1.05em;
    }

    /* Mobile Image Responsiveness */
    .page-blog-new-hot-game-reviews img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-new-hot-game-reviews__hero-image-wrapper,
    .page-blog-new-hot-game-reviews__game-card,
    .page-blog-new-hot-game-reviews__guide-card,
    .page-blog-new-hot-game-reviews__feature-card,
    .page-blog-new-hot-game-reviews__card,
    .page-blog-new-hot-game-reviews__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-new-hot-game-reviews__card-image {
        height: 200px; /* Adjust height for smaller screens */
    }
    .page-blog-new-hot-game-reviews__game-grid,
    .page-blog-new-hot-game-reviews__guide-grid,
    .page-blog-new-hot-game-reviews__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-new-hot-game-reviews__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-blog-new-hot-game-reviews__faq-answer {
        padding: 0 20px 15px;
    }
    .page-blog-new-hot-game-reviews__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-blog-new-hot-game-reviews__main-title {
        font-size: 1.8em;
    }
    .page-blog-new-hot-game-reviews__section-title {
        font-size: 1.6em;
    }
    .page-blog-new-hot-game-reviews__hero-content {
        margin-top: -40px;
    }
}