/* style/game-reviews-slot-games-review.css */
.page-game-reviews-slot-games-review {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A1A1A; /* Dark background */
    line-height: 1.6;
}

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

.page-game-reviews-slot-games-review__hero {
    background: linear-gradient(135deg, #B80000, #800000); /* Darker red for gradient start */
    color: #FFD700; /* Gold for hero text */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-game-reviews-slot-games-review__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-game-reviews-slot-games-review__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    overflow: hidden;
}

.page-game-reviews-slot-games-review__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.05);
}

.page-game-reviews-slot-games-review__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-game-reviews-slot-games-review__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #FFEB3B; /* Slightly lighter gold */
}

.page-game-reviews-slot-games-review__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #B80000; /* Deep Red text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.page-game-reviews-slot-games-review__cta-button:hover {
    background-color: #B80000; /* Deep Red on hover */
    color: #FFD700; /* Gold text on hover */
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-slot-games-review__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-game-reviews-slot-games-review__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #B80000;
}

.page-game-reviews-slot-games-review__cta-button--primary {
    background-color: #B80000;
    color: #FFD700;
    border-color: #B80000;
}

.page-game-reviews-slot-games-review__cta-button--primary:hover {
    background-color: #FFD700;
    color: #B80000;
    border-color: #FFD700;
}

.page-game-reviews-slot-games-review__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-reviews-slot-games-review__section:last-of-type {
    border-bottom: none;
}

.page-game-reviews-slot-games-review__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-reviews-slot-games-review__introduction p,
.page-game-reviews-slot-games-review__how-to-play p,
.page-game-reviews-slot-games-review__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

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

.page-game-reviews-slot-games-review__feature-item {
    background-color: #2A2A2A; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border-left: 5px solid #B80000;
}

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

.page-game-reviews-slot-games-review__feature-item h3 {
    color: #FFD700; /* Gold for feature titles */
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-game-reviews-slot-games-review__feature-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-game-reviews-slot-games-review__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slot-games-review__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews-slot-games-review__image--right {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 40%;
}

@media (max-width: 768px) {
    .page-game-reviews-slot-games-review__image--right {
        float: none;
        margin: 20px auto;
        max-width: 80%;
        display: block;
    }
}

.page-game-reviews-slot-games-review__list,
.page-game-reviews-slot-games-review__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-game-reviews-slot-games-review__numbered-list {
    list-style-type: decimal;
}

.page-game-reviews-slot-games-review__list li,
.page-game-reviews-slot-games-review__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-game-reviews-slot-games-review__list li strong {
    color: #FFD700;
}

.page-game-reviews-slot-games-review__list--gold li {
    color: #FFD700;
}

.page-game-reviews-slot-games-review__list--gold li strong {
    color: #FFD700;
}

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

.page-game-reviews-slot-games-review__slot-card {
    background-color: #2A2A2A;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-reviews-slot-games-review__slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-games-review__slot-card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #B80000;
}

.page-game-reviews-slot-games-review__slot-card h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-reviews-slot-games-review__slot-card p {
    color: #C0C0C0;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-game-reviews-slot-games-review__play-button {
    display: inline-block;
    background-color: #B80000;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid #B80000;
}

.page-game-reviews-slot-games-review__play-button:hover {
    background-color: #FFD700;
    color: #B80000;
    border-color: #FFD700;
}

.page-game-reviews-slot-games-review__more-games-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-game-reviews-slot-games-review__more-games-text a,
.page-game-reviews-slot-games-review__link-text {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-reviews-slot-games-review__more-games-text a:hover,
.page-game-reviews-slot-games-review__link-text:hover {
    color: #B80000;
    text-decoration: underline;
}

.page-game-reviews-slot-games-review__accordion {
    margin-top: 30px;
}

.page-game-reviews-slot-games-review__accordion-item {
    background-color: #2A2A2A;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-reviews-slot-games-review__accordion-header {
    background-color: #B80000; /* Deep Red for header */
    color: #FFD700; /* Gold text */
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.3em;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-game-reviews-slot-games-review__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-game-reviews-slot-games-review__accordion-header:hover {
    background-color: #800000;
}

.page-game-reviews-slot-games-review__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-game-reviews-slot-games-review__accordion-content.active {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 20px 25px;
}

.page-game-reviews-slot-games-review__accordion-content p {
    margin-bottom: 15px;
}

.page-game-reviews-slot-games-review__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-reviews-slot-games-review__title {
        font-size: 3em;
    }
    .page-game-reviews-slot-games-review__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-slot-games-review__hero {
        padding: 60px 0;
    }
    .page-game-reviews-slot-games-review__title {
        font-size: 2.5em;
    }
    .page-game-reviews-slot-games-review__subtitle {
        font-size: 1.2em;
    }
    .page-game-reviews-slot-games-review__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-game-reviews-slot-games-review__section {
        padding: 40px 0;
    }
    .page-game-reviews-slot-games-review__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-slot-games-review__feature-item,
    .page-game-reviews-slot-games-review__slot-card {
        padding: 20px;
    }
    .page-game-reviews-slot-games-review__image--right {
        float: none;
        margin: 20px auto;
        max-width: 90%;
        display: block;
    }
    .page-game-reviews-slot-games-review__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-game-reviews-slot-games-review__accordion-content {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slot-games-review__title {
        font-size: 2em;
    }
    .page-game-reviews-slot-games-review__subtitle {
        font-size: 1em;
    }
    .page-game-reviews-slot-games-review__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-game-reviews-slot-games-review__section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-slot-games-review__feature-item h3 {
        font-size: 1.3em;
    }
    .page-game-reviews-slot-games-review__list li,
    .page-game-reviews-slot-games-review__numbered-list li,
    .page-game-reviews-slot-games-review__introduction p,
    .page-game-reviews-slot-games-review__how-to-play p,
    .page-game-reviews-slot-games-review__conclusion p {
        font-size: 0.95em;
    }
    .page-game-reviews-slot-games-review__slot-card-image {
        height: 150px;
    }
}