.qrise-games-block-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.qrise-games-main-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

/* Section Introduction */
.qrise-games-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #F9F7F5;
    border-radius: 16px;
}

.qrise-games-subtitle {
    font-size: 32px;
    font-weight: 600;
}

.qrise-games-intro-left {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.qrise-games-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrise-games-intro-img {
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

/* Section Prix */
.qrise-games-pricing {
    display: flex;
    justify-content: space-around;
    gap: 4rem;
    margin-bottom: 3rem;
}

.qrise-price-block {
    text-align: center;
}

.qrise-price-amount {
    font-size: 36px;
    font-weight: 600;
    color: #333;
}

.qrise-price-period {
    font-size: 18px;
    color: #666;
    margin-left: 0.5rem;
}

.qrise-price-condition {
    display: block;
    font-size: 16px;
    color: #666;
    margin-top: 0.5rem;
}

/* Grille de jeux */
.qrise-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 40px;
}

.qrise-game-card {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.qrise-game-card:hover {
    border-color: #6666FF;
    transform: translateY(-2px);
}

.qrise-game-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.qrise-game-card h4 {
    font-size: 20px;
    margin-bottom: 1rem;
}

.qrise-game-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6666FF;
    font-weight: 500;
}

.qrise-game-cta svg {
    transition: transform 0.3s ease;
}

.qrise-game-card:hover .qrise-game-cta svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .qrise-games-main-title {
        font-size: 36px;
    }

    .qrise-games-intro {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .qrise-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qrise-games-pricing {
        flex-direction: row;
        justify-content: space-around;
    }

    .qrise-games-intro-img {
        max-width: 220px;
    }
    .qrise-games-subtitle {
        font-size: 28px;

    }

    .qrise-games-block-wrapper {
        width: 100%;
        padding: 30px !important;
        
    }

    .qrise-games-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qrise-games-intro-left {
        align-items: center;
    }

    .qrise-games-icons-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .qrise-games-block-wrapper {
        padding: 2rem 1rem;
    }

    .qrise-games-main-title {
        font-size: 28px;
    }

    .qrise-games-grid {
        grid-template-columns: 1fr;
    }
}