/* =========================================================
   Tiago Fuzz — Links page
   Vanilla CSS · Dark mode premium
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0A0A0A;
  color: #F5F1E8;
  min-height: 100vh;
  line-height: 1.5;
  background-image:
    background-image:
  radial-gradient(circle at 20% 0%, rgba(223, 255, 0, 0.08) 0%, transparent 40%),
  radial-gradient(circle at 80% 100%, rgba(232, 255, 58, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
}

/* ============== CONTAINER ============== */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 20px;
}

/* ============== HEADER ============== */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #444444;
  box-shadow: 0 0 32px rgba(223, 255, 0, 0.25);
}

.name {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1.0;
  color: #F5F1E8;
  margin-top: 20px;
  letter-spacing: -0.02em;
}

.name-accent {
  color: #DFFF00;
}

.bio {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #A8A8A8;
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.45;
}

/* ============== LINKS LIST ============== */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: #151515;
  border: 1px solid #252525;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.link-card:hover {
  border-color: #DFFF00;
  transform: translateY(-2px);
}

.link-card:active {
  transform: scale(0.97);
}

/* ============== FEATURED CARD (Workshop) ============== */
.link-card--featured {
  border: 1px solid #444444;
}

.link-card--featured:hover {
  box-shadow: 0 0 24px rgba(223, 255, 0, 0.25);
  transform: translateY(-2px);
}

.link-card--featured:active {
  transform: scale(0.97);
}

.card-image {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ============== CARD ICON CONTAINERS ============== */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.card-icon--studio {
  background-color: #F5F1E8;
  padding: 8px;
}

.card-icon--studio img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon--aifestival {
  background-color: #6366F1;
  padding: 6px;
}

.card-icon--aifestival img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon--instagram {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 75%, #515BD4 100%);
}

.card-icon--linkedin {
  background-color: #0A66C2;
}

.card-icon--whatsapp {
  background-color: #25D366;
}

/* ============== CARD BODY ============== */
.card-body {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #F5F1E8;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.card-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #A8A8A8;
  margin-top: 4px;
}

.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #0A0A0A;
  background-color: #E8FF3A;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.card-arrow {
  color: #555;
  flex-shrink: 0;
}

/* ============== FOOTER ============== */
.footer {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #555;
  margin-top: 48px;
  padding-bottom: 32px;
}

/* ============== DESKTOP (above 600px) ============== */
@media (min-width: 600px) {
  .container {
    max-width: 480px;
    padding: 56px 20px;
  }

  .avatar {
    width: 140px;
    height: 140px;
  }

  .name {
    font-size: 56px;
  }
}
