.page-blog-game-reviews {
    color: #333333; /* Dark text for light background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-blog-game-reviews__hero-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 0;
    background-color: #000000; /* Dark background for hero text contrast */
}

.page-blog-game-reviews__hero-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.page-blog-game-reviews__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6;
}

.page-blog-game-reviews__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-game-reviews__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight with login button color */
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-game-reviews__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-blog-game-reviews__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-blog-game-reviews__hero-button:hover {
    background-color: #e0a53a;
}

.page-blog-game-reviews__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-blog-game-reviews__introduction-section,
.page-blog-game-reviews__featured-reviews-section,
.page-blog-game-reviews__review-criteria-section,
.page-blog-game-reviews__tips-section,
.page-blog-game-reviews__cta-section,
.page-blog-game-reviews__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-blog-game-reviews__introduction-section {
    background-color: #f5f5f5;
}

.page-blog-game-reviews__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-game-reviews__section-subtitle {
    font-size: 1.2em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-game-reviews__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-game-reviews__review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-game-reviews__review-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-game-reviews__review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-game-reviews__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-blog-game-reviews__card-content {
    padding: 25px;
}

.page-blog-game-reviews__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-blog-game-reviews__card-title .page-blog-game-reviews__card-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-game-reviews__card-title .page-blog-game-reviews__card-link:hover {
    color: #FCBC45;
}

.page-blog-game-reviews__card-excerpt {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-blog-game-reviews__card-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-blog-game-reviews__card-button:hover {
    background-color: #333333;
}

.page-blog-game-reviews__review-criteria-section {
    background-color: #f5f5f5;
}

.page-blog-game-reviews__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-game-reviews__criteria-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-blog-game-reviews__criteria-heading {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-game-reviews__criteria-description {
    font-size: 1em;
    color: #666666;
}

.page-blog-game-reviews__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-game-reviews__tips-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-game-reviews__tips-item strong {
    color: #000000;
}

.page-blog-game-reviews__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-blog-game-reviews__cta-section .page-blog-game-reviews__section-title {
    color: #FFFFFF;
}

.page-blog-game-reviews__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-game-reviews__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-game-reviews__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-blog-game-reviews__cta-button--register:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.page-blog-game-reviews__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-blog-game-reviews__cta-button--login:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(252, 188, 69, 0.4);
}

.page-blog-game-reviews__faq-section {
    background-color: #f9f9f9;
}

.page-blog-game-reviews__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-game-reviews__faq-question {
    font-size: 1.2em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-game-reviews__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-blog-game-reviews__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-game-reviews__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-game-reviews__hero-title {
        font-size: 3em;
    }
    .page-blog-game-reviews__hero-description {
        font-size: 1.2em;
    }
    .page-blog-game-reviews__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-blog-game-reviews__hero-title {
        font-size: 2.2em;
    }
    .page-blog-game-reviews__hero-description {
        font-size: 1em;
    }
    .page-blog-game-reviews__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-blog-game-reviews__content-wrapper {
        padding: 30px 15px;
    }
    .page-blog-game-reviews__review-grid,
    .page-blog-game-reviews__criteria-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-game-reviews__card-image {
        height: 200px;
    }
    .page-blog-game-reviews__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-game-reviews__cta-button {
        width: 100%;
        max-width: 300px;
    }
    .page-blog-game-reviews__hero-image,
    .page-blog-game-reviews__card-image,
    .page-blog-game-reviews__content-wrapper img,
    .page-blog-game-reviews__criteria-item img,
    .page-blog-game-reviews__faq-item img {
        max-width: 100%;
        height: auto;
    }
    .page-blog-game-reviews__hero-content {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-blog-game-reviews__hero-title {
        font-size: 1.8em;
    }
    .page-blog-game-reviews__hero-description {
        font-size: 0.9em;
    }
    .page-blog-game-reviews__section-title {
        font-size: 1.8em;
    }
    .page-blog-game-reviews__card-title {
        font-size: 1.3em;
    }
    .page-blog-game-reviews__cta-button {
        font-size: 1.1em;
        padding: 15px 25px;
    }
}