.main-content {
  padding: 80px 20px 100px;
  background: radial-gradient(circle at center, rgba(80, 0, 0, 0.18), transparent 55%);
}

.badges-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  margin-bottom: 50px;
}

.page-title h1 {
  font-size: 46px;
  color: #ff4d4d;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  margin-bottom: 10px;
}

.page-title p {
  color: #cfcfcf;
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.badge-card:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.badge-card h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.badge-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.badge-card:hover .badge-icon {
  transform: scale(1.15);
}

.badge-1 {
  background: linear-gradient(180deg, rgba(40, 0, 0, 0.9), rgba(10, 0, 0, 0.95));
  border: 1px solid rgba(255, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.08);
}

.icon-1 {
  background: radial-gradient(circle, #aaa, transparent);
  box-shadow: 0 0 20px rgba(200, 200, 200, 0.5);
}

.badge-2 {
  background: linear-gradient(180deg, rgba(60, 0, 0, 0.95), rgba(20, 0, 0, 0.98));
  border: 1px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.icon-2 {
  background: radial-gradient(circle, red, transparent);
  box-shadow: 0 0 25px red;
}

.badge-3 {
  background: linear-gradient(180deg, rgba(10, 0, 40, 0.9), rgba(0, 0, 10, 0.95));
  border: 1px solid rgba(0, 150, 255, 0.4);
}

.icon-3 {
  background: radial-gradient(circle, #00aaff, transparent);
  box-shadow: 0 0 25px #00aaff;
}

.badge-4 {
  background: linear-gradient(180deg, rgba(60, 30, 0, 0.9), rgba(20, 10, 0, 0.95));
  border: 1px solid rgba(205, 127, 50, 0.5);
}

.icon-4 {
  background: radial-gradient(circle, #cd7f32, transparent);
  box-shadow: 0 0 25px #cd7f32;
}

.badge-5 {
  background: linear-gradient(180deg, rgba(80, 80, 80, 0.9), rgba(20, 20, 20, 0.95));
  border: 1px solid rgba(200, 200, 200, 0.4);
}

.icon-5 {
  background: radial-gradient(circle, #ccc, transparent);
  box-shadow: 0 0 25px #ccc;
}

.badge-6 {
  background: linear-gradient(180deg, rgba(80, 60, 0, 0.9), rgba(20, 15, 0, 0.95));
  border: 1px solid rgba(255, 200, 0, 0.6);
}

.icon-6 {
  background: radial-gradient(circle, gold, transparent);
  box-shadow: 0 0 25px gold;
}

.badge-7 {
  background: linear-gradient(180deg, rgba(120, 80, 0, 0.9), rgba(30, 20, 0, 0.95));
  border: 1px solid rgba(255, 180, 0, 0.8);
  box-shadow: 0 0 40px rgba(255, 180, 0, 0.3);
}

.icon-7 {
  background: radial-gradient(circle, orange, transparent);
  box-shadow: 0 0 30px orange;
}

.badge-8 {
  background: linear-gradient(180deg, rgba(60, 0, 80, 0.9), rgba(20, 0, 30, 0.95));
  border: 1px solid rgba(180, 0, 255, 0.6);
}

.icon-8 {
  background: radial-gradient(circle, violet, transparent);
  box-shadow: 0 0 25px violet;
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: 34px;
  }

  .badge-card {
    flex-direction: column;
    text-align: center;
  }
}