.nuvoll-votaciones-fun {
  padding: 80px 20px;
  background: #f1f1f7;
}

.nuvoll-votaciones-fun-container {
  max-width: 1200px;
  margin: auto;
}

.nuvoll-votaciones-fun-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.nuvoll-votaciones-fun-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.nuvoll-votaciones-fun-tab {
  padding: 10px 20px;
  border: none;
  background: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.nuvoll-votaciones-fun-tab.active {
  background: #ff3b3b;
  color: #fff;
}

.nuvoll-votaciones-fun-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.nuvoll-votaciones-fun-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.nuvoll-votaciones-fun-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.nuvoll-votaciones-fun-icon {
  font-size: 30px;
  margin-bottom: 10px;
}