/* === Page Sets Verts === */

/* Conteneur principal */
.diablo-set-vert-detail {
    background: #202020;
    border: 2px solid #fec722;
    border-radius: 8px;
    padding: 25px;
    color: #fff;
}





/* Header du set */
.set-header {
    margin-bottom: 30px;
    text-align: center;
}

.set-title {
    color: #00ff00;
    margin: 0 0 15px 0;
    font-size: 2.5em;
}

/* Section bonus */
.set-bonus {
    margin-bottom: 30px;
}

.diablo-set-vert-detail .bonus-title {
    color: #fec722 !important;
    margin-bottom: 20px !important;
    font-size: 1.8em !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    text-decoration: none !important;
}

.bonus-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(32, 32, 32, 0.5);
    border-left: 4px solid #00ff00;
    border-radius: 5px;
}

.diablo-set-vert-detail .bonus-pieces {
    color: #00ff00;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none !important;
}

.bonus-description {
    margin: 0;
    color: #fff;
    line-height: 1.5;
}

/* Section pièces */
.set-pieces {
    margin-top: 30px;
}

.diablo-set-vert-detail .pieces-title {
    color: #fec722 !important;
    margin-bottom: 20px !important;
    font-size: 1.8em !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    text-decoration: none !important;
}

.pieces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.piece-item {
    padding: 15px;
    background: rgba(32, 32, 32, 0.5);
    border-radius: 5px;
    border: 1px solid #fec722;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.piece-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 210, 0, 0.3);
}

.diablo-set-vert-detail .piece-name {
    color: #fec722;
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none !important;
}

.piece-info {
    margin-bottom: 5px;
    color: #fff;
}

.piece-info:last-child {
    margin-bottom: 0;
}

.piece-info strong {
    color: #fec722;
}

/* Responsive */
@media (max-width: 768px) {
    .diablo-set-vert-detail {
        padding: 20px;
        margin: 10px;
    }
    
    .set-title {
        font-size: 2em;
    }
    
    .bonus-title,
    .pieces-title {
        font-size: 1.5em;
    }
    
    .pieces-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .diablo-set-vert-detail {
        padding: 15px;
    }
    
    .set-title {
        font-size: 1.8em;
    }
    
    .bonus-title,
    .pieces-title {
        font-size: 1.3em;
    }
    
    .bonus-item,
    .piece-item {
        padding: 12px;
    }
}