.hero-socials-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(10, 5, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.socials-showcase-head {
  margin-bottom: 24px;
  text-align: center;
}

.socials-showcase-kicker {
  margin-bottom: 6px;
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.socials-showcase-title {
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(24px, 3vh, 32px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #00f2fe 50%, #9146ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
}

.socials-showcase-sub {
  margin-top: 8px;
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-socials-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  --social-accent: #9146ff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  z-index: -1;
}

.social-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: width 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
  transform: translateX(6px);
  color: #fff;
  background: color-mix(in srgb, var(--social-accent) 6%, transparent);
  border-color: color-mix(in srgb, var(--social-accent) 30%, transparent);
  box-shadow: -15px 0 30px color-mix(in srgb, var(--social-accent) 15%, transparent);
  text-shadow: 0 0 12px color-mix(in srgb, var(--social-accent) 60%, transparent);
}

.social-btn:hover::after {
  left: 200%;
}

.social-btn:hover::before {
  width: 4px;
  background: var(--social-accent);
  box-shadow: 0 0 15px var(--social-accent);
}

.social-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--social-accent) 90%, white 10%);
  outline-offset: 2px;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, filter 0.3s ease;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-btn:hover .social-icon {
  transform: scale(1.2) rotate(-8deg);
  color: var(--social-accent);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--social-accent) 80%, transparent));
}

@media (max-width: 1500px) {
  .hero-socials-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-socials-container {
    width: 100%;
    max-width: 520px;
    padding: 20px;
    border-radius: 14px;
  }

  .social-btn {
    min-height: 48px;
    padding: 12px 16px;
    gap: 12px;
    font-size: 13px;
  }

  .social-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (max-width: 520px) {
  .hero-socials-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-socials-container {
    padding: 16px;
  }

  .socials-showcase-kicker {
    letter-spacing: 0.24em;
  }

  .socials-showcase-title {
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .socials-showcase-sub {
    letter-spacing: 0.1em;
  }

  .social-btn {
    padding: 10px 14px;
  }
}