/* style/game-reviews.css */
.page-game-reviews {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

.page-game-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #1a304a 100%);
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-game-reviews__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-game-reviews__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-game-reviews__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f5e6d0;
}

.page-game-reviews__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-game-reviews__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.page-game-reviews__section {
    padding: 60px 0;
    text-align: left;
}

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

.page-game-reviews__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-game-reviews__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-game-reviews__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-game-reviews__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-reviews__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-reviews__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-game-reviews__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-game-reviews__game-categories {
    background-color: #0f223a;
}

.page-game-reviews__category-card {
    background-color: #1a304a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.page-game-reviews__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-game-reviews__category-card:hover .page-game-reviews__card-img {
    transform: scale(1.05);
}

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

.page-game-reviews__card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-reviews__card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-reviews__card-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-game-reviews__card-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.page-game-reviews__cta-banner {
    background: linear-gradient(90deg, #0A192F, #3a506b);
    padding: 80px 20px;
    text-align: center;
    color: #f5e6d0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-game-reviews__cta-content {
    max-width: 600px;
}

.page-game-reviews__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-reviews__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-game-reviews__cta-image {
    max-width: 400px;
    flex-shrink: 0;
}

.page-game-reviews__cta-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.page-game-reviews__guide-list,
.page-game-reviews__promo-list,
.page-game-reviews__security-list,
.page-game-reviews__advantages-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-reviews__guide-list li,
.page-game-reviews__promo-list li,
.page-game-reviews__security-list li,
.page-game-reviews__advantages-list li {
    background-color: #1a304a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews__guide-list li strong,
.page-game-reviews__promo-list li strong,
.page-game-reviews__security-list li strong,
.page-game-reviews__advantages-list li strong {
    color: #FFD700;
}

.page-game-reviews__conclusion .page-game-reviews__btn--cta-final {
    margin-top: 30px;
    padding: 18px 35px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-game-reviews__game-categories .page-game-reviews__category-card {
        flex-direction: row;
    }
    .page-game-reviews__card-image {
        width: 40%;
        height: auto;
        min-height: 250px;
    }
    .page-game-reviews__card-content {
        flex: 1;
    }
    .page-game-reviews__cta-banner {
        text-align: left;
        flex-direction: row;
    }
    .page-game-reviews__cta-content {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .page-game-reviews__hero {
        padding: 60px 15px;
    }
    .page-game-reviews__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews__hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews__section-title {
        font-size: 2em;
    }
    .page-game-reviews__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews__cta-banner {
        flex-direction: column;
        padding: 50px 15px;
        gap: 20px;
    }
    .page-game-reviews__cta-title {
        font-size: 2.2em;
    }
    .page-game-reviews__cta-text {
        font-size: 1em;
    }
    .page-game-reviews__cta-image {
        max-width: 300px;
    }
    .page-game-reviews__card-content {
        padding: 20px;
    }
    .page-game-reviews__card-title {
        font-size: 1.5em;
    }
    .page-game-reviews__card-description {
        font-size: 0.95em;
    }
}