body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #1a1a2e, #0f0f1a);
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  background: radial-gradient(circle at 30% 30%, #ff4d6d, transparent 40%),
              radial-gradient(circle at 70% 70%, #4facfe, transparent 40%),
              linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(30px);
  background: rgba(0,0,0,0.2);
}

.hero-content {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.profile {
  width: 130px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 
    0 0 20px rgba(255,255,255,0.6),
    0 0 40px rgba(255,77,109,0.6);
  transition: 0.3s;
}

.profile:hover {
    transform: scale(1.1);
}

h1 {
  margin: 10px 0;
}
h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}
h2::after{
    content: "";
    width: 50px;
    height: 3px;
    background: #ff4d6d;
    position: absolute;
    left: 20px;
    bottom: -8px;
    border-radius: 10px;
}

p {
  color: #ccc;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #ff4d6d;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  background: #ff1e4d;
}

/* SECTIONS */
.about, .posts, .stats {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  margin: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.about:hover, .posts:hover, .stats:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
section {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}
/* GRID */
.grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.grid img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
  cursor: pointer;
}

.grid img:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.stats div {
  text-align: center;
}

.stats p {
  color: #aaa;
  font-size: 14px;
}

/* CONTACT */
.contact {
  background: #1a1a2e;
}
.about p, .posts h2, .about h2{
  text-align: left;
  padding-left: 20px;
}
/* Hide default cursor */
body {
  cursor: none;
}

/* Main cursor */
.cursor {
  box-shadow: 0 0 10px #fff, 0 0 20px #fff;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 1000;
}

/* Trail cursor */
.cursor-trail {
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999;
  transition: 0.1s ease;
}
/* Ripple effect */
.ripple {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(216, 93, 182, 0.4);
  transform: scale(0);
  animation: ripple-animation 0.3s linear;
  pointer-events: none;
  z-index: 999;
}

@keyframes ripple-animation {
  to {
    transform: scale(15);
    opacity: 0;
  }
}
.hero h1 {
  background: linear-gradient(90deg, #aee067, #f5f5f5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.reel {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.reel:hover {
  transform: scale(1.08);
}