:root{
  --bg:#0f172a;
  --card:#1e293b;
  --accent:#22c55e;
  --text:#e2e8f0;
  --muted:#94a3b8;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,Segoe UI,sans-serif}
body{background:var(--bg);color:var(--text);cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><circle cx='4' cy='4' r='3' fill='%2322c55e'/></svg>") 4 4, auto;} 

a:hover{cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><circle cx='4' cy='4' r='3' fill='%2322c55e'/></svg>") 4 4, pointer;}

header{
  display:flex;justify-content:space-between;align-items:center;
  padding:1.5rem 2rem;
  position:sticky;top:0;
  background:rgba(15,23,42,.85);
  backdrop-filter:blur(10px);
}

header h1{color:var(--accent);font-size:1.6rem}

/* Vegan-styled links */
a{
  color:#4ade80;
  text-decoration:none;
  position:relative;
  transition:.25s;
}

a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0%;
  height:2px;
  background:linear-gradient(90deg,#22c55e,#86efac);
  transition:.25s;
}

a:hover{color:#bbf7d0}
a:hover::after{width:100%}

nav a{
  margin-left:1.2rem;
  font-size:.9rem;
  padding:.4rem .9rem;
  border-radius:999px;
  background:#14532d;
  color:#dcfce7;
  border:1px solid #22c55e;
  text-decoration:none;
}

nav a::after{display:none}

nav a:hover{
  background:#166534;
  color:#bbf7d0;
}

nav a:hover{background:rgba(34,197,94,0.25)}

.hero{
  text-align:center;
  padding:5rem 2rem;
  background:linear-gradient(135deg,#022c22,#065f46);
}
.hero h2{font-size:2.4rem;margin-bottom:.5rem}
.hero p{color:var(--muted)}

.section{max-width:1100px;margin:auto;padding:3rem 1.5rem}
.section h3{margin-bottom:1.5rem;color:var(--accent)}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
}

.card{
  background:var(--card);
  padding:1.2rem;
  border-radius:14px;
  transition:.25s;
  border:1px solid transparent;
}

.card:hover{
  transform:translateY(-6px);
  border-color:var(--accent);
}

.card h4{margin-bottom:.6rem;font-size:1.05rem}
.card ul{list-style:none}
.card li{
  font-size:.85rem;
  color:var(--muted);
  padding:.2rem 0;
}

.card a{display:inline-block;margin-top:.2rem;font-weight:500}

footer{
  text-align:center;
  padding:2rem;
  font-size:.8rem;
  color:var(--muted);
}






/* Hover info box (clean + usable) */
.info{
  position:relative;
  cursor:inherit;
}

.info .info-box{
  display:none;
  position:absolute;
  top:120%;
  left:0;
  background:#1e293b;
  color:#bbf7d0;
  padding:.5rem .7rem;
  border-radius:8px;
  font-size:.75rem;
  max-width:220px;
  line-height:1.4;
  border:1px solid #22c55e;
  box-shadow:0 6px 16px rgba(0,0,0,0.3);
  z-index:10;
}

.info:hover .info-box{
  display:block;
}



/* Vegan scrollbar */
::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#020617;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,#22c55e,#4ade80);
  border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
  background:#16a34a;
}

/* Firefox */
html{
  scrollbar-width:thin;
  scrollbar-color:#22c55e #020617;
}
