body {
  margin: 0;
  font-family: sans-serif;
  background: #120012;
  color: white;
}

/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #120012;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Background */
.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg span {
  position: absolute;
  color: rgba(255,255,255,0.2);
  font-family: monospace;
  animation: float 10s linear infinite;
}

@keyframes float {
  from { transform: translateY(120vh); }
  to { transform: translateY(-120vh); }
}

/* Content */
.content {
  position: relative;
  z-index: 2;
}

/* Nav */
.nav {
  padding: 20px;
  color: #ff4d9d;
}

/* Hero */
.hero {
  text-align: center;
  margin-top: 100px;
}

/* Status */
.status {
  border: 1px solid #ff4d9d;
  padding: 10px 20px;
  border-radius: 25px;
  margin-top: 20px;
  display: inline-block;
  background: rgba(255,77,157,0.1);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.05);
  position: relative;
  text-decoration: none;
  color: white;
}

/* Glow Border */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(120deg,#ff4d9d,#ff85c1,#ff4d9d);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0.7;
}

.card:hover::before {
  filter: blur(4px);
}

/* Profile */
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.profile img {
  width: 26px;
}

.profile img[src*="flaticon"] {
  filter: invert(1);
}

/* Skills */
.skills {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.skill-box {
  padding: 15px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
}

/* Contact */
.contact-box {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.05);
  position: relative;
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg,#ff4d9d,#ff85c1,#ff4d9d);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: white;
}

.send-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #ff4d9d;
  color: white;
}

/* Cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #ff4d9d;
  border-radius: 50%;
  box-shadow: 0 0 20px #ff4d9d, 0 0 40px #ff4d9d;
  pointer-events: none;
  z-index: 999;
}