/* Styles pour les shortcodes Duel by Benribs Lab */

/* Container principal */
.duel-login-container,
.duel-register-container,
.duel-profile-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Messages d'erreur et de succès */
.duel-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.duel-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Formulaires */
.duel-login-form,
.duel-register-form {
    margin: 0;
}

.duel-login-form h3,
.duel-register-form h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.duel-form-description {
    margin: 0 0 20px 0;
    color: #6b7280;
    text-align: center;
    font-size: 14px;
}

/* Groupes de champs */
.duel-form-group {
    margin-bottom: 20px;
}

.duel-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

/* Champs de saisie */
.duel-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.duel-form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.duel-otp-input {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Boutons */
.duel-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    line-height: 1.5;
}

.duel-btn-primary {
    background: #3b82f6;
    color: #fff;
}

.duel-btn-primary:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

.duel-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.duel-btn-secondary:hover {
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
}

.duel-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Actions de formulaire */
.duel-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.duel-form-actions .duel-btn {
    flex: 1;
}

/* Liens d'inscription */
.duel-register-link-container {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

.duel-register-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.duel-register-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* État connecté */
.duel-already-logged-in {
    text-align: center;
    padding: 20px;
}

/* Profil utilisateur */
.duel-profile {
    text-align: center;
}

.duel-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: #6b7280;
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.duel-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.duel-avatar-fallback,
.duel-avatar-initials {
    width: 100%;
    height: 100%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    border-radius: 50%;
}

.duel-profile-info {
    margin-bottom: 20px;
}

.duel-profile-pseudo {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1f2937;
}

.duel-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.duel-stat-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.duel-stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    display: block;
}

.duel-stat-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Question d'inscription */
.duel-register-question {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.duel-register-question h4 {
    margin: 0 0 15px 0;
    color: #92400e;
}

.duel-register-question .duel-btn {
    margin: 5px;
    min-width: 80px;
}

/* Responsive */
@media (max-width: 480px) {
    .duel-login-container,
    .duel-register-container,
    .duel-profile-container {
        margin: 10px;
        padding: 15px;
    }
    
    .duel-form-actions {
        flex-direction: column;
    }
    
    .duel-profile-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .duel-register-question .duel-btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

/* ==============================================
   STYLES CLASSEMENT
   ============================================== */

.duel-classement-container {
    max-width: 100%;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.duel-classement-titre {
    margin: 0 0 20px 0;
    padding: 20px 20px 0 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.duel-classement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.duel-classement-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.duel-classement-info {
    font-size: 14px;
    opacity: 0.9;
}

.duel-classement-table {
    width: 100%;
    border-collapse: collapse;
}

.duel-classement-row {
    display: grid;
    grid-template-columns: 60px 60px 1fr 80px 80px 80px 80px;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.duel-classement-header-row {
    background: #f8f9fa;
    font-weight: 600;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
}

.duel-classement-row:last-child {
    border-bottom: none;
}

.duel-classement-row:hover:not(.duel-classement-header-row) {
    background: #f8f9ff;
}

/* Cellules */
.duel-rank-cell {
    text-align: center;
}

.duel-rank {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
}

.duel-avatar-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.duel-classement-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.duel-classement-avatar-fallback,
.duel-classement-avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #007cba;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #ddd;
}

.duel-pseudo-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.duel-pseudo {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.duel-categorie {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.duel-categorie-junior {
    background: #e3f2fd;
    color: #1976d2;
}

.duel-categorie-senior {
    background: #f3e5f5;
    color: #7b1fa2;
}

.duel-categorie-veteran {
    background: #fff3e0;
    color: #f57c00;
}

.duel-stats-cell {
    text-align: center;
    font-weight: 600;
}

.duel-victoires {
    color: #4caf50;
}

.duel-defaites {
    color: #f44336;
}

.duel-matches-cell,
.duel-touches-cell {
    text-align: center;
    font-weight: 600;
    color: #555;
}

.duel-winrate-cell {
    text-align: center;
}

.duel-winrate {
    font-weight: 600;
    color: #667eea;
}

.duel-classement-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    text-align: center;
    color: #666;
    border-top: 1px solid #eee;
}

/* Responsive classement */
@media (max-width: 768px) {
    .duel-classement-row {
        grid-template-columns: 50px 50px 1fr 60px 60px;
        gap: 8px;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .duel-touches-cell,
    .duel-winrate-cell {
        display: none;
    }
    
    .duel-classement-avatar,
    .duel-classement-avatar-fallback,
    .duel-classement-avatar-initials {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .duel-rank {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 12px;
    }
    
    .duel-pseudo {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .duel-classement-row {
        grid-template-columns: 40px 40px 1fr 50px;
        gap: 6px;
        padding: 10px 12px;
    }
    
    .duel-matches-cell {
        display: none;
    }
    
    .duel-classement-header h4 {
        font-size: 18px;
    }
    
    .duel-classement-titre {
        font-size: 20px;
        padding: 15px 15px 0 15px;
    }
}

/* =============================================
   STYLES POUR LE SHORTCODE DUELS
   ============================================= */

/* Container principal des duels */
.duel-duels-container {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Navigation par onglets */
.duel-tabs-navigation {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.duel-tabs-desktop {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.duel-tabs-desktop::-webkit-scrollbar {
    display: none;
}

.duel-tab {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #64748b;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.duel-tab:hover {
    color: #334155;
    background: #f1f5f9;
}

.duel-tab.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: #eff6ff;
}

.duel-tab-icon {
    margin-right: 8px;
    font-size: 16px;
}

.duel-tab-label {
    font-weight: 500;
    margin-right: 8px;
}

.duel-tab-count {
    background: #dc2626;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.duel-tab.active .duel-tab-count {
    background: #3b82f6;
}

/* Contenu des onglets */
.duel-tab-content {
    padding: 24px;
    min-height: 400px;
}

/* État vide */
.duel-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    font-size: 16px;
}

/* Container des cartes de duels */
.duel-cards-container {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

/* Cartes de duels */
.duel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.duel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.duel-card-invitation {
    border-left: 4px solid #f59e0b;
}

.duel-card-defi {
    border-left: 4px solid #8b5cf6;
}

.duel-card-actif {
    border-left: 4px solid #10b981;
}

.duel-card-recent {
    border-left: 4px solid #6b7280;
}

/* En-tête de carte */
.duel-card-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 16px;
}

.duel-participants {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1f2937;
}

.duel-participant {
    color: #3b82f6;
}

.duel-vs {
    color: #6b7280;
    font-weight: 400;
}

.duel-date {
    font-size: 14px;
    color: #6b7280;
    margin-left: auto;
}

/* Contenu de carte */
.duel-notes,
.duel-date-programmee {
    margin-bottom: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.duel-notes strong,
.duel-date-programmee strong {
    color: #374151;
}

/* Actions de carte */
.duel-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.duel-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.duel-btn-primary {
    background: #3b82f6;
    color: white;
}

.duel-btn-primary:hover {
    background: #2563eb;
}

.duel-btn-success {
    background: #10b981;
    color: white;
}

.duel-btn-success:hover {
    background: #059669;
}

.duel-btn-danger {
    background: #ef4444;
    color: white;
}

.duel-btn-danger:hover {
    background: #dc2626;
}

.duel-result {
    font-weight: 600;
    color: #374151;
    padding: 8px 0;
}

/* Formulaire nouveau duel */
.duel-nouveau-form {
    max-width: 600px;
    margin: 0 auto;
}

.duel-nouveau-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    text-align: center;
}

.duel-form-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 24px;
    font-style: italic;
}

.duel-form {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.duel-form-group {
    margin-bottom: 20px;
}

.duel-form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.duel-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.duel-form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.duel-form-actions {
    text-align: center;
    margin-top: 24px;
}

.duel-form-actions .duel-btn {
    padding: 12px 24px;
    font-size: 16px;
}

/* Responsive pour les duels */
@media (max-width: 768px) {
    .duel-duels-container {
        margin: 10px;
        border-radius: 8px;
    }
    
    .duel-tab-content {
        padding: 16px;
    }
    
    .duel-cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .duel-card {
        padding: 16px;
    }
    
    .duel-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .duel-date {
        margin-left: 0;
    }
    
    .duel-card-actions {
        flex-direction: column;
    }
    
    .duel-btn {
        justify-content: center;
    }
    
    .duel-tab {
        padding: 12px 16px;
    }
    
    .duel-tab-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .duel-participants {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .duel-vs {
        display: none;
    }
    
    .duel-tab {
        padding: 10px 12px;
    }
    
    .duel-tab-icon {
        margin-right: 4px;
    }
    
    .duel-tab-label {
        font-size: 12px;
    }
    
    .duel-form {
        padding: 16px;
    }
}

/* =============================================
   MODAL DE SCORE
   ============================================= */

.duel-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.duel-modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    margin: 200px 0 0 0;
    position: relative;
    transform: translateY(0);
}

.duel-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.duel-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.duel-modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #6b7280;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.duel-modal-close:hover {
    color: #374151;
    background: #f3f4f6;
}

.duel-modal-form {
    padding: 20px 24px 24px 24px;
}

.duel-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.duel-btn-secondary {
    background: #6b7280;
    color: white;
}

.duel-btn-secondary:hover {
    background: #4b5563;
}

/* Responsive modal */
@media (max-width: 768px) {
    .duel-modal {
        padding: 10px;
    }
    
    .duel-modal-content {
        max-width: none;
        width: 100%;
        max-height: 85vh;
    }
    
    .duel-modal-header {
        padding: 16px 20px 12px 20px;
    }
    
    .duel-modal-header h3 {
        font-size: 16px;
    }
    
    .duel-modal-form {
        padding: 16px 20px 20px 20px;
    }
    
    .duel-modal-actions {
        flex-direction: column;
        gap: 8px;
    }
}

/* Styles pour les propositions de score */
.duel-proposition-status {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.duel-proposition-status p {
    margin: 5px 0;
    font-size: 14px;
}

.duel-waiting {
    color: #ff9800;
    font-style: italic;
}

.duel-proposition-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.duel-proposition-actions .duel-btn {
    flex: 1;
    font-size: 12px;
    padding: 8px 12px;
}

/* ==============================================
   STYLES POUR LA PAGE D'ACCUEIL [duel_home]
   ============================================== */

/* Container principal */
.duel-home-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

/* Hero Section */
.duel-hero {
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 50%, #f9fafb 100%);
    padding: 80px 20px;
    text-align: center;
}

.duel-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.duel-hero-logo img {
    max-height: 120px;
    width: auto;
    margin-bottom: 30px;
}

.duel-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.1;
}

.duel-gradient-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.duel-hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.duel-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Comment ça marche */
.duel-how-it-works {
    background: #ffffff;
    padding: 80px 20px;
}

.duel-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.duel-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.duel-section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.duel-section-header-white h2 {
    color: #ffffff;
}

.duel-section-header-white p {
    color: rgba(255, 255, 255, 0.8);
}

.duel-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.duel-step {
    text-align: center;
}

.duel-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2rem;
}

.duel-step-icon-purple {
    background: #ede9fe;
    color: #8b5cf6;
}

.duel-step-icon-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.duel-step-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.duel-step-icon-yellow {
    background: #fef3c7;
    color: #f59e0b;
}

.duel-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.duel-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Système de points */
.duel-points-system {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    padding: 80px 20px;
    color: white;
}

.duel-points-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.duel-points-rules {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.duel-point-rule {
    display: flex;
    align-items: center;
    gap: 20px;
}

.duel-point-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.duel-point-icon-gold {
    background: #fbbf24;
    color: white;
}

.duel-point-icon-blue {
    background: #3b82f6;
    color: white;
}

.duel-point-icon-green {
    background: #10b981;
    color: white;
}

.duel-point-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.duel-point-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.duel-points-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.duel-points-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.duel-points-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.duel-points-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

/* Catégories */
.duel-categories {
    background: #f9fafb;
    padding: 80px 20px;
}

.duel-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.duel-category-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.duel-category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    font-size: 2.5rem;
}

.duel-category-icon-orange {
    background: #fed7aa;
    color: #ea580c;
}

.duel-category-icon-purple {
    background: #ede9fe;
    color: #8b5cf6;
}

.duel-category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.duel-category-age {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1rem;
}

.duel-category-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.duel-category-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
}

/* CTA Final */
.duel-final-cta {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.duel-final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.duel-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.duel-final-cta p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.duel-final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.duel-footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.duel-footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.duel-footer-logo {
    margin-bottom: 20px;
}

.duel-footer-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.duel-footer-tagline {
    color: #9ca3af;
    margin: 0;
}

/* Boutons spéciaux pour la home */
.duel-btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
}

.duel-btn-link {
    background: none;
    border: none;
    color: #8b5cf6;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.2s;
}

.duel-btn-link:hover {
    color: #7c3aed;
    background: none;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .duel-hero-title {
        font-size: 2.5rem;
    }
    
    .duel-hero-description {
        font-size: 1.125rem;
    }
    
    .duel-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .duel-hero-buttons .duel-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .duel-points-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .duel-section-header h2 {
        font-size: 2rem;
    }
    
    .duel-final-cta h2 {
        font-size: 2rem;
    }
    
    .duel-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .duel-final-cta-buttons .duel-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .duel-categories-grid {
        grid-template-columns: 1fr;
    }
}