main {
  padding: 40px 6%;
}

.social-hero {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;
}

.social-hero h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 30px;
  margin-bottom: 16px;
  color: #00ffff;
  text-shadow: 0 0 10px #00fff7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-hero p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 35px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: auto;
}

.social-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(99, 226, 226, 0.82);
}

.social-card i,
.social-card img {
  font-size: 2rem;
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  margin-bottom: 12px;
  width: 50px;
  height: 50px;
  display: inline-block;
}

.social-card h5 {
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.social-card a {
  color: #cfcfcf;
  font-size: 0.9rem;
  text-decoration: none;
}

.social-card a:hover {
  color: #00ffff;
}

.social-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #00ffff, #7f00ff);
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  box-shadow: 0 0 18px rgba(27, 237, 237, 0.941);
}
