.social-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #2878ff 0%, #56a0f5 55%, #a8d4ff 100%);
}

.social-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.social-section-title {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  padding: 50px 0 40px;
  line-height: 1.3;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 50px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.social-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.social-card-qr {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}

.social-card-qr img {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 4px;
}

.social-card-info {
  flex: 1;
  min-width: 0;
}

.social-card-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.social-card-picon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 4px;
  color: #fff;
}

.social-card-picon svg {
  width: 16px;
  height: 16px;
}

.social-card-picon-facebook { background: #1877f2; }
.social-card-picon-twitter { background: #1da1f2; }
.social-card-picon-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-card-picon-youtube { background: #ff0000; }
.social-card-picon-linkedin { background: #0a66c2; }
.social-card-picon-telegram { background: #2aabee; }
.social-card-picon-discord { background: #5865f2; }
.social-card-picon-reddit { background: #ff4500; }
.social-card-picon-tiktok { background: #010101; }
.social-card-picon-github { background: #24292f; }
.social-card-picon-whatsapp { background: #25d366; }
.social-card-picon-wechat { background: #07c160; }
.social-card-picon-medium     { background: #000; }
.social-card-picon-pinterest  { background: #e60023; }
.social-card-picon-eventbrite { background: #F05537; }

.social-card-name {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  margin-bottom: 4px;
}

.social-card-url {
  font-size: 12px;
  color: #555;
  text-decoration: none;
  word-break: break-all;
  line-height: 1.5;
  display: block;
}

.social-card-url:hover {
  color: #2878ff;
  text-decoration: underline;
}

.social-card-wechat {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.social-reminder {
  background: #fffbe6;
  border-radius: 4px;
  padding: 24px 40px;
  margin: 0 0 60px;
  font-size: 15px;
  color: #d48806;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1100px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .social-hero {
    height: 160px;
  }

  .social-container {
    padding: 0 20px;
  }

  .social-section-title {
    font-size: 22px;
    padding: 32px 0 24px;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .social-card {
    padding: 14px;
    gap: 12px;
  }

  .social-card-qr {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }

  .social-card-qr img {
    width: 70px;
    height: 70px;
  }

  .social-reminder {
    padding: 18px 20px;
    font-size: 13px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .social-hero {
    height: 120px;
  }

  .social-section-title {
    font-size: 19px;
    padding: 24px 0 20px;
  }

  .social-container {
    padding: 0 16px;
  }

  .social-card {
    padding: 12px;
    gap: 10px;
  }

  .social-card-qr {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .social-card-qr img {
    width: 64px;
    height: 64px;
  }

  .social-card-platform {
    font-size: 14px;
  }

  .social-card-name {
    font-size: 13px;
  }

  .social-card-url {
    font-size: 12px;
  }

  .social-reminder {
    font-size: 12px;
    padding: 14px 16px;
  }
}
