/* style/game-reviews-slot-games.css */

.page-game-reviews-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

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

/* Hero Section */
.page-game-reviews-slot-games__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #3a5c88 100%); /* Dark blue to slightly lighter blue */
    color: #f4f7f6; /* Light text for dark background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-game-reviews-slot-games__hero-section > div {
    position: relative;
    z-index: 1;
}

.page-game-reviews-slot-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-game-reviews-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* General Section Styling */
.page-game-reviews-slot-games__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-game-reviews-slot-games__section:nth-of-type(odd) {
    background-color: #fbfcfc;
}

.page-game-reviews-slot-games__section-title {
    font-size: 2.5em;
    color: #0A2342; /* Deep blue for titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-reviews-slot-games__sub-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-game-reviews-slot-games__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px auto;
    color: #555;
}

/* Grid Layouts */
.page-game-reviews-slot-games__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-game-reviews-slot-games__grid-2-cols--reversed {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
    .page-game-reviews-slot-games__grid-2-cols,
    .page-game-reviews-slot-games__grid-2-cols--reversed {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-slot-games__grid-2-cols--reversed .page-game-reviews-slot-games__image-wrapper {
        order: -1;
    }
}

.page-game-reviews-slot-games__image-wrapper {
    text-align: center;
}

.page-game-reviews-slot-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.page-game-reviews-slot-games__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;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-game-reviews-slot-games__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Deep blue text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-slot-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-slot-games__btn--secondary {
    background-color: #0A2342; /* Deep blue button */
    color: #f4f7f6; /* Light text */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(10, 35, 66, 0.3);
}

.page-game-reviews-slot-games__btn--secondary:hover {
    background-color: #1a3c6b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 35, 66, 0.5);
}

.page-game-reviews-slot-games__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

/* Lists */
.page-game-reviews-slot-games__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-game-reviews-slot-games__list li {
    margin-bottom: 10px;
}

.page-game-reviews-slot-games__list--numbered {
    list-style: decimal;
}

/* Review Cards */
.page-game-reviews-slot-games__review-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-slot-games__review-header {
    background-color: #0A2342;
    color: #FFD700;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-reviews-slot-games__review-title {
    font-size: 1.8em;
    margin: 0;
    color: #FFD700;
}

.page-game-reviews-slot-games__rating {
    font-size: 1.4em;
    color: #FFD700;
}

.page-game-reviews-slot-games__review-content {
    padding: 25px;
    color: #333;
}

.page-game-reviews-slot-games__review-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-slot-games__review-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-game-reviews-slot-games__review-content strong {
    color: #0A2342;
}

/* FAQ Section */
.page-game-reviews-slot-games__faq-item {
    background-color: #f0f3f5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-slot-games__faq-question {
    padding: 18px 25px;
    background-color: #0A2342;
    color: #FFD700;
    font-size: 1.3em;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-game-reviews-slot-games__faq-question:hover {
    background-color: #1a3c6b;
}

.page-game-reviews-slot-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-game-reviews-slot-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-reviews-slot-games__faq-answer {
    padding: 0 25px;
    background-color: #ffffff;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-reviews-slot-games__faq-answer p {
    margin: 15px 0;
}

.page-game-reviews-slot-games__faq-answer.active {
    max-height: 500px; /* Adjust as needed for content height */
    padding: 15px 25px;
}

/* Final CTA Section */
.page-game-reviews-slot-games__cta-final {
    background: #0A2342;
    color: #f4f7f6;
    padding: 80px 0;
    text-align: center;
}

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

.page-game-reviews-slot-games__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-game-reviews-slot-games__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews-slot-games__hero-description {
        font-size: 1.1em;
    }
    .page-game-reviews-slot-games__section-title {
        font-size: 2em;
    }
    .page-game-reviews-slot-games__sub-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slot-games__review-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slot-games__rating {
        font-size: 1.2em;
    }
    .page-game-reviews-slot-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-slot-games__cta-title {
        font-size: 2.2em;
    }
    .page-game-reviews-slot-games__cta-description {
        font-size: 1em;
    }
    .page-game-reviews-slot-games__section,
    .page-game-reviews-slot-games__hero-section,
    .page-game-reviews-slot-games__cta-final {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slot-games__hero-title {
        font-size: 2em;
    }
    .page-game-reviews-slot-games__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slot-games__sub-title {
        font-size: 1.3em;
    }
    .page-game-reviews-slot-games__review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-game-reviews-slot-games__rating {
        margin-top: 5px;
    }
    .page-game-reviews-slot-games__btn--center {
        max-width: 100%;
    }
    .page-game-reviews-slot-games__faq-question {
        font-size: 1.1em;
    }
    .page-game-reviews-slot-games__faq-answer {
        padding: 0 15px;
    }
    .page-game-reviews-slot-games__faq-answer.active {
        padding: 15px 15px;
    }
}