/* style/game-reviews-slots-review.css */
.page-game-reviews-slots-review {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Primary dark background */
    line-height: 1.6;
}

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

.page-game-reviews-slots-review__hero {
    background: linear-gradient(135deg, #0A192F, #301934); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-game-reviews-slots-review__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,casino_pattern]') 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;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

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

.page-game-reviews-slots-review__section {
    padding: 80px 0;
    background-color: #0A192F;
    color: #f5e6d0;
}

.page-game-reviews-slots-review__section--dark {
    background-color: #1a2a44;
}

.page-game-reviews-slots-review__section--promo {
    background: linear-gradient(90deg, #0A192F, #301934);
    padding: 60px 0;
}

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

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

.page-game-reviews-slots-review__text-center {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #cccccc;
}

.page-game-reviews-slots-review__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-game-reviews-slots-review__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.page-game-reviews-slots-review__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-game-reviews-slots-review__btn--primary:hover {
    background-color: #e6c200;
}

.page-game-reviews-slots-review__btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-reviews-slots-review__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

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

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

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

.page-game-reviews-slots-review__grid-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-game-reviews-slots-review__grid-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-slots-review__grid-text {
    font-size: 1em;
    color: #cccccc;
}

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

.page-game-reviews-slots-review__card {
    background-color: #0A192F;
    border: 1px solid #FFD700;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-game-reviews-slots-review__card:hover {
    transform: translateY(-8px);
}

.page-game-reviews-slots-review__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #FFD700;
}

.page-game-reviews-slots-review__card-title {
    font-size: 1.5em;
    color: #FFD700;
    padding: 20px 20px 10px;
}

.page-game-reviews-slots-review__card-text {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 20px 20px;
}

.page-game-reviews-slots-review__list-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-reviews-slots-review__list-steps li {
    background-color: #1a2a44;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slots-review__list-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-reviews-slots-review__list-steps p {
    color: #cccccc;
    margin-bottom: 15px;
}

.page-game-reviews-slots-review__promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.page-game-reviews-slots-review__promo-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slots-review__promo-text-wrapper {
    max-width: 700px;
}

.page-game-reviews-slots-review__promo-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-game-reviews-slots-review__promo-description {
    font-size: 1.2em;
    color: #f5e6d0;
    margin-bottom: 30px;
}

.page-game-reviews-slots-review__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-slots-review__tips-list li {
    background-color: #1a2a44;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-reviews-slots-review__tips-list li:hover {
    transform: translateY(-5px);
}

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

.page-game-reviews-slots-review__info-item {
    background-color: #0A192F;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slots-review__info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-game-reviews-slots-review__info-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-slots-review__info-text {
    font-size: 1em;
    color: #cccccc;
}

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

.page-game-reviews-slots-review__faq-item {
    background-color: #1a2a44;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slots-review__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-reviews-slots-review__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-reviews-slots-review__faq-item.active .page-game-reviews-slots-review__faq-question::after {
    transform: rotate(45deg);
}

.page-game-reviews-slots-review__faq-answer {
    padding: 0 25px 20px;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-reviews-slots-review__faq-item.active .page-game-reviews-slots-review__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 0 25px 25px;
}

.page-game-reviews-slots-review__cta-section {
    background: linear-gradient(45deg, #FFD700, #e6c200); /* Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #0A192F;
}

.page-game-reviews-slots-review__cta-title {
    font-size: 3em;
    color: #0A192F;
    margin-bottom: 20px;
}

.page-game-reviews-slots-review__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #333333;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-slots-review__hero-title {
        font-size: 2.8em;
    }
    .page-game-reviews-slots-review__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-reviews-slots-review__section-title {
        font-size: 2em;
    }
    .page-game-reviews-slots-review__promo-content {
        flex-direction: column;
    }
    .page-game-reviews-slots-review__promo-title {
        font-size: 2.2em;
    }
    .page-game-reviews-slots-review__promo-description {
        font-size: 1em;
    }
    .page-game-reviews-slots-review__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-slots-review__hero {
        padding: 80px 0;
    }
    .page-game-reviews-slots-review__hero-title {
        font-size: 2.2em;
    }
    .page-game-reviews-slots-review__hero-subtitle {
        font-size: 1em;
    }
    .page-game-reviews-slots-review__section {
        padding: 60px 0;
    }
    .page-game-reviews-slots-review__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slots-review__grid, .page-game-reviews-slots-review__card-grid, .page-game-reviews-slots-review__tips-list, .page-game-reviews-slots-review__info-grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-slots-review__promo-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slots-review__promo-description {
        font-size: 1em;
    }
    .page-game-reviews-slots-review__cta-title {
        font-size: 2em;
    }
    .page-game-reviews-slots-review__cta-text {
        font-size: 1.1em;
    }
    .page-game-reviews-slots-review__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slots-review__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slots-review__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slots-review__promo-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slots-review__cta-title {
        font-size: 1.8em;
    }
}