:root {
  --color-bg: #0a0a0a;
  --color-text: #f0f0f0;
  --color-primary: #888888;
  --color-secondary: #444444;
  --color-accent: #cccccc;
  --color-dark: #1a1a1a;
  --color-darker: #101010;
  --font-main: 'Orbitron', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --color-reggae-green: #1db954;
  --color-reggae-yellow: #ffd700;
  --color-reggae-red: #e93838;
}

body {
  background-color: var(--color-bg);
  background: linear-gradient(140deg, #000000 0%, #121212 50%, #000000 100%);
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  color: var(--color-text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(50, 50, 50, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 50, 50, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.7;
}

.background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.cyber-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(140deg, #050505 0%, #101010 50%, #050505 100%);
}

.particle {
  position: fixed;
  width: 2px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: float-particle 12s infinite linear;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(-10px);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100vh) translateX(10px);
    opacity: 0;
  }
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.bg-shape-1 {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(150,150,150,0.8) 0%, rgba(150,150,150,0) 70%);
  animation: float 20s ease-in-out infinite;
}

.bg-shape-2 {
  bottom: -5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,200,200,0.8) 0%, rgba(200,200,200,0) 70%);
  animation: float 15s ease-in-out infinite reverse;
}

.bg-shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100,100,100,0.3) 0%, rgba(100,100,100,0) 70%);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5%, 5%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.05;
  }
}

.glitch-line {
  position: fixed;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.2;
  z-index: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.glitch-line:nth-child(1) { top: 15%; animation: glitch-animation 3s infinite; }
.glitch-line:nth-child(2) { top: 45%; animation: glitch-animation 5s infinite 1s; }
.glitch-line:nth-child(3) { top: 75%; animation: glitch-animation 7s infinite 0.5s; }

@keyframes glitch-animation {
  0% { opacity: 0.2; }
  5% { opacity: 0.5; }
  10% { opacity: 0.2; }
  15% { opacity: 0.8; }
  20% { opacity: 0.2; }
  100% { opacity: 0.2; }
}

.bio-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bio-profile {
  margin-bottom: 40px;
}

.bio-avatar {
  width: 180px;
  height: 180px;
  border-radius: 15px;
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bio-avatar:hover img {
  transform: scale(1.05);
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-family: var(--font-main);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: var(--color-text);
  text-shadow: 0 0 5px rgba(200, 200, 200, 0.3);
  line-height: 1;
}

.text-big-green {
  color: var(--color-reggae-green);
  text-shadow: 
    0 0 5px var(--color-reggae-green),
    0 0 10px var(--color-reggae-green),
    0 0 20px var(--color-reggae-green);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

.text-big-yellow {
  color: var(--color-reggae-yellow);
  text-shadow: 
    0 0 5px var(--color-reggae-yellow),
    0 0 10px var(--color-reggae-yellow),
    0 0 20px var(--color-reggae-yellow);
  animation: neon-pulse 2s ease-in-out infinite alternate 0.3s;
}

.text-big-red {
  color: var(--color-reggae-red);
  text-shadow: 
    0 0 5px var(--color-reggae-red),
    0 0 10px var(--color-reggae-red),
    0 0 20px var(--color-reggae-red);
  animation: neon-pulse 2s ease-in-out infinite alternate 0.6s;
}

@keyframes neon-pulse {
  0% {
    text-shadow: 
      0 0 5px currentColor,
      0 0 10px currentColor,
      0 0 15px currentColor;
  }
  100% {
    text-shadow: 
      0 0 10px currentColor,
      0 0 20px currentColor,
      0 0 30px currentColor;
  }
}

.bio-social {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.bio-social a {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--color-darker);
  color: var(--color-text);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(150, 150, 150, 0.1);
}

.bio-social a:hover {
  transform: translateY(-5px);
  border-color: rgba(150, 150, 150, 0.3);
  background-color: var(--color-dark);
}

.bio-social a i {
  position: relative;
  z-index: 2;
}

.bio-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .bio-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .bio-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }
}

@keyframes glitch-text {
  0% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.4), -0.05em -0.025em 0 rgba(0, 255, 0, 0.4), -0.025em 0.05em 0 rgba(0, 0, 0, 0.4);
  }
  14% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.4), -0.05em -0.025em 0 rgba(0, 255, 0, 0.4), -0.025em 0.05em 0 rgba(0, 0, 0, 0.4);
  }
  15% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.4), 0.025em 0.025em 0 rgba(0, 255, 0, 0.4), -0.05em -0.05em 0 rgba(0, 0, 0, 0.4);
  }
  49% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.4), 0.025em 0.025em 0 rgba(0, 255, 0, 0.4), -0.05em -0.05em 0 rgba(0, 0, 0, 0.4);
  }
  50% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.4), 0.05em 0 0 rgba(0, 255, 0, 0.4), 0 -0.05em 0 rgba(0, 0, 0, 0.4);
  }
  99% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.4), 0.05em 0 0 rgba(0, 255, 0, 0.4), 0 -0.05em 0 rgba(0, 0, 0, 0.4);
  }
  100% {
    text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.4), -0.025em -0.025em 0 rgba(0, 255, 0, 0.4), -0.025em -0.05em 0 rgba(0, 0, 0, 0.4);
  }
}

.glitch-effect {
  position: relative;
  animation: glitch-text 4s infinite alternate-reverse;
}

.glitch-effect::before,
.glitch-effect::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(0, 0, 0, 0);
}

.glitch-effect::before {
  left: 2px;
  text-shadow: -1px 0 rgba(255, 0, 0, 0.7);
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch-effect::after {
  left: -2px;
  text-shadow: 1px 0 rgba(0, 255, 0, 0.7);
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(24px, 9999px, 15px, 0);
  }
  5% {
    clip: rect(62px, 9999px, 98px, 0);
  }
  10% {
    clip: rect(20px, 9999px, 35px, 0);
  }
  15% {
    clip: rect(95px, 9999px, 7px, 0);
  }
  20% {
    clip: rect(72px, 9999px, 92px, 0);
  }
  25% {
    clip: rect(10px, 9999px, 85px, 0);
  }
  30% {
    clip: rect(37px, 9999px, 46px, 0);
  }
  35% {
    clip: rect(65px, 9999px, 91px, 0);
  }
  40% {
    clip: rect(40px, 9999px, 25px, 0);
  }
  45% {
    clip: rect(51px, 9999px, 69px, 0);
  }
  50% {
    clip: rect(17px, 9999px, 24px, 0);
  }
  55% {
    clip: rect(89px, 9999px, 12px, 0);
  }
  60% {
    clip: rect(45px, 9999px, 27px, 0);
  }
  65% {
    clip: rect(66px, 9999px, 35px, 0);
  }
  70% {
    clip: rect(19px, 9999px, 12px, 0);
  }
  75% {
    clip: rect(38px, 9999px, 41px, 0);
  }
  80% {
    clip: rect(73px, 9999px, 96px, 0);
  }
  85% {
    clip: rect(22px, 9999px, 35px, 0);
  }
  90% {
    clip: rect(60px, 9999px, 7px, 0);
  }
  95% {
    clip: rect(81px, 9999px, 65px, 0);
  }
  100% {
    clip: rect(55px, 9999px, 13px, 0);
  }
}

.huik-link {
  color: rgba(255,255,255,0.8) !important; 
  text-decoration: none; 
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
  font-weight: 500;
  position: relative;
}

.huik-link:hover {
  color: #ffffff !important;
  text-shadow: 
    0 0 5px rgba(255,255,255,0.5),
    0 0 10px rgba(255,255,255,0.3),
    0 0 15px rgba(255,255,255,0.2);
} 