@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=JetBrains+Mono:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #030712;
  color: #fff;
  overflow-x: hidden;
}

canvas#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10%;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00b4ff;
}
.logo span { color: #9fc5ff; }

nav a {
  color: #9fc5ff;
  text-decoration: none;
  margin-left: 25px;
  transition: 0.3s;
  font-family: 'JetBrains Mono', monospace;
}
nav a:hover { color: #00b4ff; }

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 10%;
  flex-wrap: wrap;
}

.hero-text { max-width: 600px; }

.tag {
  background: rgba(0,180,255,0.1);
  color: #00b4ff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: inline-block;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 25px rgba(0,180,255,0.6);
}
h1 span { color: #00b4ff; }

.typing {
  border-right: 3px solid #00b4ff;
  animation: blink 0.8s infinite;
}
@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #00b4ff; }
}

p {
  color: #9fc5ff;
  margin-top: 15px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  background: #0a1122;
  border: 1px solid rgba(0,180,255,0.3);
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  box-shadow: 0 0 25px rgba(0,180,255,0.8);
  border-color: #00b4ff;
  transform: translateY(-3px);
}

.hero-img img {
  width: 240px;
  border-radius: 50%;
  transition: 0.4s;
  border: 2px solid rgba(0,180,255,0.2);
  box-shadow: 0 0 15px rgba(0,180,255,0.2);
}
.hero-img img:hover {
  box-shadow: 0 0 40px rgba(0,180,255,0.9);
  transform: scale(1.05);
}

section {
  padding: 100px 10%;
}

.about {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,180,255,0.1);
}
.about h2 { color: #00b4ff; margin-bottom: 20px; }

footer {
  text-align: center;
  padding: 30px;
  color: #5f8fbf;
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
