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

    :root {
      --quantum-1: #00ff88;
      --quantum-2: #00d4ff;
      --quantum-3: #ff00ff;
      --quantum-4: #ffaa00;
      --dark-space: #0a0118;
    } 
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}

    body {
      font-family: 'Chakra Petch', sans-serif;
      background: #000;
      color: #fff;
      overflow-x: hidden;
      position: relative;
    }

    /* Quantum Void Background */
    .quantum-void {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: radial-gradient(ellipse at center, #1a0033 0%, #000000 100%);
    }

    /* 3D Rotating DNA Helix */
    .dna-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      perspective: 2000px;
      overflow: hidden;
    }

    .dna-strand {
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      transform-style: preserve-3d;
      animation: dnaRotate 20s linear infinite;
    }

    @keyframes dnaRotate {
      0% { transform: rotateY(0deg) rotateX(15deg); }
      100% { transform: rotateY(360deg) rotateX(15deg); }
    }

    .dna-particle {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      box-shadow: 0 0 20px currentColor;
    }

    /* Quantum Cursor */
    #quantum-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 10000;
  left: 0;
  top: 0;
  opacity: 1;
  transition: opacity 0.2s ease;
    } 
    @media (max-width: 768px) {
  #quantum-cursor {
    display: none;
  }
}

    .cursor-quantum {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--quantum-1);
  border-radius: 50%;
  animation: quantumPulse 1s ease-in-out infinite;
    }

    @keyframes quantumPulse {
      0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
      50% { transform: scale(2) rotate(180deg); opacity: 0.3; }
    }

    /* Main Container */
    .container {
      position: relative;
      z-index: 1;
      max-width: 1600px;
      margin: 0 auto;
      padding: 2rem;
    }

    /* Hero Vortex */
    .hero-vortex {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .vortex-ring {
      position: absolute;
      border: 2px solid var(--quantum-2);
      border-radius: 50%;
      opacity: 0.2;
      animation: vortexExpand 4s ease-out infinite;
    }

    .vortex-ring:nth-child(1) { animation-delay: 0s; }
    .vortex-ring:nth-child(2) { animation-delay: 0.5s; }
    .vortex-ring:nth-child(3) { animation-delay: 1s; }
    .vortex-ring:nth-child(4) { animation-delay: 1.5s; }

    @keyframes vortexExpand {
      0% { width: 100px; height: 100px; opacity: 0.6; }
      100% { width: 800px; height: 800px; opacity: 0; }
    }

    .hero-title {
      font-family: 'Audiowide', cursive;
      font-size: clamp(3rem, 10vw, 8rem);
      background: linear-gradient(45deg, var(--quantum-1), var(--quantum-2), var(--quantum-3), var(--quantum-4));
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientFlow 3s ease infinite;
      letter-spacing: 0.5rem;
      position: relative;
      z-index: 10;
      text-shadow: 0 0 60px rgba(0, 255, 136, 0.5);
      filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
    }

    @keyframes gradientFlow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .hero-subtitle {
      font-family: 'Iceland', cursive;
      font-size: clamp(1.2rem, 3vw, 2rem);
      color: var(--quantum-2);
      letter-spacing: 0.8rem;
      margin-top: 2rem;
      text-transform: uppercase;
      animation: glitchSubtitle 5s infinite;
    }

    @keyframes glitchSubtitle {
      0%, 90%, 100% { transform: translate(0); opacity: 1; }
      92% { transform: translate(-5px, 3px); opacity: 0.8; }
      94% { transform: translate(5px, -3px); opacity: 0.8; }
    }

    /* Holographic Profile Orb */
    .profile-orb {
      margin: 8rem auto;
      width: 350px;
      height: 350px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .orb-outer {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: conic-gradient(from 0deg, var(--quantum-1), var(--quantum-2), var(--quantum-3), var(--quantum-4), var(--quantum-1));
      animation: orbRotate 4s linear infinite;
      filter: blur(3px);
    }

    @keyframes orbRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .orb-inner {
      position: relative;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10, 1, 24, 0.9), rgba(0, 0, 0, 0.95));
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: inset 0 0 60px rgba(0, 255, 136, 0.3);
    }

    .profile-image {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      object-fit: cover;
      filter: brightness(1.1) contrast(1.2);
      transition: all 0.5s ease;
    }

    .profile-orb:hover .profile-image {
      transform: scale(1.1);
      filter: brightness(1.3) contrast(1.3) saturate(1.5);
    }

    /* Quantum Terminal */
    .quantum-terminal {
      background: rgba(10, 1, 24, 0.8);
      border: 2px solid var(--quantum-1);
      border-radius: 20px;
      padding: 3rem;
      margin: 5rem auto;
      max-width: 1200px;
      box-shadow: 0 0 60px rgba(0, 255, 136, 0.3), inset 0 0 40px rgba(0, 212, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .quantum-terminal::before {
      content: '> SYSTEM_ONLINE';
      position: absolute;
      top: 1rem;
      left: 2rem;
      color: var(--quantum-3);
      font-family: 'Iceland', cursive;
      font-size: 0.9rem;
      letter-spacing: 3px;
      animation: blink 2s infinite;
    }

    @keyframes blink {
      0%, 49%, 100% { opacity: 1; }
      50%, 99% { opacity: 0; }
    }

    .terminal-line {
      font-family: 'Iceland', cursive;
      font-size: 1.3rem;
      color: var(--quantum-2);
      margin: 1.5rem 0;
      line-height: 1.8;
      text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }

    .terminal-line span {
      color: var(--quantum-4);
    }

    /* Floating Tech Cards */
    .tech-dimension {
      margin: 8rem 0;
      position: relative;
    }

    .dimension-title {
      font-family: 'Audiowide', cursive;
      font-size: clamp(2rem, 5vw, 4rem);
      text-align: center;
      background: linear-gradient(45deg, var(--quantum-1), var(--quantum-3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 5rem;
      letter-spacing: 0.3rem;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
      padding: 2rem;
    }

    .tech-cube {
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
      border: 2px solid var(--quantum-2);
      border-radius: 20px;
      padding: 3rem 2rem;
      text-align: center;
      position: relative;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-style: preserve-3d;
      overflow: hidden;
    }

    .tech-cube::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 0deg, transparent, var(--quantum-1), transparent);
      opacity: 0;
      transition: all 0.6s ease;
      animation: rotateCube 3s linear infinite;
    }

    @keyframes rotateCube {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .tech-cube:hover::before {
      opacity: 0.3;
    }

    .tech-cube:hover {
      transform: translateY(-20px) rotateX(10deg) scale(1.05);
      box-shadow: 0 30px 80px rgba(0, 255, 136, 0.5);
      border-color: var(--quantum-1);
    }

    .tech-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 0 20px currentColor);
      transition: all 0.5s ease;
    }

    .tech-cube:hover .tech-icon {
      transform: rotateY(360deg) scale(1.3);
    }

    .tech-name {
      font-family: 'Audiowide', cursive;
      font-size: 1.5rem;
      color: var(--quantum-1);
      margin-bottom: 0.5rem;
      letter-spacing: 2px;
    }

    .tech-desc {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
    }

    /* Interdimensional Links */
    .link-dimension {
      margin: 8rem 0;
    }

    .link-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 4rem 0;
    }

    .portal-link {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      background: rgba(10, 1, 24, 0.6);
      border: 2px solid var(--quantum-3);
      border-radius: 20px;
      color: #fff;
      text-decoration: none;
      font-family: 'Iceland', cursive;
      font-size: 1.5rem;
      letter-spacing: 3px;
      transition: all 0.5s ease;
      overflow: hidden;
    }

    .portal-link::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      top: 50%;
      left: 50%;
      background: radial-gradient(circle, var(--quantum-3), transparent);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.6s ease;
    }

    .portal-link:hover::before {
      width: 400px;
      height: 400px;
    }

    .portal-link:hover {
      transform: scale(1.08);
      box-shadow: 0 0 60px rgba(255, 0, 255, 0.6);
      border-color: var(--quantum-1);
    }

    .portal-icon {
      margin-right: 1rem;
      font-size: 2rem;
      position: relative;
      z-index: 1;
      transition: transform 0.5s ease;
    }

    .portal-link:hover .portal-icon {
      transform: rotate(360deg) scale(1.3);
    }

    /* Quantum Contact Button */
    .quantum-contact {
      text-align: center;
      margin: 6rem 0;
    }

    .contact-wormhole {
      display: inline-block;
      padding: 2rem 5rem;
      background: linear-gradient(135deg, var(--quantum-1), var(--quantum-2), var(--quantum-3));
      background-size: 200% 200%;
      color: #000;
      text-decoration: none;
      font-family: 'Audiowide', cursive;
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 4px;
      border-radius: 50px;
      border: 3px solid var(--quantum-4);
      box-shadow: 0 0 60px rgba(0, 255, 136, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.3);
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      animation: contactPulse 3s ease infinite;
    }

    @keyframes contactPulse {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .contact-wormhole::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: -100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      transition: left 0.6s ease;
    }

    .contact-wormhole:hover::after {
      left: 100%;
    }

    .contact-wormhole:hover {
      transform: scale(1.15) translateY(-10px);
      box-shadow: 0 0 100px rgba(255, 170, 0, 0.8), inset 0 0 60px rgba(255, 255, 255, 0.5);
    }

    /* Quantum Footer */
    .quantum-footer {
      text-align: center;
      padding: 4rem 0;
      margin-top: 8rem;
      border-top: 2px solid var(--quantum-2);
      position: relative;
    }

    .quantum-footer::before {
      content: '';
      position: absolute;
      top: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--quantum-1), var(--quantum-3), transparent);
      animation: footerScan 3s ease-in-out infinite;
    }

    @keyframes footerScan {
      0%, 100% { width: 200px; opacity: 0.5; }
      50% { width: 600px; opacity: 1; }
    }

    .footer-text {
      font-family: 'Iceland', cursive;
      font-size: 1.2rem;
      color: var(--quantum-2);
      letter-spacing: 3px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title { font-size: 3rem; letter-spacing: 0.3rem; }
      .hero-subtitle { font-size: 1rem; letter-spacing: 0.4rem; }
      .profile-orb { width: 250px; height: 250px; }
      .orb-inner { width: 220px; height: 220px; }
      .profile-image { width: 200px; height: 200px; }
      .tech-grid, .link-grid { grid-template-columns: 1fr; }
      .contact-wormhole { padding: 1.5rem 3rem; font-size: 1.2rem; }
    }