/* ==========================================
   SECTION PERFORMANCE GRAPH
   ========================================== */

.performance-graph {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.performance-graph .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.graph-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.performance-svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Animation des courbes */
.skill-curve {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawCurve 2s ease-out forwards;
}

.frontend-curve {
    animation-delay: 0.2s;
}

.backend-curve {
    animation-delay: 0.5s;
}

.tools-curve {
    animation-delay: 0.8s;
}

@keyframes drawCurve {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animation des zones remplies */
.skill-area {
    opacity: 0;
    animation: fadeInArea 1.5s ease-out forwards;
}

.frontend-area {
    animation-delay: 0.5s;
}

.backend-area {
    animation-delay: 0.8s;
}

.tools-area {
    animation-delay: 1.1s;
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

/* Points de données */
.data-point {
    opacity: 0;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.data-point:nth-child(1) { animation-delay: 1s; }
.data-point:nth-child(2) { animation-delay: 1.2s; }
.data-point:nth-child(3) { animation-delay: 1.4s; }
.data-point:nth-child(4) { animation-delay: 1.6s; }
.data-point:nth-child(5) { animation-delay: 1.8s; }
.data-point:nth-child(6) { animation-delay: 2s; }
.data-point:nth-child(7) { animation-delay: 2.2s; }
.data-point:nth-child(8) { animation-delay: 2.4s; }
.data-point:nth-child(9) { animation-delay: 2.6s; }
.data-point:nth-child(10) { animation-delay: 2.8s; }
.data-point:nth-child(11) { animation-delay: 3s; }
.data-point:nth-child(12) { animation-delay: 3.2s; }

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Avatar markers */
.avatar-marker {
    opacity: 0;
    animation: avatarAppear 0.8s ease-out forwards;
}

.avatar-marker:nth-child(1) { animation-delay: 2s; }
.avatar-marker:nth-child(2) { animation-delay: 2.3s; }
.avatar-marker:nth-child(3) { animation-delay: 2.6s; }

@keyframes avatarAppear {
    0% {
        opacity: 0;
        transform: translate(850px, 50px) scale(0) rotate(-180deg);
    }
    60% {
        transform: translate(850px, 50px) scale(1.2) rotate(20deg);
    }
    100% {
        opacity: 1;
        transform: translate(850px, 50px) scale(1) rotate(0deg);
    }
}

.avatar-marker:hover {
    animation: avatarPulse 1s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Légende */
.graph-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.legend-text {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

/* Stats de performance */
.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
}

.stat-label {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .performance-graph {
        padding: 60px 15px;
    }
    
    .performance-graph .container {
        padding: 0 15px;
    }
    
    .graph-container {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .graph-legend {
        gap: 15px;
    }
    
    .legend-item {
        padding: 8px 15px;
    }
    
    .performance-stats {
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
}

/* Theme dark */
[data-theme="dark"] .performance-graph {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

[data-theme="dark"] .graph-container {
    background: rgba(255, 255, 255, 0.02);
}

/* Theme light */
[data-theme="light"] .performance-graph {
    background: linear-gradient(135deg, #f0f4f8 0%, #e6eef5 100%);
}

[data-theme="light"] .graph-container {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .skill-labels text,
[data-theme="light"] text {
    fill: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .grid-lines line {
    stroke: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-card {
    background: white;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .legend-item {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .legend-item:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* ==========================================
   DÉCORATIONS SECTION PERFORMANCE
   ========================================== */

.performance-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.performance-graph .container {
    position: relative;
    z-index: 1;
}

/* Bulles flottantes */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    backdrop-filter: blur(10px);
    animation: floatBubble 15s ease-in-out infinite;
}

.bubble-perf-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.3), transparent);
    animation-delay: 0s;
}

.bubble-perf-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 147, 251, 0.25), transparent);
    animation-delay: 2s;
}

.bubble-perf-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(79, 172, 254, 0.3), transparent);
    animation-delay: 4s;
}

.bubble-perf-4 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 20%;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.2), transparent);
    animation-delay: 1s;
}

.bubble-perf-5 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 25%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 147, 251, 0.2), transparent);
    animation-delay: 3s;
}

.bubble-perf-6 {
    width: 110px;
    height: 110px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(79, 172, 254, 0.25), transparent);
    animation-delay: 5s;
}

.bubble-perf-7 {
    width: 70px;
    height: 70px;
    top: 35%;
    left: 45%;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.25), transparent);
    animation-delay: 2.5s;
}

.bubble-perf-8 {
    width: 95px;
    height: 95px;
    bottom: 40%;
    right: 35%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 147, 251, 0.2), transparent);
    animation-delay: 4.5s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) translateX(-15px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) translateX(25px) scale(1.05);
        opacity: 0.7;
    }
}

/* Cercles lumineux */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 8s ease-in-out infinite;
}

.glow-perf-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4), transparent);
    animation-delay: 0s;
}

.glow-perf-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.3), transparent);
    animation-delay: 2s;
}

.glow-perf-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(79, 172, 254, 0.25), transparent);
    animation-delay: 4s;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Particules scintillantes */
.sparkle-particle {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    animation: sparkle 3s ease-in-out infinite;
}

.spark-perf-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    color: rgba(102, 126, 234, 0.8);
}

.spark-perf-2 {
    top: 25%;
    right: 25%;
    animation-delay: 0.5s;
    color: rgba(240, 147, 251, 0.8);
}

.spark-perf-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 1s;
    color: rgba(79, 172, 254, 0.8);
}

.spark-perf-4 {
    top: 45%;
    right: 15%;
    animation-delay: 1.5s;
    color: rgba(102, 126, 234, 0.8);
}

.spark-perf-5 {
    bottom: 35%;
    left: 10%;
    animation-delay: 2s;
    color: rgba(240, 147, 251, 0.8);
}

.spark-perf-6 {
    top: 65%;
    right: 40%;
    animation-delay: 2.5s;
    color: rgba(79, 172, 254, 0.8);
}

.spark-perf-7 {
    top: 80%;
    left: 45%;
    animation-delay: 3s;
    color: rgba(102, 126, 234, 0.8);
}

.spark-perf-8 {
    bottom: 10%;
    right: 20%;
    animation-delay: 3.5s;
    color: rgba(240, 147, 251, 0.8);
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

/* Formes géométriques */
.geo-shape {
    position: absolute;
    opacity: 0.1;
    animation: rotateShape 20s linear infinite;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(102, 126, 234, 0.3);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.geo-triangle-2 {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 69px solid rgba(240, 147, 251, 0.3);
    bottom: 25%;
    right: 15%;
    animation-delay: 5s;
}

.geo-square-1 {
    width: 60px;
    height: 60px;
    background: rgba(79, 172, 254, 0.2);
    top: 40%;
    right: 25%;
    animation-delay: 10s;
}

.geo-square-2 {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.2);
    bottom: 30%;
    left: 20%;
    animation-delay: 15s;
}

.geo-hexagon-1 {
    width: 60px;
    height: 35px;
    background: rgba(240, 147, 251, 0.2);
    position: relative;
    top: 55%;
    left: 35%;
    animation-delay: 3s;
}

.geo-hexagon-1::before,
.geo-hexagon-1::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.geo-hexagon-1::before {
    bottom: 100%;
    border-bottom: 17px solid rgba(240, 147, 251, 0.2);
}

.geo-hexagon-1::after {
    top: 100%;
    border-top: 17px solid rgba(240, 147, 251, 0.2);
}

.geo-hexagon-2 {
    width: 50px;
    height: 29px;
    background: rgba(79, 172, 254, 0.2);
    position: relative;
    top: 70%;
    right: 30%;
    animation-delay: 8s;
}

.geo-hexagon-2::before,
.geo-hexagon-2::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.geo-hexagon-2::before {
    bottom: 100%;
    border-bottom: 14px solid rgba(79, 172, 254, 0.2);
}

.geo-hexagon-2::after {
    top: 100%;
    border-top: 14px solid rgba(79, 172, 254, 0.2);
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Lignes connectées */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.connect-line {
    stroke-dasharray: 5, 5;
    animation: dashLine 3s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 1s; }
.line-4 { animation-delay: 1.5s; }

@keyframes dashLine {
    to {
        stroke-dashoffset: -20;
    }
}

/* Anneaux rotatifs */
.rotating-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: spinRing 15s linear infinite;
}

.ring-perf-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    border-color: rgba(102, 126, 234, 0.2);
    animation-delay: 0s;
}

.ring-perf-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    border-color: rgba(240, 147, 251, 0.2);
    animation-delay: 5s;
}

.ring-perf-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(79, 172, 254, 0.2);
    animation-delay: 10s;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Gradient orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-perf-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 25%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3), transparent);
    animation-delay: 0s;
}

.orb-perf-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.25), transparent);
    animation-delay: 3s;
}

.orb-perf-3 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    left: 30%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3), transparent);
    animation-delay: 6s;
}

.orb-perf-4 {
    width: 160px;
    height: 160px;
    bottom: 35%;
    right: 25%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25), transparent);
    animation-delay: 9s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Code symbols */
.code-symbol {
    position: absolute;
    font-size: 30px;
    opacity: 0.1;
    animation: floatSymbol 10s ease-in-out infinite;
}

.symbol-perf-1 {
    top: 25%;
    left: 12%;
    color: #667eea;
    animation-delay: 0s;
}

.symbol-perf-2 {
    top: 50%;
    right: 18%;
    color: #f093fb;
    animation-delay: 2.5s;
}

.symbol-perf-3 {
    bottom: 30%;
    left: 22%;
    color: #4facfe;
    animation-delay: 5s;
}

.symbol-perf-4 {
    bottom: 15%;
    right: 28%;
    color: #667eea;
    animation-delay: 7.5s;
}

@keyframes floatSymbol {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.3;
    }
}

/* Responsive pour décorations */
@media (max-width: 768px) {
    .floating-bubble,
    .glow-circle,
    .geo-shape,
    .rotating-ring,
    .gradient-orb {
        display: none;
    }
    
    .sparkle-particle,
    .code-symbol {
        font-size: 15px;
    }
}

/* Theme light - ajuster opacité */
[data-theme="light"] .floating-bubble,
[data-theme="light"] .glow-circle,
[data-theme="light"] .gradient-orb {
    opacity: 0.3;
}

[data-theme="light"] .sparkle-particle,
[data-theme="light"] .code-symbol {
    opacity: 0.15;
}

[data-theme="light"] .geo-shape {
    opacity: 0.08;
}

/* ==========================================
   AJUSTEMENTS THÈME CLAIR - PERFORMANCE
   ========================================== */

/* Section plus translucide en mode clair */
[data-theme="light"] .performance-graph {
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.85) 0%, rgba(230, 238, 245, 0.85) 100%);
}

[data-theme="light"] .graph-container {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
}

/* Stats cards plus petites et translucides en mode clair */
[data-theme="light"] .performance-stats {
    gap: 20px;
}

[data-theme="light"] .stat-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.08);
    padding: 20px 15px;
    transform: scale(0.95);
}

[data-theme="light"] .stat-card:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-5px) scale(0.95);
}

[data-theme="light"] .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

[data-theme="light"] .stat-value {
    font-size: 30px;
}

[data-theme="light"] .stat-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

/* Légende plus translucide */
[data-theme="light"] .legend-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 15px;
}

[data-theme="light"] .legend-item:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Titre et sous-titre */
[data-theme="light"] .section-title {
    color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] .section-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

/* SVG plus visible en mode clair */
[data-theme="light"] .skill-curve {
    stroke-width: 4;
}

[data-theme="light"] .data-point {
    r: 7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Décorations encore plus subtiles */
[data-theme="light"] .floating-bubble {
    opacity: 0.2;
}

[data-theme="light"] .glow-circle {
    opacity: 0.15;
    filter: blur(80px);
}

[data-theme="light"] .sparkle-particle {
    opacity: 0.1;
    font-size: 16px;
}

[data-theme="light"] .code-symbol {
    opacity: 0.08;
    font-size: 25px;
}

[data-theme="light"] .rotating-ring {
    opacity: 0.15;
    border-width: 1px;
}

[data-theme="light"] .gradient-orb {
    opacity: 0.2;
    filter: blur(60px);
}

[data-theme="light"] .geo-shape {
    opacity: 0.05;
}

/* Responsive - ajustements spécifiques */
@media (max-width: 1024px) {
    .performance-graph {
        padding: 80px 20px;
    }
    
    [data-theme="light"] .stat-card {
        padding: 18px 12px;
        transform: scale(0.92);
    }
    
    [data-theme="light"] .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    [data-theme="light"] .stat-value {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .performance-graph {
        padding: 50px 15px;
    }
    
    [data-theme="light"] .performance-graph {
        padding: 50px 15px;
    }
    
    .performance-graph .container {
        padding: 0 10px;
    }
    
    [data-theme="light"] .graph-container {
        padding: 15px;
        background: rgba(255, 255, 255, 0.7);
    }
    
    [data-theme="light"] .stat-card {
        padding: 15px 10px;
        transform: scale(0.9);
    }
    
    [data-theme="light"] .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    [data-theme="light"] .stat-value {
        font-size: 24px;
    }
    
    [data-theme="light"] .stat-label {
        font-size: 11px;
    }
}

/* Effet de verre (glassmorphism) renforcé en mode clair */
[data-theme="light"] .graph-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    pointer-events: none;
}

[data-theme="light"] .stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
    border-radius: 15px;
    pointer-events: none;
    z-index: -1;
}
