/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #05080f;
  color: #eaf0ff;
  overflow-x: hidden;
}

/* CANVAS */
#bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* CUSTOM CURSOR */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #00eaff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.08s;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* GLITCH TEXT */
.glitch {
  font-size: 4.2rem;
  position: relative;
  color: #00eaff;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
}

.glitch::before {
  top: -2px;
  color: #ff00ff;
  animation: glitch 1.5s infinite;
}

.glitch::after {
  top: 2px;
  color: #7c4dff;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0% { clip-path: inset(0 0 90% 0); }
  50% { clip-path: inset(10% 0 30% 0); }
  100% { clip-path: inset(80% 0 0 0); }
}

/* TYPE TEXT */
#type {
  margin-top: 15px;
  color: #9aa4bf;
  font-size: 1.1rem;
}

/* CTA */
.cta {
  margin-top: 35px;
  padding: 14px 42px;
  border: 2px solid #00eaff;
  color: #00eaff;
  text-decoration: none;
  transition: 0.4s;
}

.cta:hover {
  background: #00eaff;
  color: #000;
  box-shadow: 0 0 30px #00eaff;
}

/* SERVICES */
.services {
  padding: 120px 10%;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 300px;
  padding: 35px;
  background: rgba(17, 22, 42, 0.9);
  border-radius: 18px;
  transition: 0.5s;
}

.card:hover {
  transform: translateY(-18px) scale(1.06);
}

.card.web:hover { box-shadow: 0 0 40px #00eaff; }
.card.game:hover { box-shadow: 0 0 40px #ff00ff; }
.card.ui:hover { box-shadow: 0 0 40px #7c4dff; }

/* SKILLS */
.skills {
  padding: 120px 12%;
}

.skills h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #00eaff;
}

.skill {
  margin-bottom: 25px;
}

.skill span {
  display: block;
  margin-bottom: 8px;
}

.bar {
  height: 10px;
  background: #11162a;
  border-radius: 10px;
}

.bar div {
  height: 100%;
  background: linear-gradient(90deg,#00eaff,#7c4dff);
  border-radius: 10px;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #6b7390;
}
.social-icons{display:flex;justify-content:center;gap:20px;margin-top:16px;}
.social-icons img{width:40px;transition:.3s;}
.social-icons img:hover{transform:scale(1.2);filter:drop-shadow(0 0 10px var(--accent));}
.logo-header{
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.logo{
  width: 230px;
  height: auto;
}
.powered{
  color: #00e5ff;
  font-weight: 600;
  font-size: 0.9rem;
}