/* ===== Variables ===== */
:root {
  --bg-dark: #0f172a;
  --bg-darker: #0b1225;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --accent: #ec4899;
  --accent-hover: #f472b6;
  --primary: #60a5fa;
  --primary-dark: #2563eb;
  --border: rgba(148, 163, 184, 0.15);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, #0b1020 0%, var(--bg-dark) 100%);
  min-height: 100vh;
  display: flex;
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 80px;
  background: linear-gradient(180deg, var(--accent) 0%, #db2777 100%);
  box-shadow: var(--shadow);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

.sidebar-header {
  margin-bottom: 3rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  align-items: center;
}

.sidebar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-link span {
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  opacity: 0.9;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateX(3px);
}

.sidebar-link:hover span {
  opacity: 1;
}

/* ===== Main Content ===== */
.main-content {
  margin-left: 80px;
  flex: 1;
  width: calc(100% - 80px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(96, 165, 250, 0.1), transparent);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Sections ===== */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.5);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
}

/* ===== About Section ===== */
.about-content {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-content p {
  margin-bottom: 1rem;
}

/* ===== Skills Section ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.skill-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.skill-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.skill-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.skill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.skill-list li {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.skill-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ===== Projects Section ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.project-header h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  flex: 1;
}

.project-tag {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.project-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  min-width: 300px;
}

.contact-item:hover {
  border-color: var(--accent);
  transform: translateX(5px);
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  background: rgba(11, 18, 37, 0.8);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .sidebar {
    width: 70px;
    padding: 1.5rem 0;
  }

  .avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .sidebar-link span {
    font-size: 0.65rem;
  }

  .main-content {
    margin-left: 70px;
    width: calc(100% - 70px);
  }

  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 50vh;
  }

  .skills-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sidebar {
    width: 60px;
  }

  .sidebar-header {
    margin-bottom: 2rem;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .sidebar-link {
    padding: 0.6rem;
  }

  .sidebar-link span {
    display: none;
  }

  .main-content {
    margin-left: 60px;
    width: calc(100% - 60px);
  }

  .container {
    padding: 0 1rem;
  }
}
.veille-section {
    padding: 4rem 0;
    color: white;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-family: Arial, sans-serif;
}

/* Container */
.veille-section .veille-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Loader */
.veille-section .loader-container {
    text-align: center;
    padding: 4rem 2rem;
    color: white;
}

.veille-section .loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.veille-section .loader-text {
    font-size: 1.1rem;
    color: #94a3b8;
}

/* Statistiques */
.veille-section .stats-bar {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.veille-section .stat-item {
    text-align: center;
    padding: 0.5rem 1.5rem;
}

.veille-section .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #f8fafc;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.veille-section .stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Live indicator */
.veille-section .live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.veille-section .live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Grille */
.veille-section .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Cartes */
.veille-section .card {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.veille-section .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: rgba(59, 130, 246, 0.5);
}

.veille-section .card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.veille-section .card-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: monospace;
}

/* Sévérité */
.veille-section .severity-critical {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.veille-section .severity-high {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.veille-section .severity-medium {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Corps de carte */
.veille-section .card-body {
    padding: 1.5rem;
}

.veille-section .card-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #f8fafc;
}

.veille-section .card-description {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.veille-section .card-meta {
    display: flex;
    gap: 1.5rem;
    color: #94a3b8;
    padding: 0.75rem;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.veille-section .card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.veille-section .card-links a {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.veille-section .card-links a:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: translateX(4px);
}

/* Filtres */
.veille-section .filter-section {
    margin-bottom: 2rem;
    justify-content: center;
}

.veille-section .filter-btn {
    cursor: pointer;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.veille-section .filter-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.veille-section .filter-btn.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

/* Pagination */
.veille-section .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.veille-section .page-btn {
    cursor: pointer;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    min-width: 44px;
    transition: all 0.3s ease;
}

.veille-section .page-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.veille-section .page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.veille-section .page-btn.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    border-color: transparent;
}
@media (max-width: 768px) {
    .veille-section .grid {
        grid-template-columns: 1fr;
    }
    .veille-section .stat-value {
        font-size: 1.5rem;
    }
}
        /* Section commune */
        .veille-section {
            padding: 4rem 0;
            color: white;
        }
        
        .veille-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: #f8fafc;
            margin-bottom: 0.5rem;
        }
        
        .section-header p {
            color: #94a3b8;
            font-size: 1.1rem;
        }
        
        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .live-dot {
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        /* Loader */
        .loader-container {
            text-align: center;
            padding: 3rem;
        }
        
        .loader {
            width: 50px;
            height: 50px;
            border: 4px solid #334155;
            border-top-color: #3b82f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .loader-text {
            color: #94a3b8;
        }
        
        /* Stats */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(0,0,0,0.2);
            border-radius: 12px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f8fafc;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: #64748b;
            text-transform: uppercase;
        }
        
        /* Grille */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        /* Carte */
        .card {
            background: #1e293b;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #334155;
            transition: all 0.3s;
        }
        
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .card-header {
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .card-badge {
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        
        .card-title {
            font-size: 1.1rem;
            color: #f8fafc;
            margin: 0 0 0.75rem 0;
            font-weight: 600;
        }
        
        .card-body {
            padding: 0 1.5rem 1.5rem;
        }
        
        .card-description {
            color: #94a3b8;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        .card-meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 1rem;
        }
        
        .card-meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        
        .card-links {
            display: flex;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #334155;
        }
        
        .card-links a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: #60a5fa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .card-links a:hover {
            color: #93c5fd;
        }
        
        /* Filtres */
        .filter-section {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .filter-btn {
            background: #334155;
            border: none;
            color: #cbd5e1;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .filter-btn:hover {
            background: #475569;
        }
        
        .filter-btn.active {
            background: #3b82f6;
            color: white;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
        }
        
        .page-btn {
            background: #334155;
            border: none;
            color: #cbd5e1;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .page-btn:hover:not(:disabled) {
            background: #475569;
        }
        
        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .page-btn.active {
            background: #3b82f6;
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 640px) {
            .stats-bar {
                gap: 1rem;
            }
            .grid {
                grid-template-columns: 1fr;
            }
        }
        /* Timeline commune */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 40px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--accent), var(--primary));
            border-radius: 3px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-left: 20px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border: 4px solid var(--bg-dark);
            border-radius: 50%;
            box-shadow: 0 0 0 3px var(--accent);
        }
        
        .timeline-date {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .timeline-content {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
        }
        
        .timeline-content h3 {
            margin: 0 0 0.25rem 0;
            color: var(--text-primary);
            font-size: 1.15rem;
        }
        
        .timeline-content .subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        
        .timeline-content p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }
        
        .timeline-content .tag {
            display: inline-block;
            background: rgba(236, 72, 153, 0.2);
            color: var(--accent);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 0.75rem;
        }
        
        /* Skills bars */
        .skills-section {
            display: grid;
            gap: 1.5rem;
        }
        
        .skill-item {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            padding: 1.25rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        
        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .skill-name {
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .skill-percent {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
        }
        
        .skill-bar {
            height: 10px;
            background: rgba(148, 163, 184, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 10px;
            transition: width 1s ease;
        }
        
        /* Skills tags */
        .skills-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .skill-tag {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .skill-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
        }
        
        /* Expérience cards */
        .experience-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        .experience-card {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.75rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            transition: transform 0.3s, border-color 0.3s;
        }
        
        .experience-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
        }
        
        .experience-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            flex-shrink: 0;
        }
        
        .experience-content {
            flex: 1;
        }
        
        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .experience-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }
        
        .experience-company {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }
        
        .experience-date {
            background: rgba(236, 72, 153, 0.2);
            color: var(--accent);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .experience-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .experience-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .experience-tag {
            background: rgba(96, 165, 250, 0.2);
            color: var(--primary);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .experience-card {
                flex-direction: column;
                gap: 1rem;
            }
            .experience-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
          }
