/* style/game-reviews-providers-intro.css */
.page-game-reviews-providers-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background, contrast with #1A2E47 is 11.5:1 */
    background-color: #1A2E47; /* Dark blue background */
}

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

.page-game-reviews-providers-intro__hero {
    background: linear-gradient(135deg, #1A2E47 0%, #3a5070 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-game-reviews-providers-intro__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.page-game-reviews-providers-intro__hero h1 {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title, contrast with #1A2E47 is 9.7:1 */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-providers-intro__hero p {
    font-size: 1.2em;
    color: #e0e0e0; /* Light gray, contrast with #1A2E47 is 9.4:1 */
    margin-bottom: 30px;
}

.page-game-reviews-providers-intro__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-game-reviews-providers-intro__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-game-reviews-providers-intro__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-reviews-providers-intro__section--alt-bg {
    background-color: #2a405a; /* Slightly lighter dark blue, contrast with #f0f0f0 is 8.5:1 */
}

.page-game-reviews-providers-intro__section h2 {
    font-size: 2.8em;
    color: #FFD700; /* Gold, contrast with #1A2E47 is 9.7:1, with #2a405a is 7.4:1 */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-reviews-providers-intro__section h3 {
    font-size: 2.2em;
    color: #FFD700; /* Gold, contrast with #1A2E47 is 9.7:1, with #2a405a is 7.4:1 */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-game-reviews-providers-intro__section p {
    font-size: 1.1em;
    color: #e0e0e0; /* Light gray, contrast with #1A2E47 is 9.4:1, with #2a405a is 7.3:1 */
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-reviews-providers-intro__grid-item {
    background-color: #1A2E47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD70033;
}

.page-game-reviews-providers-intro__grid-item h3 {
    font-size: 1.5em;
    color: #FFD700; /* Gold, contrast with #1A2E47 is 9.7:1 */
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-game-reviews-providers-intro__grid-item p {
    font-size: 1em;
    color: #c0c0c0; /* Lighter gray, contrast with #1A2E47 is 7.6:1 */
}

.page-game-reviews-providers-intro__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px #FFD70088);
}

.page-game-reviews-providers-intro__provider-category {
    margin-top: 60px;
    text-align: left;
}

.page-game-reviews-providers-intro__provider-category h3 {
    text-align: center;
    color: #FFD700; /* Gold, contrast with #2a405a is 7.4:1 */
    font-size: 2.5em;
    margin-bottom: 30px;
}

.page-game-reviews-providers-intro__provider-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-game-reviews-providers-intro__provider-content--reverse {
    flex-direction: row-reverse;
}

.page-game-reviews-providers-intro__provider-text {
    flex: 1;
    min-width: 300px;
}

.page-game-reviews-providers-intro__provider-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-game-reviews-providers-intro__provider-text ul li {
    background-color: #1A2E47; /* Dark blue, contrast with #e0e0e0 is 9.4:1 */
    border-left: 4px solid #FFD700;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #e0e0e0;
}

.page-game-reviews-providers-intro__provider-text ul li strong {
    color: #FFD700; /* Gold, contrast with #1A2E47 is 9.7:1 */
}

.page-game-reviews-providers-intro__provider-image {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-game-reviews-providers-intro__cta-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-providers-intro__cta-section h2 {
    font-size: 3em;
    color: #FFD700; /* Gold, contrast with #2a405a is 7.4:1 */
    margin-bottom: 20px;
}

.page-game-reviews-providers-intro__cta-section p {
    font-size: 1.2em;
    color: #e0e0e0; /* Light gray, contrast with #2a405a is 7.3:1 */
    margin-bottom: 40px;
}

.page-game-reviews-providers-intro__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}

.page-game-reviews-providers-intro__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-reviews-providers-intro__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-game-reviews-providers-intro__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A2E47; /* Dark blue text, contrast is 9.7:1 */
    border: 2px solid #FFD700;
}

.page-game-reviews-providers-intro__btn--primary:hover {
    background-color: #e0b800;
    border-color: #e0b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-providers-intro__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text, contrast with #1A2E47 is 9.7:1, with #2a405a is 7.4:1 */
    border: 2px solid #FFD700;
}

.page-game-reviews-providers-intro__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47; /* Dark blue text, contrast is 9.7:1 */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-reviews-providers-intro__hero h1 {
        font-size: 2.8em;
    }
    .page-game-reviews-providers-intro__section h2 {
        font-size: 2.2em;
    }
    .page-game-reviews-providers-intro__section h3 {
        font-size: 1.8em;
    }
    .page-game-reviews-providers-intro__provider-content {
        flex-direction: column;
        text-align: center;
    }
    .page-game-reviews-providers-intro__provider-content--reverse {
        flex-direction: column;
    }
    .page-game-reviews-providers-intro__provider-text {
        min-width: unset;
        width: 100%;
    }
    .page-game-reviews-providers-intro__provider-image {
        min-width: unset;
        width: 100%;
        max-width: 600px;
    }
    .page-game-reviews-providers-intro__provider-text ul {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-providers-intro__hero {
        padding: 80px 20px;
    }
    .page-game-reviews-providers-intro__hero h1 {
        font-size: 2.2em;
    }
    .page-game-reviews-providers-intro__hero p {
        font-size: 1em;
    }
    .page-game-reviews-providers-intro__section {
        padding: 40px 0;
    }
    .page-game-reviews-providers-intro__section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-reviews-providers-intro__section h3 {
        font-size: 1.6em;
    }
    .page-game-reviews-providers-intro__grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-providers-intro__cta-section h2 {
        font-size: 2.5em;
    }
    .page-game-reviews-providers-intro__cta-section p {
        font-size: 1em;
    }
    .page-game-reviews-providers-intro__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-providers-intro__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-providers-intro__hero h1 {
        font-size: 1.8em;
    }
    .page-game-reviews-providers-intro__section h2 {
        font-size: 1.5em;
    }
    .page-game-reviews-providers-intro__section h3 {
        font-size: 1.4em;
    }
    .page-game-reviews-providers-intro__grid-item h3 {
        font-size: 1.3em;
    }
}