/* Retro Theme - Warm, nostalgic vibes */
.theme-retro {
  --profile-bg: #1a1515;
  --profile-card: #2a2020;
  --profile-text: #fef3c7;
  --profile-text-secondary: #d4a574;
  --profile-primary: #f59e0b;
  --profile-border: rgba(245, 158, 11, 0.15);
}

.theme-retro .profile-page {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.1) 2px,
      rgba(0, 0, 0, 0.1) 4px
    ),
    #1a1515;
}

.theme-retro .profile-avatar {
  border-color: #f59e0b;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
  border-width: 4px;
}

.theme-retro .profile-avatar-default {
  background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.theme-retro .profile-name {
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.theme-retro .profile-link {
  background: #2a2020;
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 4px;
}

.theme-retro .profile-link:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
}

.theme-retro .featured-link {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
  border-color: rgba(245, 158, 11, 0.3);
  border-radius: 4px;
  border-width: 2px;
}

.theme-retro .featured-link-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
  border-radius: 4px;
}

.theme-retro .profile-link-icon {
  background: rgba(245, 158, 11, 0.15);
  border-radius: 4px;
}

.theme-retro .profile-link-icon i {
  color: #f59e0b;
}

.theme-retro .social-icon {
  background: #2a2020;
  border-color: rgba(245, 158, 11, 0.2);
  border-radius: 4px;
  border-width: 2px;
}

.theme-retro .social-icon:hover {
  background: #f59e0b;
  color: #1a1515;
}

.theme-retro .profile-branding a {
  color: #d4a574;
}

