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

:root {
    --go8-primary-color: #0A2463;
    --go8-secondary-color: #E3B505;
    --go8-text-light: #FFFFFF;
    --go8-text-dark: #333333;
    --go8-bg-light: #F8F8F8;
    --go8-bg-dark-gradient: linear-gradient(135deg, #0A2463, #1A3A7A);
}

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

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

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

.page-game-reviews-slot-games__hero-content {
    max-width: 600px;
}

.page-game-reviews-slot-games__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--go8-secondary-color);
}

.page-game-reviews-slot-games__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

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

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

.page-game-reviews-slot-games__section {
    padding: 60px 0;
    background-color: var(--go8-bg-light);
}

.page-game-reviews-slot-games__section--intro {
    background-color: var(--go8-text-light);
}

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

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

.page-game-reviews-slot-games__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-reviews-slot-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
}

.page-game-reviews-slot-games__btn--primary {
    background-color: var(--go8-secondary-color);
    color: var(--go8-primary-color);
    border: 2px solid var(--go8-secondary-color);
    margin-top: 20px;
}

.page-game-reviews-slot-games__btn--primary:hover {
    background-color: #FFD700; /* Slightly lighter gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 181, 5, 0.4);
}

.page-game-reviews-slot-games__btn--secondary {
    background-color: transparent;
    color: var(--go8-primary-color);
    border: 2px solid var(--go8-primary-color);
    margin-top: 20px;
}

.page-game-reviews-slot-games__btn--secondary:hover {
    background-color: var(--go8-primary-color);
    color: var(--go8-text-light);
    transform: translateY(-2px);
}

.page-game-reviews-slot-games__btn--tertiary {
    background-color: var(--go8-primary-color);
    color: var(--go8-text-light);
    border: none;
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

.page-game-reviews-slot-games__btn--tertiary:hover {
    background-color: var(--go8-secondary-color);
    color: var(--go8-primary-color);
    transform: translateY(-1px);
}

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

.page-game-reviews-slot-games__game-card {
    background-color: var(--go8-text-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.page-game-reviews-slot-games__game-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
}

.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(--go8-text-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-reviews-slot-games__img-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

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

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

.page-game-reviews-slot-games__section--offers {
    background-color: var(--go8-bg-dark-gradient);
    color: var(--go8-text-light);
}

.page-game-reviews-slot-games__section--offers h2 {
    color: var(--go8-secondary-color);
}

.page-game-reviews-slot-games__section--offers h2::after {
    background-color: var(--go8-text-light);
}

.page-game-reviews-slot-games__section--offers p {
    text-align: center;
    margin-bottom: 30px;
}

.page-game-reviews-slot-games__offer-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 800px;
}

.page-game-reviews-slot-games__offer-list li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--go8-secondary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
}

.page-game-reviews-slot-games__offer-list li strong {
    color: var(--go8-secondary-color);
}

.page-game-reviews-slot-games__faq-item {
    background-color: var(--go8-text-light);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-game-reviews-slot-games__faq-item p {
    font-size: 1em;
    color: #666;
    text-align: left;
}

.page-game-reviews-slot-games__faq-item a {
    color: var(--go8-primary-color);
    text-decoration: underline;
}

.page-game-reviews-slot-games__faq-item a:hover {
    color: var(--go8-secondary-color);
}

.page-game-reviews-slot-games__cta-bottom {
    background: var(--go8-bg-dark-gradient);
    color: var(--go8-text-light);
    text-align: center;
    padding: 60px 0;
}

.page-game-reviews-slot-games__cta-bottom h2 {
    color: var(--go8-secondary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-game-reviews-slot-games__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-game-reviews-slot-games__cta-bottom .page-game-reviews-slot-games__btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews-slot-games__hero {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }

    .page-game-reviews-slot-games__hero-image img {
        max-width: 300px;
    }

    .page-game-reviews-slot-games__hero h1 {
        font-size: 2.5em;
    }

    .page-game-reviews-slot-games__hero p {
        font-size: 1.1em;
    }

    .page-game-reviews-slot-games__section h2 {
        font-size: 2em;
    }

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

    .page-game-reviews-slot-games__cta-bottom h2 {
        font-size: 2em;
    }

    .page-game-reviews-slot-games__cta-bottom .page-game-reviews-slot-games__btn {
        margin: 10px 0;
        width: 80%;
        max-width: 300px;
    }
}

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

    .page-game-reviews-slot-games__hero h1 {
        font-size: 2em;
    }

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

    .page-game-reviews-slot-games__section {
        padding: 40px 0;
    }

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

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

    .page-game-reviews-slot-games__cta-bottom h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slot-games__hero-image img {
        max-width: 250px;
    }

    .page-game-reviews-slot-games__hero h1 {
        font-size: 1.8em;
    }

    .page-game-reviews-slot-games__section h2 {
        font-size: 1.6em;
    }

    .page-game-reviews-slot-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-game-reviews-slot-games__cta-bottom .page-game-reviews-slot-games__btn {
        width: 90%;
    }
}