.elementor-9070101 .elementor-element.elementor-element-5aa2305:not(.elementor-motion-effects-element-type-background), .elementor-9070101 .elementor-element.elementor-element-5aa2305 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-9070101 .elementor-element.elementor-element-5aa2305{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-9070101 .elementor-element.elementor-element-5aa2305 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-9070101 .elementor-element.elementor-element-8bfcbc1:not(.elementor-motion-effects-element-type-background), .elementor-9070101 .elementor-element.elementor-element-8bfcbc1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-9070101 .elementor-element.elementor-element-8bfcbc1{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-9070101 .elementor-element.elementor-element-8bfcbc1 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-9070101 .elementor-element.elementor-element-53a1f27{width:100%;flex-grow:0;}@media(max-width:1024px){.elementor-9070101 .elementor-element.elementor-element-7c74201{width:100%;}.elementor-9070101 .elementor-element.elementor-element-53a1f27{width:100%;}}@media(max-width:767px){.elementor-9070101 .elementor-element.elementor-element-98c3c89 > .elementor-column-wrap > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial, .elementor-widget__width-calc):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-9070101 .elementor-element.elementor-element-e60139c > .elementor-column-wrap > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial, .elementor-widget__width-calc):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}}/* Start custom CSS for html, class: .elementor-element-7c74201 *//* -------------------- */
/* HERO SECTION (vidéo) */
/* -------------------- */
.nobrain-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nobrain-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.95));
  z-index: 2;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay.minimal.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.minimal-title {
  font-family: 'Racing', sans-serif;
  color: #ffffff;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: none;
}

.hero-categories-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.category-bubble {
  position: relative;
  min-width: 140px;
  height: 80px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.category-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s ease;
}

.category-bubble span {
  position: relative;
  z-index: 2;
  font-family: 'Racing', sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 0.95rem;
  text-shadow: none;
}

.category-bubble:hover::before {
  background: rgba(255, 255, 255, 0.6);
}

.category-bubble:hover span {
  color: black;
}

/* ------------------- */
/* VIDÉOS - GALERIE */
/* ------------------- */

.nobrain-tv {
  background: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  padding: 40px 20px;
}

.nobrain-tv .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: filter 0.3s ease;
}

.video-card:hover img {
  filter: brightness(0.7);
}

.video-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Racing', sans-serif;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.video-card p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 0.85rem;
  color: #ccc;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  line-height: 1.4em;
}

.video-card:hover h3 {
  opacity: 0;
}

.video-card:hover p {
  opacity: 1;
}

/* ------------------- */
/* MODAL (lecture vidéo) */
/* ------------------- */

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal iframe {
  width: 90vw;
  height: 50vh;
  max-width: 960px;
  border: none;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 99999;
}

/* ------------------- */
/* FONTS */
/* ------------------- */

@font-face {
  font-family: 'Racing';
  src: url('/mnt/data/Racing.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bullhead';
  src: url('/mnt/data/Bullhead.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}/* End custom CSS */