.h-section { 
  max-width: 100%; 
  margin: 0 auto; 
  position: relative; 
  background: linear-gradient(135deg, #0b9ca0 0%, #087c78 100%);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.h-container { 
  position: relative; 
  padding: 0 30px; 
}

.h-scroll { 
  overflow-x: auto; 
  scrollbar-width: none; 
  -ms-overflow-style: none; 
  scroll-behavior: smooth; 
  padding: 4px 0; 
  cursor: grab; 
}
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll.active { cursor: grabbing; }

.h-cards { 
  display: inline-flex; 
  gap: 10px; 
  padding: 2px 0; 
}

.h-btn { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 30px; 
  height: 30px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.85); 
  backdrop-filter: blur(5px);
  border: none;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  z-index: 10; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); 
  transition: all 0.25s ease; 
}
.h-btn:hover { 
  background: rgba(255,255,255,1); 
  transform: translateY(-50%) scale(1.1); 
}
.h-btn.left { left: 8px; }
.h-btn.right { right: 8px; }
.h-btn svg { 
  width: 16px; 
  height: 16px; 
  fill: #0b9ca0; 
}

.h-card { 
  flex: 0 0 auto; 
  width: 150px; 
  background: #ffffff;
  border-radius: 12px; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  border: 1px solid rgba(0,0,0,0.1); 
  text-decoration: none; 
  color: #0b9ca0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease; 
}
.h-card:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.h-league { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 3px; 
  padding: 5px; 
  font-weight: 700; 
  font-size: 10.5px; 
  background: rgba(11,156,160,0.08);
  color: #0b9ca0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.h-logo { 
  width: 15px; 
  height: 15px; 
  object-fit: contain; 
  flex-shrink: 0; 
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
}

.h-status { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 3px; 
  font-size: 9.5px; 
  font-weight: 600; 
  padding: 3px 0; 
  color: #03635d;
}
.h-dot { 
  width: 5px; 
  height: 5px; 
  border-radius: 50%; 
}
.h-ft { background: #10b981; }
.h-upcoming { background: #94a3b8; }

.h-team { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 4px; 
  padding: 5px 6px; 
}
.h-name { 
  font-size: 10.5px; 
  flex: 1; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  color: #03635d; 
  font-weight: 600;
}
.h-score { 
  font-size: 11.5px; 
  font-weight: 700; 
  min-width: 20px; 
  text-align: center; 
  color: #0b9ca0; 
}

.h-divider { 
  border-top: 1px solid rgba(0,0,0,0.08); 
  margin: 2px 0; 
  width: 100%; 
}

.h-empty { 
  padding: 10px; 
  color: #03635d; 
  text-align: center; 
  font-size: 11px; 
  width: 100%; 
  font-style: italic; 
}
