/* style/game-reviews-card-games-comprehensive-intro.css */
.page-game-reviews-card-games-comprehensive-intro {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0A2239; /* Primary dark background */
}

.page-game-reviews-card-games-comprehensive-intro__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0A2239 0%, #1A3E5D 100%); /* Dark blue gradient */
    border-bottom: 5px solid #E0B44B;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-card-games-comprehensive-intro__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-reviews-card-games-comprehensive-intro__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-game-reviews-card-games-comprehensive-intro__hero-title {
    font-size: 3.5em;
    color: #E0B44B; /* Auxiliary gold for titles */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-game-reviews-card-games-comprehensive-intro__hero-description {
    font-size: 1.3em;
    color: #D3D3D3;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews-card-games-comprehensive-intro__cta-button {
    display: inline-block;
    background-color: #E0B44B; /* Auxiliary gold for buttons */
    color: #0A2239; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-card-games-comprehensive-intro__cta-button:hover {
    background-color: #FFD700; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-game-reviews-card-games-comprehensive-intro__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-reviews-card-games-comprehensive-intro__cta-button--center {
    display: block;
    margin: 40px auto;
    width: fit-content;
}

.page-game-reviews-card-games-comprehensive-intro__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-reviews-card-games-comprehensive-intro__hero-image {
    margin-top: 40px;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.page-game-reviews-card-games-comprehensive-intro__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-card-games-comprehensive-intro__image--full-width {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-game-reviews-card-games-comprehensive-intro__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.page-game-reviews-card-games-comprehensive-intro__section:nth-child(even) {
    background-color: #1A3E5D; /* Slightly lighter dark blue for alternating sections */
}

.page-game-reviews-card-games-comprehensive-intro__section-title {
    font-size: 2.8em;
    color: #E0B44B; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-reviews-card-games-comprehensive-intro__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D3D3D3;
    text-align: justify;
}

.page-game-reviews-card-games-comprehensive-intro__text-center {
    text-align: center;
}

.page-game-reviews-card-games-comprehensive-intro__inline-link {
    color: #E0B44B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-reviews-card-games-comprehensive-intro__inline-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

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

.page-game-reviews-card-games-comprehensive-intro__game-card {
    background-color: #1A3E5D; /* Dark blue for card backgrounds */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-reviews-card-games-comprehensive-intro__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-game-reviews-card-games-comprehensive-intro__game-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #E0B44B;
}

.page-game-reviews-card-games-comprehensive-intro__game-card-title {
    font-size: 1.8em;
    color: #E0B44B;
    margin-bottom: 15px;
}

.page-game-reviews-card-games-comprehensive-intro__game-card-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-game-reviews-card-games-comprehensive-intro__game-card-button {
    background-color: #E0B44B;
    color: #0A2239;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: fit-content;
    margin-top: auto;
}

.page-game-reviews-card-games-comprehensive-intro__game-card-button:hover {
    background-color: #FFD700;
}

.page-game-reviews-card-games-comprehensive-intro__highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-card-games-comprehensive-intro__highlight-item {
    background-color: #1A3E5D;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-game-reviews-card-games-comprehensive-intro__highlight-item:hover {
    background-color: #2D5273;
}

.page-game-reviews-card-games-comprehensive-intro__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E0B44B);
}

.page-game-reviews-card-games-comprehensive-intro__icon--large {
    width: 80px;
    height: 80px;
}

.page-game-reviews-card-games-comprehensive-intro__highlight-title {
    font-size: 1.5em;
    color: #E0B44B;
    margin-bottom: 15px;
}

.page-game-reviews-card-games-comprehensive-intro__highlight-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-game-reviews-card-games-comprehensive-intro__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-reviews-card-games-comprehensive-intro__guide-list li {
    background-color: #1A3E5D;
    border-left: 5px solid #E0B44B;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-card-games-comprehensive-intro__guide-step-title {
    font-size: 1.6em;
    color: #E0B44B;
    margin-bottom: 10px;
}

.page-game-reviews-card-games-comprehensive-intro__guide-list li p {
    color: #D3D3D3;
    font-size: 1.05em;
}

.page-game-reviews-card-games-comprehensive-intro__promotion-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-game-reviews-card-games-comprehensive-intro__promotion-list li {
    background-color: #1A3E5D;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-game-reviews-card-games-comprehensive-intro__promotion-list li:hover {
    transform: translateY(-5px);
}

.page-game-reviews-card-games-comprehensive-intro__promotion-list h3 {
    font-size: 1.6em;
    color: #E0B44B;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-game-reviews-card-games-comprehensive-intro__promotion-list p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-game-reviews-card-games-comprehensive-intro__responsibility-list {
    list-style: disc;
    color: #D3D3D3;
    font-size: 1.1em;
    margin-left: 25px;
    margin-top: 20px;
}

.page-game-reviews-card-games-comprehensive-intro__responsibility-list li {
    margin-bottom: 10px;
}

.page-game-reviews-card-games-comprehensive-intro__conclusion .page-game-reviews-card-games-comprehensive-intro__text-content {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #E0B44B;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-reviews-card-games-comprehensive-intro__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews-card-games-comprehensive-intro__hero-description {
        font-size: 1.1em;
    }
    .page-game-reviews-card-games-comprehensive-intro__section-title {
        font-size: 2.2em;
    }
    .page-game-reviews-card-games-comprehensive-intro__game-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-card-games-comprehensive-intro__hero {
        padding: 40px 15px;
    }
    .page-game-reviews-card-games-comprehensive-intro__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews-card-games-comprehensive-intro__hero-description {
        font-size: 1em;
    }
    .page-game-reviews-card-games-comprehensive-intro__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-card-games-comprehensive-intro__section {
        padding: 40px 15px;
    }
    .page-game-reviews-card-games-comprehensive-intro__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-card-games-comprehensive-intro__game-grid,
    .page-game-reviews-card-games-comprehensive-intro__highlight-grid,
    .page-game-reviews-card-games-comprehensive-intro__promotion-list {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-card-games-comprehensive-intro__game-card img {
        height: 150px;
    }
    .page-game-reviews-card-games-comprehensive-intro__game-card-title {
        font-size: 1.5em;
    }
    .page-game-reviews-card-games-comprehensive-intro__highlight-title {
        font-size: 1.3em;
    }
    .page-game-reviews-card-games-comprehensive-intro__guide-step-title {
        font-size: 1.4em;
    }
    .page-game-reviews-card-games-comprehensive-intro__icon {
        width: 50px;
        height: 50px;
    }
    .page-game-reviews-card-games-comprehensive-intro__icon--large {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-card-games-comprehensive-intro__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-card-games-comprehensive-intro__hero-description {
        font-size: 0.9em;
    }
    .page-game-reviews-card-games-comprehensive-intro__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-card-games-comprehensive-intro__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}