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

:root {
    --page-game-reviews-slot-games-primary-color: #0A2463;
    --page-game-reviews-slot-games-secondary-color: #FFD700;
    --page-game-reviews-slot-games-text-dark: #1a1a1a;
    --page-game-reviews-slot-games-text-light: #ffffff;
    --page-game-reviews-slot-games-background-light: #f5f5f5;
    --page-game-reviews-slot-games-background-dark: #071c40;
    --page-game-reviews-slot-games-accent-gold-light: #f5db9c;
}

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

.page-game-reviews-slot-games a {
    color: var(--page-game-reviews-slot-games-primary-color);
    text-decoration: none;
}

.page-game-reviews-slot-games a:hover {
    text-decoration: underline;
    color: var(--page-game-reviews-slot-games-secondary-color);
}

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

.page-game-reviews-slot-games__hero {
    background: linear-gradient(135deg, var(--page-game-reviews-slot-games-primary-color), var(--page-game-reviews-slot-games-background-dark));
    color: var(--page-game-reviews-slot-games-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page-game-reviews-slot-games__hero-content {
    max-width: 600px;
    text-align: left;
    padding: 0 20px;
}

.page-game-reviews-slot-games__hero-content a {
    color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__hero-content a:hover {
    color: var(--page-game-reviews-slot-games-accent-gold-light);
}

.page-game-reviews-slot-games__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-game-reviews-slot-games-text-light);
}

.page-game-reviews-slot-games__hero-image-wrapper {
    flex-shrink: 0;
}

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

.page-game-reviews-slot-games__cta-button {
    display: inline-block;
    background-color: var(--page-game-reviews-slot-games-secondary-color);
    color: var(--page-game-reviews-slot-games-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-reviews-slot-games__cta-button:hover {
    background-color: var(--page-game-reviews-slot-games-accent-gold-light);
    transform: translateY(-3px);
    text-decoration: none;
}

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

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

.page-game-reviews-slot-games__section-title a {
    color: var(--page-game-reviews-slot-games-primary-color);
}

.page-game-reviews-slot-games__section-title a:hover {
    color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__introduction, 
.page-game-reviews-slot-games__how-to-play, 
.page-game-reviews-slot-games__faq, 
.page-game-reviews-slot-games__cta-final {
    padding: 60px 0;
    background-color: var(--page-game-reviews-slot-games-background-light);
}

.page-game-reviews-slot-games__featured-games, 
.page-game-reviews-slot-games__tips {
    padding: 60px 0;
    background-color: #fcfcfc;
}

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

.page-game-reviews-slot-games__game-card {
    background-color: var(--page-game-reviews-slot-games-text-light);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-game-reviews-slot-games__game-title {
    font-size: 1.8em;
    color: var(--page-game-reviews-slot-games-primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-game-reviews-slot-games__game-title a {
    color: var(--page-game-reviews-slot-games-primary-color);
}

.page-game-reviews-slot-games__game-title a:hover {
    color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__game-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-game-reviews-slot-games__game-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-game-reviews-slot-games__game-features li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #444;
}

.page-game-reviews-slot-games__game-features li strong {
    color: var(--page-game-reviews-slot-games-primary-color);
}

.page-game-reviews-slot-games__game-button {
    display: inline-block;
    background-color: var(--page-game-reviews-slot-games-primary-color);
    color: var(--page-game-reviews-slot-games-text-light);
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-game-reviews-slot-games__game-button:hover {
    background-color: var(--page-game-reviews-slot-games-secondary-color);
    color: var(--page-game-reviews-slot-games-primary-color);
    text-decoration: none;
}

.page-game-reviews-slot-games__how-to-play ol {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-game-reviews-slot-games__how-to-play li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-game-reviews-slot-games__how-to-play p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-game-reviews-slot-games__how-to-play .page-game-reviews-slot-games__cta-button {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-reviews-slot-games__tip-card {
    background-color: var(--page-game-reviews-slot-games-text-light);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-reviews-slot-games__tip-card h3 {
    font-size: 1.5em;
    color: var(--page-game-reviews-slot-games-primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-game-reviews-slot-games__tip-card p {
    font-size: 1em;
    color: #555;
}

.page-game-reviews-slot-games__tip-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-slot-games__faq-item {
    background-color: var(--page-game-reviews-slot-games-text-light);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-slot-games__faq-item h3 {
    font-size: 1.4em;
    color: var(--page-game-reviews-slot-games-primary-color);
    margin-bottom: 10px;
}

.page-game-reviews-slot-games__faq-item p {
    font-size: 1em;
    color: #444;
}

.page-game-reviews-slot-games__faq-item h3 a, .page-game-reviews-slot-games__faq-item p a {
    color: var(--page-game-reviews-slot-games-primary-color);
}

.page-game-reviews-slot-games__faq-item h3 a:hover, .page-game-reviews-slot-games__faq-item p a:hover {
    color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__cta-final {
    background: linear-gradient(135deg, var(--page-game-reviews-slot-games-background-dark), var(--page-game-reviews-slot-games-primary-color));
    color: var(--page-game-reviews-slot-games-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-game-reviews-slot-games__cta-final .page-game-reviews-slot-games__section-title {
    color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__cta-final .page-game-reviews-slot-games__section-title::after {
    background-color: var(--page-game-reviews-slot-games-accent-gold-light);
}

.page-game-reviews-slot-games__cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews-slot-games__cta-final p a {
    color: var(--page-game-reviews-slot-games-secondary-color);
}

.page-game-reviews-slot-games__cta-final p a:hover {
    color: var(--page-game-reviews-slot-games-accent-gold-light);
}

.page-game-reviews-slot-games__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.page-game-reviews-slot-games__cta-button--secondary {
    background-color: transparent;
    border: 2px solid var(--page-game-reviews-slot-games-secondary-color);
    color: var(--page-game-reviews-slot-games-secondary-color);
    margin-left: 20px;
}

.page-game-reviews-slot-games__cta-button--secondary:hover {
    background-color: var(--page-game-reviews-slot-games-secondary-color);
    color: var(--page-game-reviews-slot-games-primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews-slot-games__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews-slot-games__hero-content {
        text-align: center;
    }

    .page-game-reviews-slot-games__main-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__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-slot-games__hero {
        padding: 60px 0;
    }

    .page-game-reviews-slot-games__main-title {
        font-size: 2em;
    }

    .page-game-reviews-slot-games__hero-description {
        font-size: 1em;
    }

    .page-game-reviews-slot-games__section-title {
        font-size: 1.8em;
    }

    .page-game-reviews-slot-games__game-card {
        padding: 20px;
    }

    .page-game-reviews-slot-games__game-title {
        font-size: 1.5em;
    }

    .page-game-reviews-slot-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-reviews-slot-games__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-game-reviews-slot-games__cta-final p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slot-games__hero-content {
        padding: 0 15px;
    }

    .page-game-reviews-slot-games__main-title {
        font-size: 1.8em;
    }

    .page-game-reviews-slot-games__hero-description {
        font-size: 0.9em;
    }

    .page-game-reviews-slot-games__section-title {
        font-size: 1.5em;
    }

    .page-game-reviews-slot-games__game-grid, 
    .page-game-reviews-slot-games__tips-grid {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-slot-games__cta-button--secondary {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .page-game-reviews-slot-games__cta-button--large {
        width: 100%;
        box-sizing: border-box;
    }
}