<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100% ;
  height: 100% ;
  overflow-y: hidden;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Footer styling */
.site-footer {
  position: fixed;
  bottom: 0px ;
  width: clamp(97px, 70vw, 600px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding-inline: clamp(1px, 0.6vw, 10px);
  font-size: clamp(1px, 2.6vw, 10px);
  background: rgba(0, 0, 0, 0.80);
  color: #eee;
  z-index: 9998;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 1vw;
  font-size: clamp(3px, 2vw, 12px);
}

.site-footer a:hover {
  color: #ff003c; /* Ta couleur Defqon rouge pour hover */
  text-decoration: underline;
}

.footer-copy {
  font-size: clamp(3px, 1.8vw, 10px);
}

/* STYLE DU BURGER MENU */
#menu-button {
  position: fixed;
  bottom: 2vw;
  right: 2vw;
  width: clamp(20px, 10vw, 55px);
  height: clamp(20px, 10vw, 55px);
  background: rgb(255, 0, 0);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.3s ease, transform 0.3s ease;
  top: auto;
  left: auto;
}

#menu-button:hover {
  background: rgba(255, 50, 90, 0.9);
  transform: scale(1.05);
}

#burger-lines {
  position: relative;
  width: 65%; /* taille relative pour toujours rester bien centrÃ©e */
  height: 50%; /* espace vertical suffisant */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Chaque ligne du burger */
#burger-lines span {
  display: block;
  height: clamp(2px, 1vw, 4px);
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#burger-lines span:nth-child(1) { top: 0; }
#burger-lines span:nth-child(2) { top: 40%; }
#burger-lines span:nth-child(3) { bottom: 0; }

/* STYLE DU MENU */
#menu-content {
  position: fixed;
  bottom: calc(clamp(30px, 10vw, 60px) + 10px); 
  right: 2vw;
  background: rgba(0, 0, 0, 0.95);
  font-size: clamp(8px, 3vw, 20px);
  border-radius: 10px;
  padding: clamp(2px, 2vw, 10px);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 2vw, 10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
  min-width: clamp(140px, 40vw, 180px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#menu-content a {
  color: white;
  text-decoration: none;
  padding: 8px 0;
  text-align: center;
}

#menu-content a:hover {
  color: #ff003c;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

#logoutBtn {
  background-color: #444;
  border-radius: 8px;
  margin: 10px auto;
  width: 80%;
  display: block;
  padding: 12px 0;
  text-align: center;
}

#logoutBtn:hover {
  background-color: #333; /* Un gris plus foncÃ© au survol */
  color: white;
}
#authModal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 6px;
  width: clamp(140px, 75vw, 500px);
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.modal-cross {
  color : white;
  cursor: pointer;
  font-size: clamp(10px, 2.5vw, 25px);
  text-box: trim-both ex alphabetic;
  padding : 0.3vw

}
.modal-h2 {
  color: white;
  text-box: trim-both ex alphabetic;
  font-size: clamp(10px, 2.5vw, 25px);
  text-align: center;
}
.modal-idbox {
  padding-inline: clamp(10px, 18vw, 100px);
  padding-block: clamp(2px, 1.5vw, 10px);
  margin: clamp(2px, 0.8vw, 25px);
  margin-inline: auto;
  border-radius: 1vw;
  border: 1px solid #ccc;
  font-size: clamp(6px, 2vw, 15px);
  background-color: #f9f9f9;
  color: #333;
  display: block;
}

.modal-idbox:focus {
  border-color: #ff003c;
  outline: none;
  background-color: #fff;
}
.modal-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw; /* espace entre les boutons */
  margin-top: 1.5vw;
  flex-wrap: wrap; /* Pour que Ã§a passe bien sur mobile */
}
.modal-button {
  display: block;
  justify-content: center; 
  align-items: center;
  gap: 1vw;
  padding-inline: clamp(1px, 2vw, 40px);
  padding-block: clamp(4px, 2vw, 8px);
  background-color: #696969;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  font-size: clamp(8px, 1.5vw, 30px);
  }

  .modal-smalltxt {
  color: white;
  display: block;
  text-box: trim-both ex alphabetic;
  font-size: clamp(4px, 2.5vw, 11px);
  text-align: center;
  padding: clamp(4px, 2vw, 8px)
  }

/* STYLE INDEX */
main {
  display: flex;
  justify-content: center; 
  align-items: center;     
  flex-direction: column;  
  height: 100vh;           
  position: relative;      
  z-index: 2;    
  padding: 2px;          
}

.defqon-banner {
  width: 100%;
  display: flex;              
  flex-direction: column;    
  justify-content: center;   
  align-items: center;        
  text-align: center;
  transition: background 1s ease; 
}

.defqon-text {
  color: white;
  font-size: clamp(14px, 5.3vw, 55px);
  font-weight: bold;
  margin: 0;
}

.slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenburns 32.5s infinite;
}

@keyframes fade1 {  0%, 20% { opacity: 1; }  25%, 100% { opacity: 0; }}
@keyframes fade2 {  0%, 20% { opacity: 0; }  25%, 45% { opacity: 1; }  50%, 100% { opacity: 0; }}
@keyframes fade3 {  0%, 45% { opacity: 0; }  50%, 70% { opacity: 1; }  75%, 100% { opacity: 0; }}
@keyframes fade4 {  0%, 70% { opacity: 0; }  75%, 95% { opacity: 1; }  100% { opacity: 0; }}
@keyframes fade5 {  0%, 95% { opacity: 0; }  100% { opacity: 1; }}

@keyframes kenburns {  0% { transform: scale(1) translate(0, 0); }  100% { transform: scale(1.1) translate(10px, 10px); }}

.slide1 { animation: fade1 32.5s infinite; }
.slide2 { animation: fade2 32.5s infinite; }
.slide3 { animation: fade3 32.5s infinite; }
.slide4 { animation: fade4 32.5s infinite; }
.slide5 { animation: fade5 32.5s infinite; }

/* STYLES PAGE LINEUP */
.lineup-header {
  width: 100%;
  height: clamp(15px, 6vw, 90px) ;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  color: azure;
  font-weight: 900 !important;
  font-size: larger;
  text-align: center;
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  transition: top 0.4s ease;
}
.lineup-header h1 {
  font-size: clamp(15px, 6vw, 90px);
}
.lineup-header.hide {
  top: -7vw ; 
}

.header-spacer {
  height: clamp(15px, 6vw, 90px);
  transition: height 0.4s ease;
}

.header-spacer.hide {
  height: 0; 
}

 .lineup-filters {
   background: rgba(0,0,0,0.5);
   text-align: center;
 }
 
 .lineup-filters select {
   appearance: none;
   background-color: rgba(0, 0, 0, 0.6);
   color: #fff;
   border: 1px solid #ff003c;
   padding: 0.5vw 2.3vw;
   margin: 0.5vw;
   border-radius: 4px;
   font-size: clamp(12px, 2.8vw, 20px);
   font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
   transition: all 0.3s ease;
   cursor: pointer;
 }
 
 .lineup-filters select:hover {
   background-color: rgba(255, 0, 0, 0.8);
   color: #fff;
   border-color: rgba(255, 0, 0, 0.8);
 }
 
 .lineup-filters select {
   background-image: url('data:image/svg+xml;utf8,&lt;svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"&gt;&lt;path d="M7 10l5 5 5-5z"/&gt;&lt;/svg&gt;');
   background-repeat: no-repeat;
   background-position-x: 95%;
   background-position-y: center;
   background-size: 2vw;
 }
 
 #lineup-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2vh;
  padding: 2vh;
  padding-bottom: 12vh;
  overflow-y: auto; 
  justify-items: center;
  width: 100%;
  box-sizing: border-box; 
 }

 #lineup-content::-webkit-scrollbar {  width: 8px;}
 #lineup-content::-webkit-scrollbar-thumb {  background-color: #ff0000;  border-radius: 10px;}
 #lineup-content::-webkit-scrollbar-track {  background: rgba(0, 0, 0, 0.3);}

  @media (max-width: 600px) {
    #lineup-content {
      grid-template-columns: 1fr;
      padding: 2vh;
      gap: 2vh;
      padding-bottom: 15vh;
    }
  }


  .lineup-block {
   background: rgba(0, 0, 0, 0.8);
   border-radius: 5px;
   width: 100%;
   max-width: 450px;
   height: 100%; 
   flex-direction: column; 
   box-sizing: border-box;
   color: azure;
   text-align: center;
   cursor: pointer;
   box-shadow: 0 4px 10px rgba(0,0,0,0.5);
   opacity: 1;
   transform: scale(1);
   transition: opacity 0.4s ease, transform 0.3s ease;
 }

 .lineup-block h2 {
   font-size: clamp(15px, 6vw, 50px);
   text-box: trim-both ex alphabetic;
   font-weight: 900;
   letter-spacing: 2px;
   }

   .scene-header {
  font-size: clamp(15px, 6vw, 50px);
   text-box: trim-both ex alphabetic;
   font-weight: 900;
   letter-spacing: 2px;
   }

.scene-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 6px;
}
.scene-name {
  display: none;
}

  .separator {
   border: 0;
   height: 2px;
   background: rgb(88, 88, 88);
   margin: 10px 0;
   width: 80%;
   margin-left: auto;
   margin-right: auto;
   border-radius: 5px;
 }

 .lineup-block h3 {
    font-size: clamp(12px, 1vw, 40px);
    font-style: italic;
    text-transform: capitalize;
    letter-spacing: 2px;
    mix-blend-mode: unset; }

 .artists {
   margin-bottom: 3vw;
   line-height: clamp(12px, 4vw, 40px);
   font-size: clamp(12px, 2.8vw, 25px);
   font-weight: normal;
 }
 .artist-line {
   padding: 5px 0;
 }

.horaire {
  font-size: clamp(6px, 2.8vw, 15px);
  margin-right: 8px;
}

 .artist-line.alternate {
   background: rgba(0, 0, 0, 0.25); 
 }
 .artist-favorite {
  border: 0.3vw solid #ff0000;
  background: rgba(0, 0, 0, 0.65) !important; 
  border-radius: 3px;
  padding: 5px;
  font-weight: bold;
  color: white !important;
}

#toggle-favorites.favorite-toggle {
  background: transparent;
  border: none;
  font-size: clamp(15px, 6vw, 80px);
  text-box: trim-both ex alphabetic;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
  position: fixed;
  top: 1.2vw;
  right: 1.5vw;
  z-index: 1002;
}

#toggle-favorites.favorite-toggle.active {
  color: gold;
  transform: scale(1.8);
  top:3vw;
}
  .lineup-block.hidden {
   opacity: 0;
   pointer-events: none;
   transform: scale(0.8);
   display: none;
 }

 .lineup-block:hover {
   transform: scale(1.05);
   box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); 
 }


 .redstage { background: #FF0000; }
 .bluestage { background: #0bdbef; }
 .blackstage { background: #878787; }
 .indigostage { background: #3842da; }
 .uvstage { background: #D492FF; }
 .magentastage { background: #FF008B; }
 .greenstage { background: #00FF00; }
 .yellowstage { background: #F1E300; color: rgba(0, 0, 0, 1);  }
 .goldstage { background: #BB9551; }
 .silverstage { background: #BFCCD3; }
 .purplestage { background: #A100FF; }
 .orangestage { background: #FF6500; }
 .pinkstage { background: #EF81A0; }
 .whitestage { background: #FDFDF0; color: rgba(0, 0, 0, 1); }
 .magentasilentstage { background: #FF008B; }
 .brownsilentstage { background: #925800; }
 .stampkroegstage { background: #016e53; }
 




 /* STYLE PAGE PLANNING */

#schedule-content {
  display: grid;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 4em);
  padding: 20px;
  box-sizing: border-box;
}

 #schedule-content::-webkit-scrollbar {  width: 8px;}
 #schedule-content::-webkit-scrollbar-thumb {  background-color: #ff0000;  border-radius: 10px;}
 #schedule-content::-webkit-scrollbar-track {  background: rgba(0, 0, 0, 0.3);}

  @media (max-width: 600px) {
    #schedule-content {
      grid-template-columns: 1fr;
      padding: 20px;
      gap: 20px;
    }
  }

  .schedule-header {
    width: 100%;
    height: clamp(15px, 6vw, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    color: azure;
    font-size: larger;
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    transition: top 0.4s ease;
  }
  .schedule-header h1 {
    font-size: clamp(15px, 6vw, 90px);
  }
  .schedule-header.hide {
    top: -7vw;
  }
 
  .button-container {
    display: flex;
    justify-content: center; /* ou flex-end, flex-start selon oÃ¹ tu veux */
    align-items: center;
    gap: 1vw;
    margin: clamp(3px, 0.5vw, 10px);
    flex-wrap: wrap;
  }
  
  .share-button, .reset-button {
    padding-inline: clamp(13px, 2vw, 40px);
    padding-block: clamp(4px, 2vw, 10px);
    background-color: #ff003c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(9px, 1.5vw, 30px);
    transition: background 0.3s ease;
  }
  
  .reset-button {
    background-color: #555; /* une couleur diffÃ©rente pour reset */
  }
  
  .share-button:hover {
    background-color: #ff3366;
  }
  
  .reset-button:hover {
    background-color: #777;
  }

.schedule-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.day-block {
  margin-bottom: 40px;
}

.day-block h2 {
  font-size: clamp(15px, 6vw, 50px);
  color: #ff0000;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  margin-bottom: 15px;
}

.planning-line {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  font-size: clamp(12px, 2.8vw, 25px);
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  margin: 5px 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 0, 60, 0.3);
}

.planning-line .time, 
.planning-line .artist, 
.planning-line .stage {
  text-align: center;
  font-weight: bold;
  color: white;
}

.planning-block {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #ff003c;
  padding: 15px;
  border-radius: 10px;
  color: white;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.planning-time {
  font-size: 1.2em;
  font-weight: bold;
}

.planning-artist {
  font-size: 1.5em;
  margin: 5px 0;
}

.planning-stage {
  font-size: 0.9em;
  opacity: 0.7;
}

.back-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff003c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.back-button:hover {
  background: #ff3366;
}


/* TIMETABLE */
#timeline {
  height: 80vh;
  width: 100%;
  margin-top: 20px;
  background: transparent;
}

.vis-group,
.vis-label,
.vis-group-content,
.vis-item {
  margin-top: none;
  height: clamp(40px, 6vw, 60px) !important;
}

.vis-label,
.vis-group-content,
.vis-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-item-content {
  height: 80% !important;
  font-weight: bold;
  background-color: #666;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-radius: 3px;
  width: 100% !important;
}
.vis-item.artist-favorite .vis-item-content {
  border: 3px solid #ff003c !important;
  border-radius: 3px !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
  font-weight: bold !important;
  box-shadow: 0 0 5px rgba(255, 0, 60, 0.4);
  animation: none !important;
  transition: none !important;
}

/* Suppression des backgrounds par dÃ©faut */
.vis-item,
.vis-item-content {
  background: none !important;
  background-image: none !important;
  border: 1px rgba(0, 0, 0, 0.25) !important;
}

/* Ligne rouge pour lâ€™heure actuelle */
.vis-current-time {
  background-color: red !important;
  width: 2px;
  z-index: 10;
}

/* Label de lâ€™heure actuelle (si activÃ©e) */
.vis-current-time .vis-current-time-label {
  background-color: red;
  color: white;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 5px;
}

/* Texte des heures en blanc */
.vis-time-axis .vis-text {
  color: white !important;
  font-weight: normal;
}

/* Affichage images des scÃ¨nes */
.scene-wrapper {
  height: clamp(30px, 6vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scene-wrapper .scene-label {
  max-height: clamp(20px, 5vw, 45px);
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Fallback si image absente */
.scene-wrapper .scene-fallback {
  display: none;
  color: white;
  font-size: 12px;
  text-align: center;
}
.scene-wrapper img.scene-label[src$=".jpg"],
.scene-wrapper img.scene-label[src$=".png"] {
  display: block;
}
.scene-wrapper img.scene-label[src=""]:not([src]) + .scene-fallback {
  display: block;
}

/* COULEURS DES SCÃˆNES */
.vis-item.redstage .vis-item-content         { background-color: #FF0000 !important; }
.vis-item.bluestage .vis-item-content        { background-color: #0bdbef !important; }
.vis-item.blackstage .vis-item-content       { background-color: #878787 !important; }
.vis-item.indigostage .vis-item-content      { background-color: #3842da !important; }
.vis-item.uvstage .vis-item-content          { background-color: #D492FF !important; }
.vis-item.magentastage .vis-item-content     { background-color: #FF008B !important; }
.vis-item.greenstage .vis-item-content       { background-color: #00FF00 !important; }
.vis-item.yellowstage .vis-item-content      { background-color: #F1E300 !important; color: black !important; }
.vis-item.goldstage .vis-item-content        { background-color: #BB9551 !important; }
.vis-item.silverstage .vis-item-content      { background-color: #BFCCD3 !important; }
.vis-item.purplestage .vis-item-content      { background-color: #A100FF !important; }
.vis-item.orangestage .vis-item-content      { background-color: #FF6500 !important; }
.vis-item.pinkstage .vis-item-content        { background-color: #EF81A0 !important; }
.vis-item.whitestage .vis-item-content       { background-color: #FDFDF0 !important; color: black !important; }
.vis-item.brownsilentstage .vis-item-content { background-color: #925800 !important; }
.vis-item.stampkroegstage .vis-item-content  { background-color: #016e53 !important; }
.vis-item.magentasilentstage .vis-item-content { background-color: #FF008B !important; }
</pre></body></html>