/* style/game-reviews-card-games.css */

/* Base styles for the page content container */
.page-game-reviews-card-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* White text on dark background for readability */
    background-color: #0A2342; /* Main dark blue background */
}

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

/* Hero Section */
.page-game-reviews-card-games__hero {
    background: linear-gradient(135deg, #0A2342, #1a3d6d); /* Gradient for depth */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-card-games__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-card-games__subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews-card-games__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.page-game-reviews-card-games__hero-image:hover {
    transform: scale(1.02);
}

/* General Section Styling */
.page-game-reviews-card-games__section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-game-reviews-card-games__section:nth-of-type(even) {
    background-color: #1a3d6d; /* Slightly lighter dark blue for alternating sections */
}

.page-game-reviews-card-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-reviews-card-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-reviews-card-games__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-game-reviews-card-games__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-game-reviews-card-games__list li {
    margin-bottom: 10px;
}

.page-game-reviews-card-games__list-highlight {
    color: #FFD700;
}

.page-game-reviews-card-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 30px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-game-reviews-card-games__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
    border: none;
    text-align: center;
}

.page-game-reviews-card-games__button--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A2342; /* Dark blue text */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-card-games__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-card-games__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-game-reviews-card-games__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Game Card Styles */
.page-game-reviews-card-games__game-card {
    background-color: #1a3d6d;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-reviews-card-games__game-card:hover {
    transform: translateY(-5px);
}

.page-game-reviews-card-games__game-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-game-reviews-card-games__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* CTA Block */
.page-game-reviews-card-games__cta-block {
    text-align: center;
    padding: 40px;
    background-color: #0A2342;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-card-games__cta-block:nth-of-type(even) {
    background-color: #1a3d6d;
}

.page-game-reviews-card-games__cta-text {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 20px;
}

/* General Strategy Items */
.page-game-reviews-card-games__general-strategies {
    padding-bottom: 80px;
}

.page-game-reviews-card-games__strategy-item {
    background-color: #1a3d6d;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-game-reviews-card-games__strategy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-game-reviews-card-games__strategy-heading {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

/* Benefits Grid */
.page-game-reviews-card-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-card-games__benefit-item {
    background-color: #1a3d6d;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-reviews-card-games__benefit-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-card-games__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-game-reviews-card-games__benefit-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-game-reviews-card-games__faq {
    background-color: #1a3d6d;
}

.page-game-reviews-card-games__faq-item {
    background-color: #0A2342;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-card-games__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-reviews-card-games__faq-answer {
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-game-reviews-card-games__link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-game-reviews-card-games__link:hover {
    color: #e6c200;
}

/* Conclusion Section */
.page-game-reviews-card-games__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews-card-games__title {
        font-size: 2.5em;
    }
    .page-game-reviews-card-games__section-title {
        font-size: 2em;
    }
    .page-game-reviews-card-games__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-card-games__benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-card-games__hero {
        padding: 60px 0;
    }
    .page-game-reviews-card-games__title {
        font-size: 2em;
    }
    .page-game-reviews-card-games__subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews-card-games__section {
        padding: 40px 0;
    }
    .page-game-reviews-card-games__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-card-games__text,
    .page-game-reviews-card-games__list {
        font-size: 1em;
    }
    .page-game-reviews-card-games__game-card,
    .page-game-reviews-card-games__strategy-item,
    .page-game-reviews-card-games__benefit-item,
    .page-game-reviews-card-games__faq-item {
        padding: 20px;
    }
    .page-game-reviews-card-games__game-title {
        font-size: 1.5em;
    }
    .page-game-reviews-card-games__strategy-heading,
    .page-game-reviews-card-games__benefit-heading {
        font-size: 1.3em;
    }
    .page-game-reviews-card-games__faq-question {
        font-size: 1.2em;
    }
    .page-game-reviews-card-games__cta-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-card-games__hero {
        padding: 40px 0;
    }
    .page-game-reviews-card-games__title {
        font-size: 1.8em;
    }
    .page-game-reviews-card-games__subtitle {
        font-size: 0.95em;
    }
    .page-game-reviews-card-games__section {
        padding: 30px 0;
    }
    .page-game-reviews-card-games__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-card-games__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-reviews-card-games__game-title {
        font-size: 1.3em;
    }
    .page-game-reviews-card-games__strategy-heading,
    .page-game-reviews-card-games__benefit-heading {
        font-size: 1.1em;
    }
    .page-game-reviews-card-games__faq-question {
        font-size: 1.1em;
    }
    .page-game-reviews-card-games__cta-text {
        font-size: 1em;
    }
}