/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-color: #000000;
  --container-bg: #0d0f10;
  --card-bg: #181a1c;
  --card-hover: #232527;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  /* Subtle dark blue glow gradient */
  background-image: radial-gradient(circle at 50% 0%, rgba(10, 25, 60, 0.5) 0%, rgba(0,0,0,1) 60%);
  background-attachment: fixed;
}

#fireCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}


.container {
  width: 100%;
  max-width: 680px;
  background-color: rgba(13, 15, 16, 0.85); /* Slightly transparent */
  backdrop-filter: blur(4px);
  min-height: 100vh;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Header / Profile */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background-color: #222;
  border: 2px solid #333;
}

.title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 90%;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-main);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Link Cards */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.link-card {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  color: var(--text-main);
  transition: background-color 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.link-card:hover {
  background-color: var(--card-hover);
  transform: scale(1.02);
}

.link-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.05);
  flex-shrink: 0;
  margin-right: 16px;
}

.link-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.link-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--text-main);
}

.link-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-right: 40px; /* Offset for center alignment */
}

.link-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-right: 40px;
  margin-top: 4px;
}

/* Footer */
footer {
  margin-top: auto;
  padding-top: 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-main);
  text-decoration: underline;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
