/* Menu latéral - Version qui scroll avec la page - TAILLE AUGMENTÉE x1.25 */
.game-sidebar {
  position: absolute;
  left: 0;
  top: 146px;
  width: 250px; /* 200px × 1.25 = 250px */
  min-height: calc(100vh - 140px);
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  padding: 18.75px; /* 15px × 1.25 = 18.75px */
  overflow-y: auto;
  z-index: 100;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.8);
  border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.game-sidebar .home-btn {
  display: block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  text-decoration: none;
  padding: 17.5px; /* 14px × 1.25 = 17.5px */
  margin-bottom: 25px; /* 20px × 1.25 = 25px */
  border-radius: 10px; /* 8px × 1.25 = 10px */
  text-align: center;
  font-weight: bold;
  font-size: 20px; /* 16px × 1.25 = 20px */
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.game-sidebar .home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.game-sidebar .menu-section {
  margin-bottom: 25px; /* 20px × 1.25 = 25px */
}

/* Style pour les catégories cliquables */
.game-sidebar .menu-category {
  display: block;
  color: #ffd700;
  text-decoration: none;
  padding: 12.5px 15px; /* 10px, 12px × 1.25 */
  margin: 0 0 10px 0; /* 8px × 1.25 = 10px */
  font-size: 16.25px; /* 13px × 1.25 = 16.25px */
  text-transform: uppercase;
  letter-spacing: 2.5px; /* 2px × 1.25 = 2.5px */
  background: rgba(255, 215, 0, 0.1);
  border-radius: 6.25px; /* 5px × 1.25 = 6.25px */
  border-left: 3.75px solid #ffd700; /* 3px × 1.25 = 3.75px */
  font-weight: bold;
  transition: all 0.3s;
  cursor: pointer;
}

.game-sidebar .menu-category:hover {
  background: rgba(255, 215, 0, 0.2);
  padding-left: 22.5px; /* 18px × 1.25 = 22.5px */
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.game-sidebar .menu-category.active {
  background: rgba(255, 215, 0, 0.25);
  box-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

/* Style pour les catégories non-cliquables (SHOP) */
.game-sidebar .menu-category-disabled {
  display: block;
  color: #888;
  padding: 12.5px 15px; /* 10px, 12px × 1.25 */
  margin: 0 0 10px 0; /* 8px × 1.25 = 10px */
  font-size: 16.25px; /* 13px × 1.25 = 16.25px */
  text-transform: uppercase;
  letter-spacing: 2.5px; /* 2px × 1.25 = 2.5px */
  background: rgba(100, 100, 100, 0.1);
  border-radius: 6.25px; /* 5px × 1.25 = 6.25px */
  border-left: 3.75px solid #666; /* 3px × 1.25 = 3.75px */
  font-weight: bold;
  cursor: not-allowed;
}

/* Sous-menu */
.game-sidebar .submenu {
  margin-left: 12.5px; /* 10px × 1.25 = 12.5px */
  padding-left: 12.5px; /* 10px × 1.25 = 12.5px */
  border-left: 2.5px solid rgba(255, 215, 0, 0.2); /* 2px × 1.25 = 2.5px */
}

.game-sidebar .submenu a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 10px 15px; /* 8px, 12px × 1.25 */
  margin: 3.75px 0; /* 3px × 1.25 = 3.75px */
  border-radius: 6.25px; /* 5px × 1.25 = 6.25px */
  transition: all 0.3s;
  font-size: 17.5px; /* 14px × 1.25 = 17.5px */
}

.game-sidebar .submenu a:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  padding-left: 22.5px; /* 18px × 1.25 = 22.5px */
}

.game-sidebar .submenu a.active {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  font-weight: bold;
  border-left: 3.75px solid #ffd700; /* 3px × 1.25 = 3.75px */
  padding-left: 18.75px; /* 15px × 1.25 = 18.75px */
}

/* Texte "Prochainement" */
.game-sidebar .coming-soon {
  display: block;
  color: #666;
  padding: 10px 15px; /* 8px, 12px × 1.25 */
  margin: 3.75px 0; /* 3px × 1.25 = 3.75px */
  font-size: 16.25px; /* 13px × 1.25 = 16.25px */
  font-style: italic;
  cursor: not-allowed;
}

/* Décaler le body vers la droite */
body.has-sidebar {
  margin-left: 250px; /* 200px × 1.25 = 250px */
}

/* Responsive */
@media (max-width: 768px) {
  .game-sidebar {
    width: 87.5px; /* 70px × 1.25 = 87.5px */
    padding: 12.5px 6.25px; /* 10px, 5px × 1.25 */
    top: 100px;
    min-height: calc(100vh - 100px);
  }
  
  .game-sidebar .menu-category,
  .game-sidebar .menu-category-disabled {
    font-size: 11.25px; /* 9px × 1.25 = 11.25px */
    text-align: center;
    padding: 10px 3.75px; /* 8px, 3px × 1.25 */
    letter-spacing: 1.25px; /* 1px × 1.25 = 1.25px */
  }
  
  .game-sidebar .submenu {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  
  .game-sidebar .submenu a {
    font-size: 12.5px; /* 10px × 1.25 = 12.5px */
    padding: 7.5px 3.75px; /* 6px, 3px × 1.25 */
    text-align: center;
  }
  
  .game-sidebar .coming-soon {
    font-size: 11.25px; /* 9px × 1.25 = 11.25px */
    text-align: center;
    padding: 7.5px 3.75px; /* 6px, 3px × 1.25 */
  }
  
  .game-sidebar .home-btn {
    font-size: 17.5px; /* 14px × 1.25 = 17.5px */
    padding: 12.5px 6.25px; /* 10px, 5px × 1.25 */
  }
  
  body.has-sidebar {
    margin-left: 87.5px; /* 70px × 1.25 = 87.5px */
  }
}