/* Styles généraux avec préfixe */
.quiz-main-content {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.quiz-page-header {
    padding: 2rem 0;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

.quiz-main-title {
    font-size: 2.5rem;
    color: #1e1b4b;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.quiz-breadcrumb {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
    background: transparent;
    flex-wrap: wrap;
}

.quiz-breadcrumb-item {
    padding: 0 0.5rem;
}

.quiz-breadcrumb-item.active {
    color: #6c757d;
}

/* Section jeux */
.quiz-games-section {
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.quiz-section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.quiz-section-title {
    font-size: 2rem;
    color: #1e1b4b;
    margin-bottom: 0.5rem;
}

.quiz-section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Cartes de jeu */
.quiz-game-col {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.quiz-game-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.quiz-game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Catégorie */
.quiz-game-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fcb900;
    color: #1e1b4b;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

/* Image */
.quiz-game-figure {
    margin: 0;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.quiz-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quiz-game-card:hover .quiz-game-img {
    transform: scale(1.05);
}

/* Badge lot */
.quiz-game-prize-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(30, 27, 75, 0.9);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
}

/* Corps de la carte */
.quiz-game-body {
    padding: 1rem;
}

.quiz-game-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    color: #6c757d;
    flex-wrap: wrap;
}

.quiz-game-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.quiz-game-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #1e1b4b;
    line-height: 1.3;
}

.quiz-game-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quiz-game-title a:hover {
    color: #fcb900;
}

.quiz-game-desc {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Section lot */
.quiz-prize-box {
    background: rgba(30, 27, 75, 0.05);
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-left: 3px solid #fcb900;
}

.quiz-prize-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    color: #1e1b4b;
}

.quiz-prize-name {
    font-size: 1rem;
    margin: 0;
}

.quiz-prize-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.4rem;
}

.quiz-prize-value {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.quiz-prize-value span {
    color: #6c757d;
}

.quiz-prize-value strong {
    color: #1e1b4b;
    font-weight: 700;
}

.quiz-free-game {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Icônes */
.quiz-icon {
    font-size: 0.9rem;
}

.quiz-icon-trophy {
    color: #ffd700;
}

.quiz-icon-heart {
    color: #dc3545;
}

/* Boutons */
.quiz-game-actions {
    display: flex;
    gap: 0.6rem;
}

.quiz-btn {
    flex: 1;
    padding: 0.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.quiz-btn-details {
    background: transparent;
    color: #1e1b4b;
    border-color: rgba(30, 27, 75, 0.2);
}

.quiz-btn-details:hover {
    background: rgba(30, 27, 75, 0.05);
    border-color: #1e1b4b;
}

.quiz-btn-play {
    background: #fcb900;
    color: #1e1b4b;
    border-color: #fcb900;
}

.quiz-btn-play:hover {
    background: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(252, 185, 0, 0.3);
}

/* Media queries pour mobile */
@media (max-width: 768px) {
    .quiz-page-header {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }

    .quiz-main-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
    }

    .quiz-section-title {
        font-size: 1.2rem;
    }

    .quiz-section-subtitle {
        font-size: 0.9rem;
    }

    .quiz-games-section {
        padding-bottom: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .quiz-section-header {
        margin-bottom: 1rem;
    }

    .quiz-game-col {
        margin-bottom: 0.8rem;
        padding: 0 0.25rem;
    }

    .quiz-game-figure {
        height: 120px;
    }

    .quiz-game-body {
        padding: 0.6rem;
    }

    .quiz-game-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .quiz-game-desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.6rem;
    }

    .quiz-game-meta {
        gap: 0.4rem;
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .quiz-prize-box {
        padding: 0.5rem;
        margin-bottom: 0.6rem;
    }

    .quiz-prize-name {
        font-size: 0.85rem;
    }

    .quiz-prize-desc {
        font-size: 0.7rem;
    }

    .quiz-prize-value {
        font-size: 0.75rem;
    }

    .quiz-btn {
        padding: 0.4rem;
        font-size: 0.8rem;
    }

    .quiz-game-actions {
        flex-direction: column;
        gap: 0.3rem;
    }

    .quiz-btn {
        flex: none;
    }

    .quiz-game-category,
    .quiz-game-prize-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .quiz-main-title {
        font-size: 1.2rem;
    }

    .quiz-section-title {
        font-size: 1.1rem;
    }

    .quiz-game-figure {
        height: 100px;
    }

    .quiz-game-body {
        padding: 0.5rem;
    }

    .quiz-game-title {
        font-size: 0.9rem;
    }

    .quiz-game-desc {
        display: none; /* Masquer la description sur très petit écran */
    }

    .quiz-game-meta {
        gap: 0.3rem;
        font-size: 0.7rem;
    }

    .quiz-prize-box {
        padding: 0.4rem;
    }

    .quiz-prize-name {
        font-size: 0.8rem;
    }

    .quiz-btn {
        padding: 0.35rem;
        font-size: 0.75rem;
    }

    .quiz-game-category,
    .quiz-game-prize-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.3rem;
    }
}

/* Optimisations pour très petits écrans */
@media (max-width: 320px) {
    .quiz-main-title {
        font-size: 1.1rem;
    }

    .quiz-section-title {
        font-size: 1rem;
    }

    .quiz-game-figure {
        height: 90px;
    }

    .quiz-game-body {
        padding: 0.4rem;
    }

    .quiz-game-title {
        font-size: 0.85rem;
    }

    .quiz-btn {
        padding: 0.3rem;
        font-size: 0.7rem;
    }

    .quiz-game-category,
    .quiz-game-prize-badge {
        font-size: 0.5rem;
        padding: 0.08rem 0.25rem;
    }
}