/* Custom styles for links.techskills.academy */

/* Subtle gradient background - dark */
:root.theme-dark body,
:root.theme-auto body {
  background: linear-gradient(160deg, #0a0a0a 0%, #121212 40%, #0d1117 100%);
  min-height: 100vh;
}
@media (prefers-color-scheme: light) {
  :root.theme-auto body {
    background: linear-gradient(160deg, #f8fafc 0%, #ffffff 40%, #f0f4f8 100%);
  }
}

/* Avatar glow ring - dark */
.avatar {
  border: 3px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15), 0 0 40px rgba(56, 189, 248, 0.05);
  transition: box-shadow 0.3s ease;
}
.avatar:hover {
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25), 0 0 50px rgba(56, 189, 248, 0.1);
}
@media (prefers-color-scheme: light) {
  :root.theme-auto .avatar {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1), 0 0 40px rgba(37, 99, 235, 0.03);
  }
  :root.theme-auto .avatar:hover {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.2), 0 0 50px rgba(37, 99, 235, 0.06);
  }
}

/* Tagline with monospace tech feel */
.container p {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}
@media (prefers-color-scheme: light) {
  :root.theme-auto .container p {
    color: rgba(0, 0, 0, 0.45);
  }
}

/* Button hover effects */
.button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
@media (prefers-color-scheme: light) {
  :root.theme-auto .button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
}

/* Fade-in on load */
.column {
  animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
