
* {
  box-sizing: border-box;
}

:root{
  --bg1:#0b1020;
  --bg2:#1a1450;

  --card: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.14);

  --text:#eaf0ff;                 
  --muted: rgba(234,240,255,0.78);

  --accent1:#a78bfa;
  --accent2:#22d3ee;  
  --accent3:#f472b6;  
  --accent4:#fbbf24; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  color: var(--text);

  background:
    radial-gradient(circle at top left, rgba(167,139,250,0.35), transparent 45%),
    radial-gradient(circle at top right, rgba(34,211,238,0.25), transparent 50%),
    radial-gradient(circle at bottom, rgba(244,114,182,0.18), transparent 55%),
    linear-gradient(140deg, var(--bg2), var(--bg1) 55%, #081225);
}

#main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.hero{
  padding: 18px 18px 0;
}

#title {
  margin: 0;
  font-size: 2.6rem;
  letter-spacing: 0.6px;
  background: linear-gradient(
    90deg,
    var(--accent2),
    var(--accent1),
    var(--accent3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 0.6rem 0 1.1rem;
  color: var(--muted);
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 16px;
}

.chip{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  font-weight: 700;
  color: rgba(234,240,255,0.92);
  transition: transform .2s ease, background .2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

#img-div {
  margin: 1.25rem 0 0;
  padding: 1rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

#image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  border: 4px solid var(--accent2);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  animation: floatIn 0.8s ease-out both;
}

#img-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
}

#tribute-info {
  margin-top: 1.6rem;
  padding: 1.1rem 1rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

#tribute-info h2 {
  margin: 0 0 0.8rem;
  letter-spacing: 0.3px;
  color: var(--accent2);
}

.list{
  margin: 0;
  padding-left: 1.2rem;
}

.list li{
  margin: 0.55rem 0;
  line-height: 1.6;
}

.list strong{
  color: var(--accent1);
  font-weight: 800;
}

.quote{
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.quote p{
  margin: 0;
  font-weight: 700;
  color: var(--accent2);
}

.more {
  margin-top: 1.5rem;
  color: var(--muted);
}

#tribute-link {
  color: var(--accent2);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed rgba(34,211,238,0.6);
}

#tribute-link:hover{
  color: var(--accent4);
  border-bottom-color: rgba(251,191,36,0.7);
}

.footer {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}