@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Audiowide&family=Rajdhani:wght@300;400;600;700&display=swap');

/* CSS Variables for consistent theming */
:root {
  --primary-neon: #00ffff;
  --secondary-neon: #ff00ff;
  --accent-neon: #8a2be2;
  --text-light: #f0f0f0;
  --text-white: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.1);
  --shadow-cyan: rgba(0, 255, 255, 0.3);
  --shadow-magenta: rgba(255, 0, 255, 0.3);
  --shadow-purple: rgba(138, 43, 226, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0f1a 100%);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  text-align: center;
  padding: 20px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, var(--shadow-cyan) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--shadow-magenta) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, var(--shadow-purple) 0%, transparent 70%);
  opacity: 0.3;
  z-index: -2;
  pointer-events: none;
}

/* Container */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* Profile Picture */
.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-neon);
  box-shadow: 
    0 0 20px var(--primary-neon),
    0 0 40px rgba(0, 255, 255, 0.5),
    0 0 60px rgba(0, 255, 255, 0.3);
  margin: 20px auto;
  transition: all 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 30px var(--primary-neon),
    0 0 50px rgba(0, 255, 255, 0.6),
    0 0 80px rgba(0, 255, 255, 0.4);
}

/* Typography */
h1 {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0 10px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Links Container */
.links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Link Buttons */
.link {
  display: block;
  padding: 18px 32px;
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.1), 
    rgba(255, 0, 255, 0.05), 
    rgba(0, 255, 255, 0.1));
  color: var(--text-light);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 0, 255, 0.4) 80%,
    transparent);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.link::after {
  content: '';
  position: absolute;
  inset: -2px;
  padding: 2px;
  background: linear-gradient(45deg, 
    var(--primary-neon), 
    var(--secondary-neon), 
    var(--accent-neon), 
    var(--primary-neon));
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: border-pulse 2s ease-in-out infinite;
  z-index: -1;
}

.link:hover::before {
  left: 100%;
}

.link:hover::after {
  opacity: 1;
}

.link:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow: 
    0 0 40px rgba(0, 255, 255, 0.4),
    0 15px 35px rgba(0, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.15), 
    rgba(255, 0, 255, 0.1), 
    rgba(0, 255, 255, 0.15));
}

.link:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.5),
    0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Link variations with different color schemes */
.neonlights-btn {
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.12), 
    rgba(138, 43, 226, 0.08), 
    rgba(0, 255, 255, 0.12));
}

.stockimg-btn {
  background: linear-gradient(135deg, 
    rgba(138, 43, 226, 0.12), 
    rgba(255, 0, 255, 0.08), 
    rgba(138, 43, 226, 0.12));
}

.instagram {
  background: linear-gradient(135deg, 
    rgba(255, 0, 255, 0.12), 
    rgba(138, 43, 226, 0.08), 
    rgba(255, 0, 255, 0.12));
}

.youtube {
  background: linear-gradient(135deg, 
    rgba(138, 43, 226, 0.12), 
    rgba(0, 255, 255, 0.08), 
    rgba(138, 43, 226, 0.12));
}

.tiktok {
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.12), 
    rgba(255, 0, 255, 0.08), 
    rgba(0, 255, 255, 0.12));
}

.legal {
  background: linear-gradient(135deg, 
    rgba(138, 43, 226, 0.1), 
    rgba(0, 0, 0, 0.05), 
    rgba(138, 43, 226, 0.1));
}

@keyframes border-pulse {
  0%, 100% { 
    background-position: 0% 50%;
    opacity: 0.6;
  }
  50% { 
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .link {
    font-size: 1rem;
    padding: 16px 24px;
  }
  
  .profile-pic {
    width: 120px;
    height: 120px;
  }
}
