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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #111827;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.name {
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  /* Bright, cheerful, light rainbow colors */
  background: linear-gradient(
    120deg,
    #ff4b4b, /* bright coral red */
    #ff8f00, /* bright orange */
    #fbc02d, /* sunny yellow */
    #00e676, /* bright mint green */
    #00b0ff, /* bright sky blue */
    #7c4dff, /* periwinkle / light purple */
    #ff4081, /* bright bubblegum pink */
    #ff4b4b
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Smooth 8s gentle animation */
  animation: brightRainbow 8s ease infinite;
}

@keyframes brightRainbow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background-color: #0a66c2;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}

.linkedin-btn:hover {
  background-color: #004182;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}

.linkedin-btn:active {
  transform: translateY(0);
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.15);
}

.home-btn:hover {
  background-color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.25);
}

.home-btn:active {
  transform: translateY(0);
}

.subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  font-weight: 500;
  margin-top: -16px;
}

