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

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

.page-game-reviews-slots-review__hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #3a5c9d 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-game-reviews-slots-review__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #F39C12;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-game-reviews-slots-review__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-reviews-slots-review__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-game-reviews-slots-review__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;
    border: none;
}

.page-game-reviews-slots-review__btn--primary {
    background-color: #F39C12;
    color: #0A246A;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-game-reviews-slots-review__btn--primary:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

.page-game-reviews-slots-review__btn--secondary {
    background-color: transparent;
    color: #F39C12;
    border: 2px solid #F39C12;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.page-game-reviews-slots-review__btn--secondary:hover {
    background-color: #F39C12;
    color: #0A246A;
    transform: translateY(-2px);
}

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

.page-game-reviews-slots-review__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-game-reviews-slots-review__introduction-section,
.page-game-reviews-slots-review__features-section,
.page-game-reviews-slots-review__game-review-section,
.page-game-reviews-slots-review__bonus-section,
.page-game-reviews-slots-review__app-section,
.page-game-reviews-slots-review__faq-section,
.page-game-reviews-slots-review__cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-game-reviews-slots-review__introduction-section {
    background-color: #fcfcfc;
}

.page-game-reviews-slots-review__section-title {
    font-size: 2.5em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-reviews-slots-review__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-reviews-slots-review__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-game-reviews-slots-review__image--full-width {
    width: 100%;
}

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

.page-game-reviews-slots-review__feature-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-game-reviews-slots-review__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.page-game-reviews-slots-review__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.page-game-reviews-slots-review__feature-item h3 {
    font-size: 1.5em;
    color: #0A246A;
    margin-bottom: 15px;
}

.page-game-reviews-slots-review__game-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-game-reviews-slots-review__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.page-game-reviews-slots-review__game-card-image {
    width: 35%;
    height: auto;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.page-game-reviews-slots-review__game-card-content {
    padding: 30px;
    width: 65%;
}

.page-game-reviews-slots-review__game-card-content h3 {
    font-size: 1.8em;
    color: #0A246A;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-reviews-slots-review__game-card-content h3 a {
    color: #0A246A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-reviews-slots-review__game-card-content h3 a:hover {
    color: #F39C12;
}

.page-game-reviews-slots-review__game-card-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-game-reviews-slots-review__game-card-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.page-game-reviews-slots-review__bonus-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-reviews-slots-review__bonus-list li {
    background-color: #e6f7ff; /* Lighter blue for list items */
    border-left: 5px solid #0A246A;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #0A246A;
}

.page-game-reviews-slots-review__app-section {
    text-align: center;
    background-color: #f0f5f8; /* A light, clean background */
}

.page-game-reviews-slots-review__image--app {
    max-width: 400px;
    margin: 40px auto;
    display: block;
    border: 5px solid #0A246A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.page-game-reviews-slots-review__app-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-game-reviews-slots-review__faq-list {
    margin-top: 40px;
}

.page-game-reviews-slots-review__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.page-game-reviews-slots-review__faq-item h3 {
    color: #0A246A;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-reviews-slots-review__cta-section {
    text-align: center;
    background: linear-gradient(90deg, #0A246A 0%, #F39C12 100%);
    color: #ffffff;
    padding: 80px 0;
    border-radius: 10px;
    margin-top: 40px;
}

.page-game-reviews-slots-review__cta-section .page-game-reviews-slots-review__section-title {
    color: #ffffff;
}

.page-game-reviews-slots-review__cta-section .page-game-reviews-slots-review__section-title::after {
    background-color: #ffffff;
}

.page-game-reviews-slots-review__cta-section p {
    font-size: 1.15em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews-slots-review__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews-slots-review__section-title {
        font-size: 2em;
    }
    .page-game-reviews-slots-review__game-card {
        flex-direction: column;
    }
    .page-game-reviews-slots-review__game-card-image,
    .page-game-reviews-slots-review__game-card-content {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .page-game-reviews-slots-review__game-card-content {
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-slots-review__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews-slots-review__hero-description {
        font-size: 1em;
    }
    .page-game-reviews-slots-review__hero-cta-group,
    .page-game-reviews-slots-review__app-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-reviews-slots-review__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-game-reviews-slots-review__introduction-section,
    .page-game-reviews-slots-review__features-section,
    .page-game-reviews-slots-review__game-review-section,
    .page-game-reviews-slots-review__bonus-section,
    .page-game-reviews-slots-review__app-section,
    .page-game-reviews-slots-review__faq-section,
    .page-game-reviews-slots-review__cta-section {
        padding: 40px 0;
    }
    .page-game-reviews-slots-review__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slots-review__feature-item {
        padding: 20px;
    }
    .page-game-reviews-slots-review__game-card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slots-review__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slots-review__btn {
        font-size: 0.9em;
        padding: 12px 20px;
    }
    .page-game-reviews-slots-review__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slots-review__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-game-reviews-slots-review__game-card-content h3 {
        font-size: 1.4em;
    }
    .page-game-reviews-slots-review__bonus-list li {
        font-size: 1em;
        padding: 12px 15px;
    }
}