body {
    background: linear-gradient(180deg, #f1ffeb 0%, #cdffc6 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}
*, ::before, ::after {
    box-sizing: border-box;
}

.navbar {
    background: linear-gradient(180deg, #e5f0e3 0%, #77a17228 100%);
    border-bottom: 1px solid #ffffffbd;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 0;
    text-align: right;
    font-family: 'Helvetica', Courier, sans-serif;
    position: fixed;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
}

.logo img {
    width: 50px;
    height: auto;
}

.navbar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: right;
}

.navbar li {
    margin-left: 20px;
    text-align: right;
}

.navbar a {
    text-decoration: none;
    color: white;
    mix-blend-mode: difference;
    text-align: right;
    font-weight: 600;
}

/* Section globale avec le fond dégradé jaune/jaune pâle */ 
.project-section { 
padding: 80px 20px; 
display: flex; 
flex-direction: column; 
align-items: center; 
width: 100%; 
}

/* En-tête avec badge noir et logo */ 
.project-header { 
text-align: center; 
margin-bottom: 40px; 
}

.project-header .badge { 
background: #ffee57; 
color: #fff; 
padding: 6px 16px; 
font-weight: bold; 
border-radius: 50px; 
text-transform: uppercase; 
font-size: 14px; 
}

.project-logo { 
display: block; 
max-width: 220px; 
margin: 25px auto 0 auto; 
}

.cards-container { 
display: flex; 
flex-direction: column; 
gap: 20px; 
width: 100%; 
max-width: 650px; 
}

.cards-container img {
    width: 50px;
    height: auto;
    margin-left: 0;
}

.info-card { 
background: #ffffff; 
border-radius: 35px; 
padding: 25px 30px; 
display: flex; 
align-items: center; 
gap: 20px; 
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
}

/* Typographie à l'intérieur des cartes */ 
.info-card h3 { 
margin: 0 0 8px 0; 
font-family: 'Helvetica', sans-serif; 
font-size: 24px; 
color: #000000; 
}

.info-card p { 
margin: 0; 
font-family: 'Helvetica', sans-serif; 
font-size: 16px; 
color: #333333; 
line-height: 1.4; 
}

/* Variantes de couleurs spécifiques (Ex: Morgann Music CP) */ 
.title-pink { 
color: #f38cb4 !important; 
}

.text-pink { 
color: #f38cb4 !important; 
}

/* Police stylisée pour la branche Game */ 
.title-tech { 
font-family: 'Courier New', Courier, monospace; 
font-weight: bold; 
letter-spacing: 1px; 
}