body {
   background: url("/images/xena.webp") no-repeat center center fixed;
   background-size: cover;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.overlay {
   background-color: rgba(255, 192, 203, 0.35);
   position: fixed;
   top: 0; left: 0;
   width: 100%; height: 100%;
   z-index: 0;
}
.content {
   position: relative;
   z-index: 1;
   padding: 2rem;
}
.topic {
   background: rgba(255, 255, 255, 0.4);
   border-radius: 12px;
   padding: 0.8rem 1rem;
   text-align: center;
   font-weight: bold;
   /*color: #c05590;*/
   color: #ffffff;
   margin-bottom: 2rem;
   box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.card {
   border-radius: 20px;
   box-shadow: 0 8px 25px rgba(0,0,0,0.25);
   backdrop-filter: blur(8px);
   background: rgba(255,255,255,0.4);
}
.card-header {
   background: #e88fb4;
   color: white;
   border-top-left-radius: 20px;
   border-top-right-radius: 20px;
   text-align: center;
   font-size: 1.5rem;
}
.btn-girly {
   background-color: #d86ba5;
   color: white;
}
.btn-girly:hover {
   background-color: #c05590;
   color: white;
}
.stats {
   background: rgba(255,255,255,0.85);
   border-radius: 15px;
   padding: 1rem;
   box-shadow: 0 4px 15px rgba(0,0,0,0.2);
   margin-top: 2rem;
   text-align: center;
}
a {
   color: #FF6F91; /* rose doux, girly */
   text-decoration: none;
   transition: all 0.3s ease;
}
a:hover {
   color: #FF3F6C; /* rose plus vif au survol */
   text-decoration: underline;
}
.presentation-block {
   background-color: rgba(255, 255, 255, 0.4);
   border-radius: 15px;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   color: #333;
}

.presentation-block h3 {
   /*   background-color: rgba(255, 255, 255, 0.5); */
   /*color: #FF6F91; /* rose doux pour le titre */
   color: #c05590;
   margin-bottom: 15px;
}

.presentation-block p {
   font-size: 1rem;
   line-height: 1.5;
}
