@import url("https://fonts.googleapis.com/css2?family=Silkscreen&display=swap");

.scene-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
  position: relative;
}

.scene {
  position: relative;
  width: 96%;
  height: 900px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.mountains-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mountain {
  position: absolute;
  bottom: 0;
  transition: filter 0.3s ease;
}

.mountain:hover {
  filter: brightness(1.1);
}

.mountain1 {
  left: 10%;
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 280px solid #1a1f3a;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

.mountain1::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -110px;
  width: 0;
  height: 0;
  border-left: 110px solid transparent;
  border-right: 110px solid transparent;
  border-bottom: 265px solid rgba(255, 255, 255, 0.95);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.mountain1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -105px;
  width: 210px;
  height: 210px;
  background: repeating-radial-gradient(
    circle at 50% 100%,
    transparent 0px,
    transparent 12px,
    #1a1f3a 12px,
    #1a1f3a 24px
  );
  clip-path: ellipse(105px 105px at 50% 100%);
}

.mountain1-shadow {
  position: absolute;
  left: calc(10% - 80px);
  bottom: 120px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 100px solid rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.mountain1-ridge {
  position: absolute;
  left: calc(10% + 30px);
  bottom: 180px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 50px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.mountain2 {
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 400px solid #1a1f3a;
  z-index: 3;
  filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.7));
}

.mountain2::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -165px;
  width: 0;
  height: 0;
  border-left: 165px solid transparent;
  border-right: 165px solid transparent;
  border-bottom: 380px solid rgba(255, 255, 255, 0.95);
}

.mountain3 {
  right: 15%;
  width: 0;
  height: 0;
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 320px solid #1a1f3a;
  z-index: 2;
  filter: drop-shadow(0 5px 22px rgba(0, 0, 0, 0.6));
}

.mountain3::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -125px;
  width: 0;
  height: 0;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  border-bottom: 302px solid rgba(255, 255, 255, 0.95);
}

.mountain3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -115px;
  width: 230px;
  height: 160px;
  background: repeating-linear-gradient(
    -50deg,
    transparent 0px,
    transparent 10px,
    #1a1f3a 10px,
    #1a1f3a 20px
  );
  clip-path: ellipse(115px 80px at 50% 100%);
}

.ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #0a0e27, #2a2f4a, #0a0e27);
  z-index: 10;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.flag {
  position: absolute;
  cursor: pointer;
  z-index: 25;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flag:hover {
  transform: scale(1.08) translateY(-5px);
}

.flag:hover .flag-pole {
  background: linear-gradient(to bottom, #a0b4ff, #6b8aff);
}

.flag-pole {
  width: 3px;
  height: 100px;
  background: linear-gradient(to bottom, #9ca3af, #6b7280);
  position: relative;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
  transform: rotate(-15deg); /* Inclinaison du poteau */
  transform-origin: bottom; /* Point d'origine pour la transformation */
}

.flag1 .flag-pole {
  transform: rotate(-15deg); /* Inclinaison spécifique pour le flag1 */
}

.flag2 .flag-pole {
  transform: rotate(15deg); /* Inclinaison spécifique pour le flag2 */
}

.flag3 .flag-pole {
  transform: rotate(10deg); /* Inclinaison spécifique pour le flag3 */
}

.flag-content {
  position: absolute;
  top: 8px;
  left: 3px;
  min-width: 140px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.flag:hover .flag-content {
  background: rgba(107, 138, 255, 0.2);
  border-color: rgba(107, 138, 255, 0.4);
  box-shadow: 0 12px 32px rgba(107, 138, 255, 0.3);
}

.flag-content span {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.flag:hover .flag-content span {
  transform: translateX(4px);
}

.flag1 {
  bottom: 280px;
  left: calc(20% - 1.5px);
  animation: flagWave 3s ease-in-out infinite;
}

.flag2 {
  bottom: 400px;
  left: calc(50% - 1.5px);
  animation: flagWave 3s ease-in-out 1s infinite;
}

.flag3 {
  bottom: 320px;
  right: calc(27% + 1.5px);
  animation: flagWave 3s ease-in-out 2s infinite;
}

@keyframes flagWave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.info-box {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 340px;
  padding: 30px;
  background: rgba(26, 31, 58, 0.7);
  border-radius: 24px;
  color: white;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 30;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.info-box.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.info-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-box h2 {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #a0b4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: white;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.info-box p {
  line-height: 1.8;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 4s infinite ease-in-out;
}

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

.star:nth-child(1) {
  width: 2px;
  height: 2px;
  top: 8%;
  left: 12%;
  animation-delay: 0s;
}
.star:nth-child(2) {
  width: 3px;
  height: 3px;
  top: 15%;
  left: 78%;
  animation-delay: 0.7s;
}
.star:nth-child(3) {
  width: 2px;
  height: 2px;
  top: 12%;
  left: 42%;
  animation-delay: 1.4s;
}
.star:nth-child(4) {
  width: 2px;
  height: 2px;
  top: 25%;
  left: 88%;
  animation-delay: 2.1s;
}
.star:nth-child(5) {
  width: 3px;
  height: 3px;
  top: 20%;
  left: 22%;
  animation-delay: 2.8s;
}
.star:nth-child(6) {
  width: 2px;
  height: 2px;
  top: 18%;
  left: 55%;
  animation-delay: 3.5s;
}
.star:nth-child(7) {
  width: 2px;
  height: 2px;
  top: 10%;
  left: 65%;
  animation-delay: 1s;
}
.star:nth-child(8) {
  width: 3px;
  height: 3px;
  top: 22%;
  left: 35%;
  animation-delay: 1.8s;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  .header-subtitle {
    font-size: 18px;
  }
  .scene {
    height: 500px;
    border-radius: 20px;
  }
  .info-box {
    position: fixed;
    bottom: 20px;
    top: auto;
    right: 20px;
    left: 20px;
    width: auto;
    transform: translateY(30px);
  }
  .info-box.active {
    transform: translateY(0);
  }
}
:root {
  --primary: #0d1117;
  --secondary: #161b22;
  --accent: #21262d;
  --blue: #58a6ff;
  --green: #238636;
  --red: #f85149;
  --orange: #d29922;
  --purple: #a5a5ff;
  --white: #ffffff;
  --light-gray: #11151c;
  --gray: #656d76;
  --dark-gray: #24292f;
  --border: #d0d7de;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --bg-color: #1a1a1a;
  --card-bg-color: rgba(255, 255, 255, 0.1);
  --border-color: rgba(255, 255, 255, 0.2);
  --text-color: #f0f0f0;
  --primary-color: #007aff;
  --primary-light-color: #5ac8fa;
  --shadow-color: rgba(0, 0, 0, 0.2);

  --cyb-part-primary-color: #004d99;
  --cyb-part-secondary-color: #007bff;
  --cyb-part-background-start: #0f2027;
  --cyb-part-background-end: #203a43;
  --cyb-part-text-color: #e0e7ff;
  --cyb-part-glass-bg: rgba(255, 255, 255, 0.05);
  --cyb-part-glass-border: rgba(255, 255, 255, 0.1);
  --cyb-part-glass-shadow: rgba(0, 0, 0, 0.3);
}
:root {
  --bg-main: #0a0a0f;
  --bg-secondary: #111118;
  --panel: #1a1a24;
  --panel-light: #232330;
  --text-primary: #ffffff;
  --text-secondary: #a0a8c0;
  --text-muted: #6b7280;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-hover: #4f46e5;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.5);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;

  background-size: 200% 200%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Silkscreen", monospace;
}

body {
  font-family: "Silkscreen", monospace;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(1, 33, 66, 0.2),
      transparent 40%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 80, 200, 0.15), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 100, 255, 0.25), transparent 60%),
    linear-gradient(to bottom right, #141414, #03093a);
  background-size: 200% 200%;
  color: var(--dark-gray);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(
    circle at 20% 20%,
    #1a1a2e 0%,
    var(--bg-main) 50%
  );
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 3rem 0;
  position: relative;
  border-bottom: 1px solid var(--accent);
}

.header-icon img {
  max-width: 110%;
  max-height: 110%;
  display: block;
  border-radius: 10%;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.container {
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.header-info {
  flex: 1;
  min-width: 300px;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Silkscreen", monospace;
}

.header-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.header-subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  color: white;
  font-weight: 500;
}

.header-description {
  font-size: 1rem;
  opacity: 0.7;
  line-height: 1.6;
  color: white;
  text-align: justify;
  hyphens: auto;
}

.team-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 280px;
}

.team-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 1;
  margin-bottom: 1rem;
  font-family: "Silkscreen", monospace;
}

.team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.team-stat {
  text-align: center;
}

.team-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  background-color: #00000070;
  border-radius: 5px;
  border-color: white;
}

.team-stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.main-content {
  padding: 3rem 0;
}

.section {
  margin-bottom: 4rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Silkscreen", monospace;
}

.section-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.WolfDefansy-icon {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.youtube-icon {
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.contribute-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.contribute-btn:hover {
  background: #2ea043;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  background: rgba(5, 3, 33, 0.95);
  position: relative;
  z-index: 2000;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.navlinks {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.navlinks:hover {
  color: var(--blue);
}

/* ===== HAMBURGER ===== */

/* Animation croix */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== STYLE AMÉLIORÉ HAMBURGER ===== */
.hamburger {
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 3001;
  color: white;
  margin-top: 3%;
  display: none;
  /* caché par défaut */
}

/* ===== RESPONSIVE ===== */
/* Styles par défaut */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 1000;
  /* par défaut sous le hamburger */
  transition: none;
  /* transition désactivée hors mobile */
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-date {
  color: #aaa;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ======= Responsive (menu hamburger) ======= */
@media (max-width: 768px) {
  /* Hamburger visible et fixe en haut à gauche */
  .hamburger {
    display: flex;
    position: fixed;
    top: 0px;
    left: 20px;
    z-index: 4000;
    /* au-dessus de tout */
    background-color: #06080f71;
    border-radius: 5px;
  }

  .header-icon {
    display: none;
  }

  /* Menu nav caché hors écran à droite */
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    /* caché hors écran */
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(5, 3, 33, 0.98);
    width: 280px;
    height: 100%;
    padding: 80px 20px 20px;
    gap: 20px;
    box-sizing: border-box;
    transition: right 0.4s ease;
    z-index: 3500;
    /* en-dessous hamburger */
    display: flex;
  }

  /* Menu ouvert : glisse dans l'écran, au-dessus */
  .nav-links.active {
    right: 0;
    z-index: 4500;
    /* au-dessus du hamburger et autres */
  }

  /* Masquer logo dans menu mobile si besoin */
  .nav-logo {
    display: none;
  }

  .header-description {
    display: none;
  }
  .responsive_container2 {
    display: none;
  }

  .header-subtitle {
    text-align: left;
  }
}

.active-page {
  display: block;
}

.contact-form {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid black;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background: #488ae6;
  transform: translateY(-2px);
}

.cyb-part-body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    135deg,
    var(--cyb-part-background-start),
    var(--cyb-part-background-end),
    var(--cyb-part-primary-color)
  );
  background-size: 400% 400%;
  animation: cyb-part-gradient-animation 15s ease infinite;
  color: var(--cyb-part-text-color);
  line-height: 1.8;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Animation du dégradé */
@keyframes cyb-part-gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Conteneur principal */
.cyb-part-container {
  width: 98%;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
  color: white;
}

/* En-tête de section */
.cyb-part-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.cyb-part-section-header-title {
  font-size: 3.5em;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cyb-part-section-header-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Cartes à effet "liquid glass" */
.cyb-part-glass-card {
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  background-color: var(--cyb-part-glass-bg);
  border-radius: 15px;
  border: 1px solid var(--cyb-part-glass-border);
  box-shadow: 0 8px 32px 0 var(--cyb-part-glass-shadow);
  padding: 30px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cyb-part-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

/* Titres des cartes */
.cyb-part-card-title {
  font-size: 2em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--cyb-part-secondary-color);
}

.cyb-part-card-subtitle {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--cyb-part-secondary-color);
}

/* Listes à puces */
.cyb-part-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cyb-part-list-item {
  padding-left: 2em;
  position: relative;
  margin-bottom: 15px;
}

.cyb-part-list-item::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

/* Bouton d'appel à l'action */
.cyb-part-cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: var(--cyb-part-secondary-color);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.cyb-part-cta-button:hover {
  background: #0056b3;
  transform: translateY(-3px) scale(1.05);
}

/* Grille des programmes de partenariat */
.cyb-part-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Styles pour les écrans plus petits */
@media (max-width: 768px) {
  .cyb-part-section-header-title {
    font-size: 2.5em;
  }

  .cyb-part-section-header-description {
    font-size: 1em;
  }

  .cyb-part-card-title {
    font-size: 1.8em;
  }

  .cyb-part-glass-card {
    padding: 25px;
  }
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.video-platform {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-WolfDefansy {
  background: rgba(165, 165, 255, 0.1);
  color: var(--purple);
  border: 1px solid rgba(165, 165, 255, 0.2);
}

.platform-youtube {
  background: rgba(248, 81, 73, 0.1);
  color: var(--red);
  border: 1px solid rgba(248, 81, 73, 0.2);
}

.video-duration {
  background: var(--light-gray);
  color: var(--gray);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.video-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-family: "Silkscreen", monospace;
}

.video-description {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}

.video-footer {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light-gray);
}

.video-tech {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-tag {
  background: white;
  color: var(--dark-gray);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.watch-btn {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.watch-btn:hover {
  color: var(--purple);
  transform: translateX(2px);
}

.empty-state {
  background: white;
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: var(--gray);
  transition: all 0.3s ease;
}

.empty-state:hover {
  border-color: var(--blue);
  background: rgba(88, 166, 255, 0.05);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .team-info {
    width: 100%;
  }
}

.cursus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.cursus-card {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  color: #fff;
  text-decoration: none;
  display: block;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.cursus-card:nth-child(1) {
  animation-delay: 0.4s;
}

.cursus-card:nth-child(2) {
  animation-delay: 0.6s;
}

.cursus-card:nth-child(3) {
  animation-delay: 0.8s;
}

.cursus-card:nth-child(4) {
  animation-delay: 1s;
}

.cursus-card:nth-child(5) {
  animation-delay: 1.2s;
}

.cursus-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.cursus-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cursus-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  .cursus-card {
    flex: 1 1 100%;
  }
}

@import "https://fonts.googleapis.com/css?family=Lato:300";

.wrapper {
  width: 100%;
  margin-left: 10%;
  height: 400px;
  /* Hauteur fixe, tu peux ajuster ou utiliser 'auto' si besoin */
  display: flex;
  overflow: hidden;
  margin: 2rem auto;
  /* Centre le bloc si contenu dans une page */
  border-radius: 20px;
}

.wrapper section {
  flex: 1;
  height: 100%;
  filter: grayscale(50%);
  transition: flex 0.5s ease, filter 0.5s ease;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.wrapper section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.4s;
}

.wrapper section.sec01 {
  background-image: url(" /pictures/part1.png");
  pointer-events: none;
  border-top-left-radius: 5%;
}

.wrapper section.sec02 {
  background-image: url(" /pictures/image.png");
}

.wrapper section.sec03 {
  background-image: url(" /pictures/part2.png");
  pointer-events: none;
  border-top-right-radius: 5%;
}

.wrapper:hover section:hover {
  flex: 1.5;
  filter: grayscale(0%);
}

.wrapper:hover section:hover::before {
  opacity: 0;
}

.wrapper:hover section:not(:hover) {
  flex: 1;
}

.alternative {
  display: inline-block;
  margin-top: 15vh;
  height: 60%;
  margin-left: 50%;
  position: absolute;
  width: 90%;
  transform: translate(-50%, -50%);
  font-family: "Lato", Arial, sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 2.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.796);
  padding: 0.6em 1em;
  border-radius: 30px;
}

.alternative a {
  margin-top: 15px;
  font-size: 1.2rem;
  display: block;
  padding: 0.6em 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition-duration: 0.3s;
}

.alternative a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .wrapper section.sec01 {
    display: none;
  }

  .wrapper section.sec03 {
    display: none;
  }

  .wrapper section.sec02 {
    border-radius: 20px;
  }
}

.text-plane {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  /* masque l'effet à l'intérieur */
  color: white;
  margin-top: 10%;
  margin-bottom: 10%;
  background-color: #05031682;
}

.grid-container {
  --grid: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 100rem;
  animation: rotate 100s linear infinite forwards;
  z-index: 0;
}

.plane {
  --dir: 1;
  width: 300%;
  height: 150%;
  min-height: 70rem;
  position: absolute;
  bottom: 0;
  transform-style: preserve-3d;
  transform-origin: bottom center;
  transform: translateX(-50%) rotateX(85deg);
}

.plane:last-child {
  --dir: -1;
  top: 0;
  transform-origin: top center;
  transform: translateX(-50%) rotateX(-85deg);
}

.plane:last-child > *::after {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.574),
    rgba(0, 0, 0, 0)
  );
}

.plane > * {
  transform-style: preserve-3d;
  height: 100%;
  width: 100%;
  position: absolute;
}

.plane > *::before,
.plane > *::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.plane > *::before {
  background-image: repeating-linear-gradient(
      to left,
      #0033cc,
      #0033cc 4px,
      transparent 4px,
      transparent var(--grid)
    ),
    repeating-linear-gradient(
      to bottom,
      #0033cc,
      #0033cc 4px,
      transparent 4px,
      transparent var(--grid)
    );
  animation: move 1s linear infinite forwards;
}

.plane > *::after {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
  transform: translateZ(1px);
}

.glow {
  filter: blur(1rem);
  z-index: 1;
  mix-blend-mode: plus-lighter;
}

@keyframes move {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(calc(var(--grid) * var(--dir)));
  }
}

.recrut-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}

ul {
  padding-left: 1.5rem;
}

section {
  margin-top: 1.5rem;
}

.tl-container-unique {
  width: 96%;
  margin-left: 2%;
}

/* Titre principal avec vidéo en fond */
.title_aplying {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: rgb(255, 255, 255);
  text-align: center;
  border-radius: 10px;
  padding-top: 25%;
  padding-bottom: 25%;
  overflow: hidden;
  /* Permet de ne pas faire déborder le contenu */
  margin-top: 5%;
  position: relative;
  /* Nécessaire pour positionner le contenu par-dessus */
}

/* Section vidéo */
.video-background {
  position: absolute;
  /* Positionne la vidéo en arrière-plan */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Prend 100% de la hauteur du conteneur parent */
}

/* Propriétés vidéo */
.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Assure que la vidéo couvre tout le conteneur sans déformation */
}

/* Contenu au-dessus de la vidéo */
.content {
  position: relative;
  z-index: 1;
  /* Permet de superposer le contenu au-dessus de la vidéo */
  color: white;
  margin-top: 20%;
  text-align: center;
}

.separation {
  width: 80%;
  margin-left: 10%;
}

/* ===== Timeline ===== */
.timeline-section {
  width: 100%;
  /* hauteur fixe nécessaire */
  margin: 0 auto;
  text-align: center;
  overflow-y: auto;
  scrollbar-width: none;
  /* masquer scrollbar Firefox */
  margin-top: 5%;
  border-radius: 20px;
  background-color: #00000059;
  box-shadow: 0 0 80px #00f, /* Éclat très large et diffus */ #4a1e3a;
  box-shadow: 0 4px 15px rgba(29, 20, 151, 0.5);
}

.timeline-section::-webkit-scrollbar {
  display: none;
  /* masquer scrollbar Chrome/Safari */
}

.timeline-title {
  font-size: 2.5rem;
  color: var(--accent);
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.timeline-card {
  flex: 1 1 200px;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  backdrop-filter: blur(4px);
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0.25%;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.timeline-card:hover {
  background-color: rgba(255, 255, 255, 0.63);
  color: black;
}

.timeline-card.visible {
  opacity: 1;
  transform: translateY(0);
  border: none;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background-color: blue;
  color: var(--bg);
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.timeline-content p {
  opacity: 0.8;
  font-size: 1rem;
}

/* Responsive timeline */
@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-card {
    padding: none;
  }

  .timeline-section {
    background-color: #00000000;
    height: 50vh;
    margin-top: 26%;
  }

  .plane {
    display: none;
  }

  .video_live {
    display: none;
  }

  .video-background {
    background-image: url(" /pictures/part1.png");
    background-size: cover;
    background-position: center + 25%;
    /* Centre horizontalement, colle en haut */
    filter: grayscale(50%);
  }

  .video-background h1 {
    font-size: 1.5rem;

    margin-top: -10%;
    background-color: rgba(0, 0, 0, 0.596);
    width: 90%;
    margin-left: 5%;
    padding-bottom: 10%;
    padding-top: 10%;
  }
}

/* ===== Containers uniques ===== */

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header responsive */

/* ===== Roulette container ===== */
#roulette-select-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0000008c;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  z-index: 1000;
  /* Assure que le conteneur est au-dessus des autres éléments */
}

#roulette-select-container .rs-sentence {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

#roulette-select-container .rs-roulette {
  position: relative;
  height: 150px;
  width: 250px;
  overflow: hidden;
  text-align: center;
}

#roulette-select-container .rs-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease-out;
}

#roulette-select-container .rs-option {
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  opacity: 0.4;
  filter: blur(2px);
  cursor: pointer;
}

#roulette-select-container .rs-option.active {
  font-size: 1.6rem;
  opacity: 1;
  filter: blur(0);
}

/* repère visuel */
#roulette-select-container .rs-roulette::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50px;
  margin-top: -25px;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  pointer-events: none;
}

/* bouton */
#roulette-select-container .rs-btn {
  padding: 10px 20px;
  background: #222;
  color: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

#roulette-select-container .rs-btn:hover:enabled {
  background: #444;
  transform: translateY(-2px);
}

#roulette-select-container .rs-btn:disabled {
  background: #333;
  color: #777;
  border-color: #444;
  cursor: not-allowed;
}

@media (max-width: 800px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .rs-sentence {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

#roulette-select-container {
  background-color: #0000006b;
  width: 80%;
  margin-left: 10%;
  overflow: visible;
  margin-right: 5%;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.video-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.video-platform {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-WolfDefansy {
  background: rgba(165, 165, 255, 0.1);
  color: var(--purple);
  border: 1px solid rgba(165, 165, 255, 0.2);
}

.platform-youtube {
  background: rgba(248, 81, 73, 0.1);
  color: var(--red);
  border: 1px solid rgba(248, 81, 73, 0.2);
}

.video-duration {
  background: var(--light-gray);
  color: var(--gray);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.video-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-family: "Silkscreen", monospace;
}

.video-description {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}

.video-footer {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light-gray);
}

.video-tech {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-tag {
  background: white;
  color: var(--dark-gray);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.watch-btn {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.watch-btn:hover {
  color: var(--purple);
  transform: translateX(2px);
}

.empty-state {
  background: white;
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: var(--gray);
  transition: all 0.3s ease;
}

.empty-state:hover {
  border-color: var(--blue);
  background: rgba(88, 166, 255, 0.05);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.videos-grid {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .team-info {
    width: 100%;
  }
}

.hamburger span {
  height: 3px;
  padding-top: 30%;
  width: 100%;
  background-color: white;
  border-radius: 4px;
  /* arrondis modernes */
  transition: all 0.3s ease;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  /* léger relief */
}

/* Effet au survol */
.hamburger:hover span {
  background-color: var(--blue);
  /* ta couleur accent */
}

/* Animation croix (déjà gérée) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.site-footer {
  z-index: 999;
  position: relative;
  background-color: #111;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
  bottom: -10%;
  margin-top: 15%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  bottom: 0%;
}

.footer-logo-img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-links {
  margin: 15px 0;
}

.footer-link {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.9em;
  color: #888;
  margin-top: 10px;
}

.logo-img {
  height: 40px;
  border-radius: 5px;
}

.main-title {
  color: white;
}

@media (min-width: 769px) {
  .nav-links {
    position: fixed;
    backdrop-filter: blur(10px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 100%;
  }

  .header {
    margin-top: 3%;
  }
}

.align {
  text-align: justify;
}

.wolde-welcome-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wolde-welcome-card {
  width: 100%;
  background: rgba(30, 58, 138, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: -15%;
}

.wolde-welcome-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.wolde-logo-section {
  flex-shrink: 0;
}

.wolde-logo-placeholder {
  width: 120px;
  height: 120px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.wolde-logo-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.wolde-logo-text {
  font-size: 10px;
  font-weight: 700;
  color: #374151;
  text-align: center;
  line-height: 1.2;
}

.wolde-logo-subtext {
  font-size: 8px;
  color: #6b7280;
  text-align: center;
  margin-top: 2px;
}

.wolde-text-section {
  flex: 1;
}

.wolde-title {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-family: "Silkscreen", monospace;
}

.wolde-description {
  color: white;
  font-size: 14px;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.wolde-button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wolde-btn {
  padding: 12px 24px;
  background: #111827;
  color: white;
  border: 1px solid #374151;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.wolde-btn:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wolde-btn:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .wolde-welcome-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wolde-button-group {
    flex-direction: column;
    width: 100%;
  }

  .wolde-btn {
    width: 100%;
  }
}

:root {
  --bg-main: #0a0a0f;
  --bg-secondary: #111118;
  --panel: #1a1a24;
  --panel-light: #232330;
  --text-primary: #ffffff;
  --text-secondary: #a0a8c0;
  --text-muted: #6b7280;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-hover: #4f46e5;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(
    circle at 20% 20%,
    #1a1a2e 0%,
    var(--bg-main) 50%
  );
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-container {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(10, 4, 46, 0.397);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  flex-shrink: 0;
}

.header-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-badge {
  padding: 6px 14px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.content-wrapper {
  flex: 1;
  display: flex;
  gap: 24px;
  min-height: 0;
  overflow: hidden;
}

.left-panel {
  flex: 1;
  background: rgba(18, 4, 98, 0.185);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  border-radius: 20px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.left-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(99, 102, 241, 0.1),
    transparent
  );
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.left-panel-content {
  position: relative;
  z-index: 1;
}

.left-panel h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #a0a8c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  font-family: "Silkscreen", monospace;
}

.left-panel p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 400;
}

.right-column-container {
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  overflow: hidden;
}

.dropdown-container {
  background: rgba(18, 4, 98, 0.185);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.dropdown-container label {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hgh {
  background-color: rgba(23, 3, 80, 0.774);
}

.professional-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.professional-select:hover {
  border-color: var(--accent-primary);
  background: rgba(18, 4, 98, 0.185);
}

.professional-select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: rgba(18, 4, 98, 0.185);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.right-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}

.right-panel-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--glass-bg), transparent);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-item:hover {
  transform: translateX(4px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.news-item:hover::before {
  opacity: 1;
}

.news-item.active {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border-color: var(--accent-primary);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.news-item.active::before {
  opacity: 1;
}

.news-content {
  flex: 1;
  min-width: 0;
}

.news-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-family: "VT323", monospace;
}

.news-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.news-date {
  min-width: 70px;
  background: rgba(18, 4, 98, 0.185);
  color: white;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}

.news-date small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 2px;
  font-weight: 600;
}

.news-more-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
  margin-top: 8px;
}

.count-badge {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.indicator-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.scroll-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-scroll-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 8px;
}

.news-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.news-mini:hover {
  background: var(--glass-bg);
  transform: translateX(2px);
}

.news-mini.active {
  background: rgba(18, 4, 98, 0.185);
}

.mini-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.mini-date {
  font-size: 0.8rem;
  color: var(--accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.right-panel-inner::-webkit-scrollbar {
  width: 6px;
}

.right-panel-inner::-webkit-scrollbar-thumb {
  background: rgba(18, 4, 98, 0.185);
  border-radius: 10px;
}

.right-panel-inner::-webkit-scrollbar-track {
  background: transparent;
}

.left-panel::-webkit-scrollbar {
  width: 6px;
}

.left-panel::-webkit-scrollbar-thumb {
  background: rgba(18, 4, 98, 0.185);
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
  }

  .right-column-container {
    width: 100%;
  }

  .left-panel {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 16px;
    gap: 16px;
  }

  .left-panel h1 {
    font-size: 2rem;
  }
}

#background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#grid-container {
  display: flex;
  transform-origin: center center;
  /* AJUSTER LA TAILLE ICI : 1 = 100%, 0.5 = 50%, etc. */
  transform: scale(0.5);
}

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

.cell {
  width: 100px;
  height: 100px;
  margin: 1px;
  border-radius: 1px;
  background: transparent;
}

.cell.filled {
  /* CHANGER LA COULEUR ICI */
  background: #062179;
}

/* Rotation pour mobile (portrait) */
@media (max-width: 768px) and (orientation: portrait) {
  #grid-container {
    transform: rotate(90deg) scale(0.6);
  }
}

/* Ajustement de la taille pour petits écrans */
@media (max-width: 768px) {
  .cell {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .cell {
    width: 30px;
    height: 30px;
  }
}

.partners-container {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 80px #00f, /* Éclat très large et diffus */ #4a1e3a;
  box-shadow: 0 4px 15px rgba(57, 47, 197, 0.3);
}

.scroll-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.scroll-right {
  animation: scrollRight 30s linear infinite;
}

.scroll-left {
  animation: scrollLeft 30s linear infinite;
}

.partner-card {
  min-width: 200px;
  height: 120px;
  background: #07034433;
  border: 1px solid #3d5a80;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(61, 90, 128, 0.4);
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 8 - 160px));
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(calc(-200px * 8 - 160px));
  }
  100% {
    transform: translateX(0);
  }
}

.scroll-row:hover {
  animation-play-state: paused;
}

.title {
  text-align: center;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Section "Devenir partenaire" */
.become-partner-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #aaa;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.grid-card {
  border: 1px solid #3d5a80;
  border-radius: 16px;
  padding: 30px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 90, 128, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(61, 90, 128, 0.3);
  border-color: #5a7fa8;
}

.grid-card:hover::before {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-logo {
  color: #5a7fa8;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-description {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-arrow {
  color: #5a7fa8;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.grid-card:hover .card-arrow {
  transform: translateX(5px);
}

.center-card {
  border: 2px solid #5a7fa8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.center-card-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* Nouvelle section "Nos Partenariats Stratégiques" */
.partnership-details {
  padding: 80px 0;
}

.partnership-categories {
  margin-top: 50px;
}

.partnership-category {
  margin-bottom: 60px;
}

.partnership-category h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.partnership-category h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;

  border-radius: 2px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.partner-detail-card {
  border: 1px solid #3d5a80;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.partner-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(12, 62, 128, 0.404);
}

.partner-logo {
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-info h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.partner-type {
  color: #5a7fa8;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.partner-description {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.partnership-benefits {
  border-radius: 8px;
  padding: 15px;
  overflow-x: auto;
}

.partnership-benefits h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.partnership-benefits ul {
  list-style: none;
  padding-left: 0;
}

.partnership-benefits ul li {
  color: #e0e0e0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.partnership-benefits ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #5a7fa8;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partnership-details {
    width: 110%;
    margin-left: -5%;
  }
}

/* Styles pour les nouveaux éléments */
.partnership-tabs {
  padding: 60px 0;
}

.tabs-wrapper {
  width: 100%;

  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #3d5a80;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab-btn.active {
  background: #3d5a80;
  color: #fff;
  box-shadow: 0 0 80px #00f, /* Éclat très large et diffus */ #4a1e3a;
  box-shadow: 0 4px 15px rgba(57, 47, 197, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.partner-card-detailed {
  background: rgba(18, 4, 98, 0.185);
  border: 1px solid #3d5a80;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  width: 100%;
}

.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.partnership-duration {
  color: #5a7fa8;
  font-size: 14px;
}

.exchange-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  overflow-x: auto;
}

.we-provide,
.we-receive {
  background: rgba(61, 90, 128, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(61, 90, 128, 0.2);
}

.we-provide h4,
.we-receive h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.we-provide ul,
.we-receive ul {
  list-style: none;
  padding: 0;
}

.we-provide li,
.we-receive li {
  color: #e0e0e0;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.we-provide li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #5a7fa8;
}

.we-receive li:before {
  content: "←";
  position: absolute;
  left: 0;
  color: #5a7fa8;
}

.partnership-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #3d5a80;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #3d5a80;
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(61, 90, 128, 0.3);
}

/* Améliorations UI */
body {
  background: linear-gradient(180deg, #060718 0%, #0b1220 100%);
  font-family: "Inter", "Arial", sans-serif;
  color: #e6eef8;
  -webkit-font-smoothing: antialiased;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: 40px;
}

.header h1 {
  color: #ffffff;
  font-size: 36px;
  margin: 0 0 10px 0;
}

.header-subtitle {
  color: #ffffff;
  margin-bottom: 18px;
}

/* Tabs */
.tabs-header {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #dcecff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.18s ease;
  min-width: 140px;
  text-align: center;
}

.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(29, 78, 169, 0.12);
}

.tab-btn.active {
  background: linear-gradient(90deg, #2e4b7a, #3d6aa8);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 8px 28px rgba(29, 78, 169, 0.18);
}

.tab-content {
  display: none;
  animation: fadeIn 220ms ease both;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-card-detailed {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 22px;
}

.partner-header {
  align-items: center;
  gap: 16px;
}

.partner-logo img {
  height: 64px;
  width: auto;
}

.partnership-duration {
  color: #9fb4d6;
  font-size: 13px;
}

.exchange-benefits {
  gap: 22px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
}

/* Accessibility focus */
.tab-btn:focus {
  outline: 3px solid rgba(61, 90, 128, 0.16);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .exchange-benefits {
    grid-template-columns: 1fr;
  }
}

.oteria-widget {
  width: 100%;
  background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 50%, #4a1e3a 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

/* === IMAGE DE FOND AVEC DÉGRADÉ === */
.oteria-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.oteria-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.oteria-background-image.active {
  opacity: 1;
}

.oteria-background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 40%,
    rgba(26, 26, 46, 0.3) 60%,
    rgba(26, 26, 46, 0.7) 80%,
    #1a1a2e 100%
  );
  z-index: 2;
}

.oteria-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  gap: 30px;
  position: relative;
  z-index: 3;
}

/* === SECTION GAUCHE === */
.oteria-left-section {
  flex: 1;
  z-index: 2;
}

.oteria-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.oteria-visit-btn {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: #ffffff;
  border: none;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.oteria-visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
  background: linear-gradient(135deg, #f50057 0%, #e91e63 100%);
}

.oteria-visit-btn:active {
  transform: translateY(0);
}

/* === NAVIGATION === */
.oteria-nav-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.oteria-nav-btn {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.oteria-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.oteria-nav-dots {
  display: flex;
  gap: 10px;
}

.oteria-nav-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.oteria-nav-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.oteria-nav-dot.active {
  background: #e91e63;
  border-color: #e91e63;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.6);
  transform: scale(1.3);
}

/* === SECTION CENTRALE (LOGO) === */
.oteria-center-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oteria-logo-wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  animation: oteraFloat 3s ease-in-out infinite;
}

@keyframes oteraFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.oteria-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(233, 30, 99, 0.4));
}

/* === SECTION DROITE (ÉVÉNEMENTS) === */
.oteria-right-section {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.oteria-events-header {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(233, 30, 99, 0.5);
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === ÉVÉNEMENTS === */
.oteria-event {
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.5s ease;
  border: 2px solid transparent;
}

.oteria-event:hover {
  background: rgba(233, 30, 99, 0.1);
}

.oteria-event.active {
  background: rgba(233, 30, 99, 0.15);
  border: 2px solid #e91e63;
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
  transform: scale(1.02);
}

.oteria-event-info {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.oteria-event-name {
  font-weight: 500;
  flex: 1;
}

.oteria-event-date {
  color: #e91e63;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.oteria-event.active .oteria-event-name {
  font-weight: 700;
  color: #ffffff;
}

.oteria-event.active .oteria-event-date {
  color: #ff1744;
  font-weight: 700;
}

/* === BARRES DE PROGRESSION === */
.oteria-progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.oteria-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e91e63 0%, #ff1744 100%);
  border-radius: 10px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
  position: relative;
}

.oteria-event.active .oteria-progress-bar {
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.8);
}

.oteria-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: oteraShimmer 2s infinite;
}

@keyframes oteraShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* === RESPONSIVE === */
/* Tablettes et petits écrans */
@media (max-width: 900px) {
  .oteria-widget {
    width: 85%;
    margin-left: 7.5%;
  }

  .oteria-background-container {
    width: 100%;
    opacity: 0.3;
  }

  .oteria-banner {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .oteria-main-title {
    font-size: 2rem;
    text-align: center;
  }

  .oteria-visit-btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .oteria-nav-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .oteria-logo-wrapper {
    width: 150px;
    height: 150px;
  }

  .oteria-right-section {
    width: 100%;
  }

  .oteria-event-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .oteria-event-date {
    font-size: 0.85rem;
  }

  .exchange-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobiles en mode paysage et petites tablettes */
@media (max-width: 640px) {
  .oteria-widget {
    width: 92%;
    margin-left: 4%;
  }

  .oteria-banner {
    padding: 25px 15px;
  }

  .oteria-main-title {
    font-size: 1.75rem;
  }

  .oteria-logo-wrapper {
    width: 120px;
    height: 120px;
  }

  .oteria-event-date {
    font-size: 0.8rem;
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .oteria-widget {
    width: 95%;
    margin-left: 2.5%;
  }

  .oteria-banner {
    padding: 20px 12px;
  }

  .oteria-main-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .oteria-logo-wrapper {
    width: 100px;
    height: 100px;
  }

  .oteria-visit-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .oteria-event-date {
    font-size: 0.75rem;
  }

  .exchange-benefits {
    gap: 10px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .oteria-widget {
    width: 98%;
    margin-left: 1%;
  }

  .oteria-main-title {
    font-size: 1.3rem;
  }

  .oteria-logo-wrapper {
    width: 80px;
    height: 80px;
  }

  .oteria-banner {
    padding: 15px 10px;
  }
}

.page-wrapper {
  background: rgba(18, 4, 98, 0.185);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
}


.stronger{
  background-color: #ff0000;
}