/* Links page — connect section & buttons */

.links-section {
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.links-section .section-title {
  text-align: center;
  margin-bottom: 6px;
}

.links-section__hint {
  text-align: center;
  margin: 0 0 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.link-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), border-color 0.3s ease, box-shadow 0.35s ease, background 0.3s ease;
}

.link-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.link-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.06);
}

.link-button:hover::before {
  transform: translateX(120%);
}

.link-button:hover .link-button__arrow {
  color: #fff;
  transform: translateX(4px);
}

.link-button__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.link-button__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-button__label {
  flex: 1;
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

.link-button__arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.35s ease;
  position: relative;
  z-index: 1;
}

.links-empty {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.links-empty p {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.links-empty__hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}
