/* style/game-reviews-game-provider-overview.css */
.page-game-reviews-game-provider-overview {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-game-reviews-game-provider-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-game-provider-overview .hero-section {
    background: linear-gradient(135deg, #0056b3, #003a75);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-game-provider-overview .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-game-reviews-game-provider-overview .hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffd700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-game-provider-overview .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.8;
}

.page-game-reviews-game-provider-overview .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-game-provider-overview .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-game-reviews-game-provider-overview .btn-primary {
    background-color: #ffd700; /* Gold */
    color: #003a75; /* Darker Blue */
    border: 2px solid #ffd700;
}

.page-game-reviews-game-provider-overview .btn-primary:hover {
    background-color: #ffc107;
    transform: translateY(-3px);
}

.page-game-reviews-game-provider-overview .btn-secondary {
    background-color: #0056b3; /* Primary Blue */
    color: #ffffff;
    border: 2px solid #0056b3;
}

.page-game-reviews-game-provider-overview .btn-secondary:hover {
    background-color: #003a75; /* Darker Blue */
    transform: translateY(-3px);
}

.page-game-reviews-game-provider-overview .providers-intro-section, 
.page-game-reviews-game-provider-overview .why-8xbet-providers-section, 
.page-game-reviews-game-provider-overview .benefits-section, 
.page-game-reviews-game-provider-overview .cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-game-reviews-game-provider-overview .game-categories-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-game-reviews-game-provider-overview h2 {
    font-size: 2.2em;
    color: #0056b3; /* Primary Blue */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-reviews-game-provider-overview h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffd700; /* Gold */
    border-radius: 2px;
}