@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/minecraft-4');

/* Font Face pour ATOMEZ */
@font-face {
  font-family: '28DaysLater';
  src: url('28DaysLater.ttf') format('truetype');
}

/* Reset et base */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #CACACA;
  letter-spacing: 1.06px;
  font-size: 15.9px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: linear-gradient(135deg, #0a0a2e 0%, #16213e 25%, #0f3460 50%, #16213e 75%, #0a0a2e 100%);
  min-height: 100vh;
  position: relative;
}

/* ===== BACKGROUND ELEMENTS ===== */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1000;
  pointer-events: none;
  opacity: 0.3;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(85, 233, 244, 0.1) 0%, rgba(16, 33, 62, 0.3) 70%, rgba(10, 10, 46, 0.5) 100%);
  z-index: -100;
  pointer-events: auto;
  cursor: none;
}

.gradent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -50;
  pointer-events: none;
}

.footer-img {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -50;
  pointer-events: none;
}

/* ===== MAIN LAYOUT PC - CENTRAGE VERTICAL PARFAIT ===== */
.main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  grid-template-areas: "portfolio profile music";
  gap: 50px;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
}

/* ===== PORTFOLIO SECTION (LEFT) - THÈME BLEU COHÉRENT ===== */
.portfolio-section {
  grid-area: portfolio;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-highlight {
  background: linear-gradient(135deg, 
    rgba(85, 233, 244, 0.15), 
    rgba(16, 213, 244, 0.1), 
    rgba(55, 169, 244, 0.08)
  );
  border: 2px solid rgba(85, 233, 244, 0.4);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 8px 32px rgba(85, 233, 244, 0.2),
    inset 0 1px 0 rgba(85, 233, 244, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.portfolio-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(85, 233, 244, 0.1), transparent);
  animation: blue-sweep 3s infinite;
}

.portfolio-highlight:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(85, 233, 244, 0.8);
  box-shadow: 
    0 15px 40px rgba(85, 233, 244, 0.3),
    0 0 30px rgba(85, 233, 244, 0.2),
    inset 0 1px 0 rgba(85, 233, 244, 0.2);
}

.portfolio-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #55E9F4, #37A9F4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(85, 233, 244, 0.4);
  animation: blue-pulse 2s infinite;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 700;
  color: #55E9F4;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(85, 233, 244, 0.5);
}

.portfolio-desc {
  font-size: 14px;
  color: #CACACA;
  margin-bottom: 20px;
  line-height: 1.5;
}

.portfolio-btn {
  background: linear-gradient(135deg, #55E9F4, #37A9F4);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(85, 233, 244, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(85, 233, 244, 0.5);
  color: #000;
  background: linear-gradient(135deg, #55E9F4, #55E9F4);
}

/* ===== MAIN PROFILE SECTION (CENTER) - CENTRAGE PARFAIT ===== */
.main-section {
  grid-area: profile;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-avatar {
  width: 165px;
  height: 165px;
  margin: 0 auto 25px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 4px solid rgba(85, 233, 244, 0.4);
  box-shadow: 
    0 8px 32px rgba(85, 233, 244, 0.3),
    0 0 20px rgba(85, 233, 244, 0.2);
  animation: avatar-glow 3s ease-in-out infinite;
}

.card-body {
  background: linear-gradient(135deg, 
    rgba(16, 33, 62, 0.9), 
    rgba(10, 10, 46, 0.8)
  );
  border: 2px solid rgba(85, 233, 244, 0.3);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(85, 233, 244, 0.1),
    inset 0 1px 0 rgba(85, 233, 244, 0.1);
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

.card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(85, 233, 244, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

.profile-header {
  margin-bottom: 30px;
}

.profile-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 600;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-name {
  color: #CACACA;
  font-size: 16px;
  min-width: 65px; /* Largeur fixe pour équilibrer */
  text-align: center; /* Centrer le texte */
}

/* CORRECTION VGX - Largeur optimisée pour centrage parfait */
.warning {
  color: #55E9F4;
  background: linear-gradient(135deg, rgba(85, 233, 244, 0.2), rgba(55, 169, 244, 0.15));
  border: 2px solid rgba(85, 233, 244, 0.4);
  padding: 8px 24px; /* Augmenté pour plus d'équilibre */
  min-width: 80px; /* Largeur minimale augmentée */
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0 0 8px rgba(85, 233, 244, 0.5);
  box-shadow: 0 4px 15px rgba(85, 233, 244, 0.2);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.profile-age {
  color: #CACACA;
  font-size: 16px;
  min-width: 65px; /* Largeur fixe pour équilibrer */
  text-align: center; /* Centrer le texte */
}

.location-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  font-size: 14px;
  color: #999;
}

/* ===== BUTTONS - THÈME BLEU ===== */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
  width: 100%;
}

.custom-button {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, 
    rgba(16, 33, 62, 0.8), 
    rgba(10, 10, 46, 0.9)
  );
  border: 2px solid rgba(85, 233, 244, 0.2);
  color: #CACACA;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.custom-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(85, 233, 244, 0.1), transparent);
  transition: left 0.5s ease;
}

.custom-button:hover::before {
  left: 100%;
}

.custom-button:hover {
  background: linear-gradient(135deg, 
    rgba(85, 233, 244, 0.1), 
    rgba(16, 33, 62, 0.9)
  );
  border-color: rgba(85, 233, 244, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(85, 233, 244, 0.2);
  color: #CACACA;
}

.custom-button img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(85, 233, 244, 0.3));
}

.button-text {
  flex-grow: 1;
  text-align: left;
}

.line1 {
  font-weight: 600;
  font-size: 16px;
  display: block;
}

.line2 {
  font-size: 13px;
  color: rgba(85, 233, 244, 0.7);
  display: block;
}

/* ===== SPECIAL BUTTONS - HARMONISÉS AVEC BACKGROUND VISIBLE ===== */

/* ATOMEZ Button - Rouge #782A2C */
.custom-buttonatomez {
  background: linear-gradient(135deg, 
    rgba(120, 42, 44, 0.2), 
    rgba(16, 33, 62, 0.6)
  ), url("atomez.png") !important;
  background-size: cover !important;
  background-position: center !important;
  border: 2px solid rgba(120, 42, 44, 0.5) !important;
}

.custom-buttonatomez::before {
  background: linear-gradient(90deg, transparent, rgba(120, 42, 45, 0.596), transparent) !important;
}

.custom-buttonatomez:hover {
  background: linear-gradient(135deg, 
    rgba(120, 42, 44, 0.3), 
    rgba(16, 33, 62, 0.8)
  ), url("atomez.png") !important;
  background-size: cover !important;
  background-position: center !important;
  border-color: rgba(120, 42, 44, 0.8) !important;
  box-shadow: 0 8px 25px rgba(120, 42, 44, 0.3) !important;
}

.atomez {
  font-family: '28DaysLater', sans-serif;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.lineatomez {
  color: #C84648;
}

/* FardiHosting Button - Bleu cohérent avec le thème principal */
.fardihosting-btn {
  background: linear-gradient(135deg, 
    rgba(124, 132, 133, 0.3), 
    rgba(124, 125, 126, 0.5)
  ), url("fardi.svg") !important;
  background-position: center !important;
  background-size: cover !important;
  border: 2px solid rgba(87, 87, 87, 1) !important;
}

.fardihosting-btn::before {
  background: linear-gradient(90deg, transparent, rgba(222, 253, 255, 0.514), transparent) !important;
}

.fardihosting-btn:hover {
  background: linear-gradient(135deg, 
    rgba(124, 132, 133, 0.4), 
    rgba(124, 125, 126, 0.7)
  ), url("fardi.svg") !important;
  background-position: center !important;
  background-size: cover !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 8px 25px rgba(215, 221, 221, 0.3) !important;
}

.fardihosting-text {
  position: relative;
  z-index: 1;
  font-weight: 700;
  color: #ffffff;
}

/* ===== MUSIC SECTION (RIGHT) - DESIGN MODERNE ===== */
.music-section {
  grid-area: music;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-card {
  background: linear-gradient(135deg, 
    rgba(16, 33, 62, 0.9), 
    rgba(10, 10, 46, 0.8)
  );
  border: 2px solid rgba(85, 233, 244, 0.3);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(85, 233, 244, 0.1);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.music-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(85, 233, 244, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

.music-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.music-title {
  color: #55E9F4;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(85, 233, 244, 0.5);
}

.music-subtitle {
  color: #CACACA;
  font-size: 13px;
  opacity: 0.8;
}

.deezer-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.music-card iframe {
  border-radius: 15px;
  width: 100%;
  height: 350px;
  border: none;
}

/* ===== SOCIAL GAMING ICONS - THÈME BLEU ===== */
.social-gaming-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 25px 0 0 0;
}

.social-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.social-icon-item:hover {
  transform: translateY(-3px);
}

.social-icon-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, 
    rgba(16, 33, 62, 0.8), 
    rgba(85, 233, 244, 0.1)
  );
  border-radius: 12px;
  border: 2px solid rgba(85, 233, 244, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon-item a:hover {
  background: linear-gradient(135deg, 
    rgba(85, 233, 244, 0.2), 
    rgba(16, 33, 62, 0.9)
  );
  border-color: rgba(85, 233, 244, 0.6);
  box-shadow: 0 6px 20px rgba(85, 233, 244, 0.3);
}

.social-icon-item img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(85, 233, 244, 0.2));
}

.icon-label {
  font-size: 13px;
  font-weight: 600;
  color: #55E9F4;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(85, 233, 244, 0.3);
}

.icon-username {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}

/* ===== COPYRIGHT ===== */
.copyright-text {
  text-align: center;
  margin-top: 5px;
  padding: 10px 0;
}

.copyright-text .mctypo {
  font-family: 'Minecraft', sans-serif;
  color: rgba(85, 233, 244, 0.6);
  font-size: 35px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(85, 233, 244, 0.3);
  margin: 0;
}

/* ===== VGX BOT WIDGET - REDESIGNÉ ===== */
.vgxbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #55E9F4, #37A9F4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(85, 233, 244, 0.4);
  animation: widget-float 3s ease-in-out infinite;
}

.vgxbot-widget:hover {
  width: 280px;
  height: auto;
  border-radius: 15px;
  padding: 15px;
  background: linear-gradient(135deg, 
    rgba(16, 33, 62, 0.95), 
    rgba(85, 233, 244, 0.1)
  );
  border: 2px solid rgba(85, 233, 244, 0.4);
}

.vgxbot-widget a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  white-space: nowrap;
}

.vgxbot-widget img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0;
  box-shadow: 0 4px 15px rgba(85, 233, 244, 0.3);
  transition: all 0.3s ease;
}

.vgxbot-widget:hover img {
  margin-right: 15px;
}

.vgxbot-info {
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 0;
  overflow: hidden;
}

.vgxbot-widget:hover .vgxbot-info {
  opacity: 1;
  max-width: 200px;
}

.vgxbot-info h2 {
  font-size: 16px;
  margin: 0 0 5px 0;
  color: #55E9F4;
  font-weight: 700;
}

.vgxbot-info p {
  font-size: 13px;
  margin: 0;
  color: #CACACA;
}

/* ===== ANIMATIONS ===== */
@keyframes blue-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes blue-pulse {
  0%, 100% { 
    box-shadow: 0 4px 20px rgba(85, 233, 244, 0.4);
  }
  50% { 
    box-shadow: 0 4px 30px rgba(85, 233, 244, 0.8), 0 0 20px rgba(85, 233, 244, 0.4);
  }
}

@keyframes avatar-glow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(85, 233, 244, 0.3),
      0 0 20px rgba(85, 233, 244, 0.2);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(85, 233, 244, 0.5),
      0 0 30px rgba(85, 233, 244, 0.4);
  }
}

@keyframes widget-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.animation {
  transition: all 0.3s cubic-bezier(0.07, 0.08, 0.29, 1.03);
}

.animation:hover {
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-body {
  animation: fadeInUp 0.8s ease-out;
}

.portfolio-highlight {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.music-card {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop large */
@media (max-width: 1200px) and (min-width: 769px) {
  .content-wrapper {
    grid-template-columns: 280px 1fr 280px;
    gap: 30px;
  }
  
  .social-gaming-icons {
    gap: 30px;
  }
}

/* Tablet et Mobile */
@media (max-width: 768px) {
  .main-container {
    align-items: flex-start;
    padding: 40px 20px 60px;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "portfolio"
      "profile"
      "music";
    gap: 30px;
    align-items: stretch;
  }
  
  .portfolio-section,
  .music-section {
    justify-self: center;
    max-width: 400px;
    width: 100%;
  }
  
  .main-section {
    justify-self: center;
    max-width: 500px;
    width: 100%;
  }
  
  .card-body {
    padding: 25px 20px;
  }
  
  .profile-avatar {
    width: 120px;
    height: 120px;
  }
  
  .music-card iframe {
    height: 320px;
  }
  
  .vgxbot-widget {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .vgxbot-widget img {
    width: 30px;
    height: 30px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .main-container {
    padding: 30px 15px 40px;
  }
  
  .content-wrapper {
    gap: 25px;
  }
  
  .card-body {
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .profile-avatar {
    width: 100px;
    height: 100px;
  }
  
  .music-card iframe {
    height: 280px;
  }
  
  .social-gaming-icons {
    gap: 25px;
  }
}

/* ===== CURSEUR PERSONNALISÉ GLOBAL ===== */
*, *::before, *::after {
  cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHN0eWxlPgouY3Vyc29yIHsgZmlsbDogIzU1RTlGNDsgZmlsdGVyOiBkcm9wLXNoYWRvdygwIDJweCA2cHggcmdiYSg4NSwgMjMzLCAyNDQsIDAuOCkpOyB9Cjwvc3R5bGU+CjxjaXJjbGUgY2xhc3M9ImN1cnNvciIgY3g9IjEwIiBjeT0iMTAiIHI9IjMiLz4KPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iOCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTVFOUY0IiBzdHJva2Utd2lkdGg9IjEuNSIgb3BhY2l0eT0iMC41Ii8+Cjwvc3ZnPgo='), auto !important;
}

/* Curseur spécial pour toute la page HTML */
html, body {
  cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHN0eWxlPgouY3Vyc29yIHsgZmlsbDogIzU1RTlGNDsgZmlsdGVyOiBkcm9wLXNoYWRvdygwIDJweCA2cHggcmdiYSg4NSwgMjMzLCAyNDQsIDAuOCkpOyB9Cjwvc3R5bGU+CjxjaXJjbGUgY2xhc3M9ImN1cnNvciIgY3g9IjEwIiBjeT0iMTAiIHI9IjMiLz4KPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iOCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTVFOUY0IiBzdHJva2Utd2lkdGg9IjEuNSIgb3BhY2l0eT0iMC41Ii8+Cjwvc3ZnPgo='), auto !important;
}

/* Curseur spécial pour la zone des particules - plus discret */
#particles-js {
  cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHN0eWxlPgouY3Vyc29yIHsgZmlsbDogIzU1RTlGNDsgZmlsdGVyOiBkcm9wLXNoYWRvdygwIDJweCA2cHggcmdiYSg4NSwgMjMzLCAyNDQsIDAuOCkpOyB9Cjwvc3R5bGU+CjxjaXJjbGUgY2xhc3M9ImN1cnNvciIgY3g9IjEwIiBjeT0iMTAiIHI9IjMiLz4KPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iOCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTVFOUY0IiBzdHJva2Utd2lkdGg9IjEuNSIgb3BhY2l0eT0iMC41Ii8+Cjwvc3ZnPgo='), auto !important;
}

/* ===== SCROLLBAR ULTRA STYLISÉE ===== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 14px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: none;
  margin: 10px 0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, 
    rgba(85, 233, 244, 0.1), 
    rgba(85, 233, 244, 0.3),
    rgba(55, 169, 244, 0.4),
    rgba(85, 233, 244, 0.3),
    rgba(85, 233, 244, 0.1)
  );
  border: 2px solid transparent;
  border-radius: 20px;
  box-shadow: 
    inset 0 0 15px rgba(85, 233, 244, 0.2),
    0 0 15px rgba(85, 233, 244, 0.15),
    inset 0 2px 5px rgba(255, 255, 255, 0.1),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

::-webkit-scrollbar-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(85, 233, 244, 0.3), transparent);
  border-radius: 20px;
  animation: scroll-shine 3s ease-in-out infinite;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, 
    rgba(85, 233, 244, 0.3), 
    rgba(85, 233, 244, 0.6),
    rgba(55, 169, 244, 0.7),
    rgba(85, 233, 244, 0.6),
    rgba(85, 233, 244, 0.3)
  );
  box-shadow: 
    inset 0 0 20px rgba(85, 233, 244, 0.4),
    0 0 25px rgba(85, 233, 244, 0.3),
    0 0 35px rgba(85, 233, 244, 0.1),
    inset 0 2px 8px rgba(255, 255, 255, 0.2),
    inset 0 -2px 8px rgba(0, 0, 0, 0.3);
  transform: scaleX(1.1);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(45deg, 
    rgba(85, 233, 244, 0.4), 
    rgba(85, 233, 244, 0.8),
    rgba(55, 169, 244, 0.9),
    rgba(85, 233, 244, 0.8),
    rgba(85, 233, 244, 0.4)
  );
  box-shadow: 
    inset 0 0 25px rgba(85, 233, 244, 0.6),
    0 0 30px rgba(85, 233, 244, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.3);
  transform: scaleX(1.2);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Effet de brillance animé */
@keyframes scroll-shine {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

/* Firefox - version améliorée */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(85, 233, 244, 0.4) transparent;
}

/* Scrollbar pour body avec effet spécial */
body::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, 
    rgba(85, 233, 244, 0.1), 
    rgba(85, 233, 244, 0.4),
    rgba(55, 169, 244, 0.5),
    rgba(85, 233, 244, 0.4),
    rgba(85, 233, 244, 0.1)
  );
  border-radius: 25px;
  position: relative;
}

/* Animation de pulsation pour la scrollbar */
@keyframes scrollbar-pulse {
  0%, 100% {
    box-shadow: 
      inset 0 0 15px rgba(85, 233, 244, 0.2),
      0 0 15px rgba(85, 233, 244, 0.15);
  }
  50% {
    box-shadow: 
      inset 0 0 20px rgba(85, 233, 244, 0.3),
      0 0 20px rgba(85, 233, 244, 0.2);
  }
}

/* Pour les éléments avec scroll personnalisé (comme l'iframe Deezer) */
.deezer-container iframe {
  scrollbar-width: thin;
  scrollbar-color: rgba(85, 233, 244, 0.6) rgba(16, 33, 62, 0.3);
}

.deezer-container iframe::-webkit-scrollbar {
  width: 8px;
}

.deezer-container iframe::-webkit-scrollbar-track {
  background: rgba(16, 33, 62, 0.2);
  border-radius: 4px;
}

.deezer-container iframe::-webkit-scrollbar-thumb {
  background: rgba(85, 233, 244, 0.4);
  border-radius: 4px;
}

.deezer-container iframe::-webkit-scrollbar-thumb:hover {
  background: rgba(85, 233, 244, 0.6);
}

/* ===== AMÉLIORATION DE LA SÉLECTION DE TEXTE ===== */
::selection {
  background: linear-gradient(135deg, 
    rgba(85, 233, 244, 0.4), 
    rgba(55, 169, 244, 0.3)
  );
  color: #ffffff;
  text-shadow: 0 0 10px rgba(85, 233, 244, 0.6);
  backdrop-filter: blur(2px);
}

::-moz-selection {
  background: linear-gradient(135deg, 
    rgba(85, 233, 244, 0.4), 
    rgba(55, 169, 244, 0.3)
  );
  color: #ffffff;
  text-shadow: 0 0 10px rgba(85, 233, 244, 0.6);
}

/* ===== EFFETS VISUELS AVANCÉS ===== */

/* Animation globale du curseur */
@keyframes cursor-trail {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.2) rotate(360deg);
    opacity: 0.3;
  }
}

/* Effet trail du curseur sur mouvement rapide */
*:hover {
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Style pour les éléments disabled */
*:disabled, *[disabled] {
  cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHN0eWxlPgouZGlzYWJsZWQgeyBmaWxsOiAjNzc3Nzc3OyBvcGFjaXR5OiAwLjU7IH0KPC9zdHlsZT4KPGNpcmNsZSBjbGFzcz0iZGlzYWJsZWQiIGN4PSIxMCIgY3k9IjEwIiByPSIzIi8+CjxsaW5lIGNsYXNzPSJkaXNhYmxlZCIgeDE9IjQiIHkxPSI0IiB4Mj0iMTYiIHkyPSIxNiIgc3Ryb2tlPSIjNzc3Nzc3IiBzdHJva2Utd2lkdGg9IjIiLz4KPHN2Zz4K'), not-allowed !important;
}

/* Ajustement du curseur pour les iframes */
iframe {
  cursor: inherit;
}

/* Animation subtile pour les interactions */
@keyframes interaction-glow {
  0%, 100% {
    filter: drop-shadow(0 2px 6px rgba(85, 233, 244, 0.4));
  }
  50% {
    filter: drop-shadow(0 3px 12px rgba(85, 233, 244, 0.7));
  }
}