/* Modern Variables */
:root {
  --neon-red: #ff003c;
  --neon-pink: #ff2a6d;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --text-light: #ffffff;
  --text-dim: #aaaaaa;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Reset & Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: "Exo 2", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  height: 100vh;
  position: relative;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(255, 0, 60, 0.1);
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 2px;
}

.logo span {
  color: var(--neon-red);
  text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-red);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link:hover::after {
  width: 100%;
}
/* Hero Section */
#hero {
  display: flex;
  align-items: center;
  padding-top: 100px;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  position: relative;
  z-index: 2;
}
/* Typography */
h1,h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-dim);
  font-weight: 300;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  background: linear-gradient(
    90deg,
    #ffffff,
    var(--neon-red),
    var(--neon-pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.hero-text h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 35px;
  color: var(--text-dim);
}

.hero-text p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: transparent;
  color: var(--neon-red);
  border: 2px solid var(--neon-red);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(255, 0, 60, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 50px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--neon-red);
  transition: width 0.5s ease;
  z-index: -1;
}

.btn:hover {
  color: #000;
  box-shadow: 0 0 40px var(--neon-red);
  transform: translateY(-5px);
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: var(--neon-red);
  color: #000;
  font-weight: 700;
}

.btn-primary:hover {
  background: transparent;
  color: var(--neon-red);
}

.btn-primary::before {
  background: #000;
}

/* Profile Picture */
.profile-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.profile-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
  }
  50% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  75% {
    transform: translateY(-20px) rotateX(-5deg) rotateY(-5deg);
  }
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  object-fit: cover;
  border: 6px solid transparent;
  box-shadow: 0 0 50px var(--neon-red), 0 0 100px rgba(255, 0, 60, 0.5),
    0 0 150px rgba(255, 0, 60, 0.3);
  animation: glow 3s infinite alternate, morph 12s ease-in-out infinite;
  position: relative;
  z-index: 10;
  background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
}

@keyframes glow {
  0% {
    box-shadow: 0 0 40px var(--neon-red), 0 0 80px rgba(255, 0, 60, 0.5),
      0 0 120px rgba(255, 0, 60, 0.3);
    border-color: var(--neon-red);
  }
  100% {
    box-shadow: 0 0 60px var(--neon-red), 0 0 120px rgba(255, 0, 60, 0.7),
      0 0 180px rgba(255, 0, 60, 0.5);
    border-color: var(--neon-pink);
  }
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  33% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  66% {
    border-radius: 18% 82% 41% 59% / 59% 54% 46% 41%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.glow-effect {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  border-radius: 50%;
  background: var(--neon-red);
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.2;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}
/* Footer */
footer {
  background: var(--darker-bg);
  padding: 50px 0 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 0, 60, 0.1);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-logo span {
  color: var(--neon-red);
}

.footer-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 1.5rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--neon-red);
  color: #000;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
  border-color: var(--neon-red);
}

.copyright {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: var(--neon-red);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 60px;
  }

  .btn-group {
    justify-content: center;
  }

  .profile-wrapper {
    width: 350px;
    height: 350px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .profile-wrapper {
    width: 280px;
    height: 280px;
  }

  .section-title {
    font-size: 2.3rem;
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--neon-red);
  pointer-events: none;
  z-index: 5;
}