:root {
    --page-casino-reviews-slot-games-primary-color: #007bff;
    --page-casino-reviews-slot-games-secondary-color: #28a745;
    --page-casino-reviews-slot-games-text-dark: #333;
    --page-casino-reviews-slot-games-text-light: #fff;
    --page-casino-reviews-slot-games-bg-light: #f8f9fa;
    --page-casino-reviews-slot-games-bg-dark: #343a40;
    --page-casino-reviews-slot-games-border-color: #dee2e6;
}

.page-casino-reviews-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-casino-reviews-slot-games-text-dark);
    background-color: var(--page-casino-reviews-slot-games-bg-light);
}

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

.page-casino-reviews-slot-games__hero-section {
    background: linear-gradient(135deg, var(--page-casino-reviews-slot-games-primary-color) 0%, var(--page-casino-reviews-slot-games-secondary-color) 100%);
    color: var(--page-casino-reviews-slot-games-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-casino-reviews-slot-games__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.page-casino-reviews-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--page-casino-reviews-slot-games-text-light);
}

.page-casino-reviews-slot-games__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-casino-reviews-slot-games-text-light);
}

.page-casino-reviews-slot-games__section {
    padding: 60px 0;
    background-color: var(--page-casino-reviews-slot-games-bg-light);
    border-bottom: 1px solid var(--page-casino-reviews-slot-games-border-color);
}

.page-casino-reviews-slot-games__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-casino-reviews-slot-games__section-title {
    font-size: 2.5em;
    color: var(--page-casino-reviews-slot-games-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-casino-reviews-slot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-casino-reviews-slot-games-secondary-color);
    border-radius: 2px;
}

.page-casino-reviews-slot-games__sub-title {
    font-size: 1.8em;
    color: var(--page-casino-reviews-slot-games-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-casino-reviews-slot-games__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-casino-reviews-slot-games__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding: 0;
}

.page-casino-reviews-slot-games__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--page-casino-reviews-slot-games-text-dark);
}

.page-casino-reviews-slot-games__list--benefits li {
    font-weight: bold;
    color: var(--page-casino-reviews-slot-games-primary-color);
}

.page-casino-reviews-slot-games__list--benefits li::before {
    content: '✅ ';
    color: var(--page-casino-reviews-slot-games-secondary-color);
    font-weight: normal;
}

.page-casino-reviews-slot-games__numbered-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin-bottom: 20px;
}

.page-casino-reviews-slot-games__numbered-list li {
    counter-increment: item;
    margin-bottom: 15px;
    font-size: 1.1em;
    padding-left: 35px;
    position: relative;
}

.page-casino-reviews-slot-games__numbered-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--page-casino-reviews-slot-games-secondary-color);
    font-size: 1.2em;
}

.page-casino-reviews-slot-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
}

.page-casino-reviews-slot-games__btn--primary {
    background-color: var(--page-casino-reviews-slot-games-primary-color);
    color: var(--page-casino-reviews-slot-games-text-light);
    border: 2px solid var(--page-casino-reviews-slot-games-primary-color);
}

.page-casino-reviews-slot-games__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-casino-reviews-slot-games__btn--secondary {
    background-color: var(--page-casino-reviews-slot-games-secondary-color);
    color: var(--page-casino-reviews-slot-games-text-light);
    border: 2px solid var(--page-casino-reviews-slot-games-secondary-color);
    margin-left: 15px;
}

.page-casino-reviews-slot-games__btn--secondary:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-casino-reviews-slot-games__game-card {
    background-color: var(--page-casino-reviews-slot-games-text-light);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-reviews-slot-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.page-casino-reviews-slot-games__game-title {
    font-size: 2em;
    color: var(--page-casino-reviews-slot-games-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-casino-reviews-slot-games__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-casino-reviews-slot-games__conclusion .page-casino-reviews-slot-games__btn {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-casino-reviews-slot-games__hero-title {
        font-size: 2.8em;
    }
    .page-casino-reviews-slot-games__hero-subtitle {
        font-size: 1.3em;
    }
    .page-casino-reviews-slot-games__section-title {
        font-size: 2em;
    }
    .page-casino-reviews-slot-games__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-casino-reviews-slot-games__hero-section {
        padding: 80px 0;
    }
    .page-casino-reviews-slot-games__hero-title {
        font-size: 2.2em;
    }
    .page-casino-reviews-slot-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-casino-reviews-slot-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-casino-reviews-slot-games__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-casino-reviews-slot-games__section {
        padding: 40px 0;
    }
    .page-casino-reviews-slot-games__section-title {
        font-size: 1.8em;
    }
    .page-casino-reviews-slot-games__sub-title {
        font-size: 1.3em;
    }
    .page-casino-reviews-slot-games__game-card {
        padding: 20px;
    }
    .page-casino-reviews-slot-games__game-title {
        font-size: 1.7em;
    }
    .page-casino-reviews-slot-games__list li, .page-casino-reviews-slot-games__numbered-list li {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-casino-reviews-slot-games__hero-section {
        padding: 60px 0;
    }
    .page-casino-reviews-slot-games__hero-title {
        font-size: 1.8em;
    }
    .page-casino-reviews-slot-games__hero-subtitle {
        font-size: 1em;
    }
    .page-casino-reviews-slot-games__btn {
        width: 100%;
        margin-top: 10px;
    }
    .page-casino-reviews-slot-games__btn--secondary {
        margin-top: 10px;
    }
    .page-casino-reviews-slot-games__section-title {
        font-size: 1.5em;
    }
    .page-casino-reviews-slot-games__sub-title {
        font-size: 1.2em;
    }
    .page-casino-reviews-slot-games__game-card {
        margin-bottom: 20px;
    }
    .page-casino-reviews-slot-games__game-title {
        font-size: 1.5em;
    }
    .page-casino-reviews-slot-games__game-image {
        height: 200px;
    }
}