:root {
    --primary: #FFD700; /* Jaune Codabee */
    --dark: #0F172A;    /* Bleu Nuit */
    --light: #F8FAFC;
    --text-muted: #64748B;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    
}

.logo a {
    text-decoration: none;
    color: var(--light);
}


.logo span { color: var(--primary); }

span a {
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* Style du bouton Hamburger */
.menu-toggle {
    display: none; /* Caché par défaut */
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}



/* Boutons */
.btn-primary {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
}

.btn-outline {
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--primary); }

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Visuel Code (Glassmorphism) */
.hero-visual {
    position: relative;
}

.code-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 24px;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.keyword { color: #C678DD; }
.type { color: #61AFEF; }
.string { color: #98C379; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 5%;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Responsive */

/* --- AJOUTS BENTO & FOOTER --- */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 4rem 0;
}

.section-title span { color: var(--primary); }

.bento-container { padding: 2rem 5%; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(250px, auto);
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.3s ease-in-out;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.bento-icon {
    max-width: 70%;
    max-height: 50%;
    margin: auto;
    object-fit: cover;
}

.wide { grid-column: span 2; }
.tall { grid-row: span 2; }

.tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.btn-small, .btn-udemy {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    border-bottom: 2px solid var(--primary);
    width: fit-content;
}

.btn-tuto {
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 5px 12px;
    width: fit-content;
    border-radius: 8px;
}

/* Footer Style */
.main-footer {
    margin-top: 6rem;
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p { color: var(--text-muted); margin-top: 1rem; }
.footer-links h4 { margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}



.about-section {
    padding: 8rem 5%;
    /* Petit dégradé pour faire ressortir la section */
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* 2 colonnes asymétriques */
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    position: relative; /* Pour le badge flottant */
}

.image-wrapper {
    border: 2px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    background: var(--glass);
    transition: 0.4s ease-in-out; /* Animation douce */
}

.image-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(20%); /* Petit effet stylé */
}

/* Effet au survol : la photo s'anime et s'illumine */
.image-wrapper:hover {
    border-color: var(--primary);
    transform: rotate(-2deg); /* Petite rotation fun */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--dark);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.experience-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.experience-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
}

.about-content h2 {
    font-size: 2.8rem;
    margin: 1rem 0 2rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.9rem;
}

.bento {
        display: flex;
        flex-direction: column;
    }







.contact-section {
    padding: 5rem 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 4rem;
    border-radius: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.contact-info h2 span { color: var(--primary); }

.contact-details {
    margin-top: 3rem;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

/* Formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 2px; /* Épaisseur du trait */
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.logo-img {
    height: 32px;
    width: 32px;
    margin-right: 12px;
}

.resources-section {
    padding: 5rem 5%;
}

.resources-header {
    text-align: center;
    margin-bottom: 4rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-icon img {
    width: 30px;
    height: 30px;
}

.resource-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.resource-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.resource-card .arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    transition: 0.3s;
}

/* Effet au survol */
.resource-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.05);
}
.lesson-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.05);
}

.resource-card:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none; /* Caché par défaut */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: var(--dark);
    border: 1px solid var(--primary);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: modalShow 0.3s ease-out;
}

.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-content h3 span { color: var(--primary); }
.modal-content p { color: var(--text-muted); margin: 1.5rem 0 2rem; }



.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 0.5rem;
    gap: 1rem;
}

.buttons a {
    
    transition: all 0.3s;
}

.buttons a:hover {
    transform: translateX(5px);
}

.hero-btns {
    display: flex;
    gap: 1rem;
}


.hero-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    justify-content: center;
}

.focus-badge {
    color: var(--primary);
    font-weight: bold;
    transition: all 0.3s;
}

.focus-badge:hover {
    color: var(--light);
    transform: scale(1.2);
}

.method-section {
  padding: 100px 20px;
  background-color: var(--bg-dark);
}

.method-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.method-card {
  position: relative;
  background: var(--glass);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid #222;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.method-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: #161616;
}



.step-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.method-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.method-card p {
  color: #888;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}


/* Espacement introduction */
.text-secondary-highlight {
    margin-top: 1rem;
    color: var(--text-muted);
}

/* Grille d'évolution dans le bento */
.evolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0;
}

.evolution-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.evolution-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Récapitulative finale */
.recap-section {
    padding: 5rem 5%;
}

.recap-container {
    background: var(--glass);
    color: var(--light);
    padding: 4rem;
    border-radius: 40px;
}

.recap-info h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.lesson-links.inverse li {
    color: var(--light);
}

.recap-text {
    margin-top: 1.5rem;
    font-weight: 600;
}

.btn-next-lesson {
    display: inline-block;
    background: var(--dark);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 2rem;
}

.level-group {
    margin-bottom: 4rem;    
}

.level-box {
    margin: auto;
    min-width: 250px;
    max-width: 1000px;
}

.lesson-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

.lesson-card-container {
    display: flex;
    flex-direction: column;
    margin: auto;
}

.lesson-info {
    display: flex;
    gap: 1rem;
}

.lesson-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 0.5rem 2rem;
    margin-bottom: 0.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.group-title {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}


.lesson-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-muted {
    margin-bottom: 3rem;
}

/* --- SECTION HISTORIQUE (ADAPTÉE CODABEE) --- */
.history-section {
    padding: 8rem 5%;
    background-color: var(--dark); /* Utilisation de ton Bleu Nuit */
}

.history-content {
    max-width: 1100px;
    margin: 0 auto;
}

.history-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.history-content h1 span {
    color: var(--primary); /* Ton Jaune Codabee */
}

/* --- LA TIMELINE GLASSMORPHISM --- */
.evolution-timeline {
    position: relative;
    padding-left: 3rem;
    border-left: 1px solid var(--border); /* Ta bordure discrète */
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.evolution-card {
    position: relative;
    background: var(--glass); /* Ton effet Glass */
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 28px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Le point lumineux sur la ligne */
.evolution-card::before {
    content: "";
    position: absolute;
    left: -3.55rem; /* Centré sur la ligne */
    top: 2.5rem;
    width: 16px;
    height: 16px;
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 50%;
    z-index: 2;
    transition: 0.3s;
}

.evolution-card:hover {
    transform: translateX(15px);
    border-color: var(--primary);
}

.evolution-card:hover::before {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

/* CARTE FOCUS (HTML5) */
.evolution-card.highlight {
    background: rgba(255, 215, 0, 0.05); /* Teinte jaune légère */
    border-color: rgba(255, 215, 0, 0.2);
}

.evolution-card.highlight .year {
    color: var(--primary);
}

.evolution-card .year {
    font-family: 'JetBrains Mono', monospace; /* Comme ton code-card */
    font-weight: 800;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.evolution-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
}

.evolution-card p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 700px;
}

/* --- LE RECAP FINAL --- */
.text-secondary-highlight {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 24px;
    margin-top: 4rem;
}

.text-secondary-highlight strong {
    color: var(--primary);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
}



/* --- STYLE DU PLACEHOLDER DISTINCT (Vertical & Centré) --- */

/* 1. La Carte Principale (L'Enveloppe) */
.placeholder-vertical {
    display: flex;
    flex-direction: column; /* Alignement Vertical */
    align-items: center;    /* Centrage Horizontal */
    justify-content: center; /* Centrage Vertical */
    text-align: center;      /* Texte Centré */
    padding: 3rem 2rem;      /* Plus d'espace vertical */
    border-style: dashed;     /* Bordure en pointillés pour l'état intermédiaire */
    opacity: 0.8;             /* Légère transparence pour le "futur" */
    cursor: default;          /* Désactive le curseur de lien */
    position: relative;
    overflow: hidden;
    min-height: 280px;        /* S'assure d'une bonne présence dans la grille */
}

/* Désactive l'effet de translation au survol standard */
.placeholder-vertical:hover {
    transform: none;
    border-color: var(--border);
    background: var(--glass);
}

/* 2. Le Visuel Central avec Halo */
.resource-visual-centered {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem; /* Espace avec le texte */
}

/* L'effet de halo lumineux diffus */
.resource-visual-centered .halo {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(5px);
    animation: halo-pulse 3s infinite ease-in-out;
}

/* L'Icône Principale (Cadenas) */
.resource-visual-centered .main-icon {
    width: 40px;
    height: 40px;
    z-index: 1; /* Par-dessus le halo */
    position: relative;
}

/* 3. Les Informations Centrées */
.resource-info-centered h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.8rem;
}

.resource-info-centered p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px; /* Aligne le texte */
    margin: 0 auto 1.5rem;
}

/* 4. Le Badge d'État Intégré au Flux */
.status-badge-inline {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1); /* Jaune très transparent */
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary); /* Jaune Vif */
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Tablette / Mobile */
@media (max-width: 768px) {
  .method-section {
    padding: 60px 20px;
  }
  .method-steps {
    grid-template-columns: 1fr;
  }
}
    
/* Queries */

@media (max-width: 968px) {

    .level-box {
    margin: 2rem;
}

    .hero { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .hero p { 
        margin: 0 auto 2rem; 
    }
    
    .features { 
        grid-template-columns: 1fr; 
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Caché à droite */
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Classe activée par JS */
    .nav-links.active {
        right: 0;
    }

    /* Animation du Hamburger en "X" */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .wide, .tall { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; 
    }

        .buttons {
        flex-direction: row;
        gap: 2rem;
    }

    .bento {
        flex-direction: row;
    }
}


/* Version Mobile responsive */
@media (max-width: 850px) {
    .about-container {
        grid-template-columns: 1fr; /* Une seule colonne sur petit écran */
        text-align: center;
    }
    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    .about-stats {
        justify-content: center;
    }
    .experience-badge {
        right: -10px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }


}

/* Version Mobile responsive */
@media (max-width: 770px) {
    .buttons {
        flex-direction: row;
        gap: 2rem;
    }

    .bento {
        display: flex;
        flex-direction: column;
    }
}

/* Version Mobile responsive */
@media (max-width: 480px) {
    .buttons {
        flex-direction: column;
        gap: 2rem;
    }

    .bento-content {
        display: flex;
        flex-direction: column;
    }
}

@keyframes modalShow {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .history-content h1 { font-size: 2.5rem; }
    .evolution-timeline { padding-left: 1.5rem; }
    .evolution-card::before { left: -2.05rem; }
}

/* --- ANIMATIONS --- */

/* Animation de pulsation du halo lumineux */
@keyframes halo-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* On cible spécifiquement les balises HTML dans Prism */
.token.tag {
    text-transform: none !important;
}