/* ============================================
   LA BOULE D'OR — Styles
   ============================================ */

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

.fade-in { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gold-shimmer {
  background: linear-gradient(90deg, #c9a84c, #e0c875, #c9a84c);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

.menu-item { position: relative; }
.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}
.item-wrapper:last-child .menu-item::after { display: none; }

.cat-nav-container {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
@media (max-width: 1023px) {
  .cat-nav-container {
    flex-wrap: nowrap; overflow-x: auto;
    justify-content: flex-start; padding-bottom: 4px;
  }
}

.cat-btn { transition: all 0.3s ease; }
.group:hover h3 { color: #c9a84c; }

.vote-btn {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 3px 8px; border-radius: 9999px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.05);
  color: #f5e6c8; font-size: 11px;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.2s ease;
  line-height: 1; white-space: nowrap; user-select: none;
}
.vote-btn:hover {
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.12);
  transform: translateY(-1px);
}
.vote-btn:active { transform: scale(0.95); }
.vote-btn.voted {
  border-color: #c9a84c;
  background: rgba(201,168,76,0.25);
}

/* Comment section styles */
.comment-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(245, 230, 200, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.comment-toggle:hover { color: #c9a84c; }

.comment-box {
  background: rgba(22, 22, 22, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
}

.comment-input {
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  color: #f5e6c8;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.comment-input::placeholder { color: rgba(245, 230, 200, 0.3); }
.comment-input:focus { border-color: rgba(201, 168, 76, 0.5); }

.comment-textarea {
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  color: #f5e6c8;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  resize: vertical;
  min-height: 36px;
}
.comment-textarea::placeholder { color: rgba(245, 230, 200, 0.3); }
.comment-textarea:focus { border-color: rgba(201, 168, 76, 0.5); }

.comment-send {
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  color: #c9a84c;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.comment-send:hover {
  background: rgba(201, 168, 76, 0.22);
  border-color: rgba(201, 168, 76, 0.5);
}
.comment-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
