:root {
  --primary: #00f5ff;
  --secondary: #ff00cc;
  --bg-dark: #050505;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: white;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Dynamic Mesh Background */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #111 0%, #000 100%);
}

.mesh-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 10% 20%, rgba(0, 245, 255, 0.15) 0px, transparent 40%),
    radial-gradient(at 90% 80%, rgba(255, 0, 204, 0.15) 0px, transparent 40%);
  filter: blur(80px);
}

/* Professional Glass Card */
.container {
  max-width: 650px;
  margin: auto;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.gradient-text {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(to right, #00f5ff, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.85rem;
  color: #777;
  font-weight: 600;
}

.divider {
  width: 50px;
  height: 4px;
  background: var(--primary);
  margin: 30px auto;
  border-radius: 10px;
}

/* Bio Text with Gradient Highlights */
.about {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
}

.highlight-name {
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.highlight-loc {
  background: linear-gradient(90deg, #00f5ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.highlight-code {
  background: linear-gradient(90deg, #00ffaa, #00abff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Social Grid & Icons */
.social-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-card {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-card svg {
  width: 26px;
}

.social-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.12);
}

.yt:hover { color: #ff0000; box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3); }
.dc:hover { color: #5865F2; box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3); }
.mail:hover { color: #00f5ff; box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3); }

/* Premium Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-name {
  font-size: 2.5rem;
  letter-spacing: 12px;
  font-weight: 900;
  background: linear-gradient(to right, #00f5ff, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-line {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00f5ff;
  animation: slide 1.5s infinite linear;
}

@keyframes slide { from { left: -100%; } to { left: 100%; } }

footer {
  padding: 30px;
  text-align: center;
  color: #444;
  font-size: 0.85rem;
}

#privacyBtn {
  cursor: pointer;
  text-decoration: underline;
  margin-left: 5px;
}

#privacyBtn:hover { color: #888; }

@media (max-width: 600px) {
  .gradient-text { font-size: 3rem; }
  .container { margin: 20px; padding: 40px 20px; }
  }  left: 5%;
}

.blob2 {
  background: #00ffaa;
  bottom: 15%;
  right: 10%;
}

.blob3 {
  background: #00f5ff;
  top: 60%;
  left: 40%;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-60px); }
}
