/* ================================
   ULTRA ENHANCED COLORFUL STYLES
================================ */

:root {
    /* Extended Vibrant Color Palette */
    --neon-pink: #FF10F0;
    --electric-blue: #00F0FF;
    --laser-green: #10FF00;
    --sunset-orange: #FF6B35;
    --golden-yellow: #FFD700;
    --deep-purple: #8B00FF;
    --hot-magenta: #FF00AA;

    /* Multi-color Gradients */
    --gradient-rainbow: linear-gradient(135deg, #FF10F0 0%, #00F0FF 20%, #10FF00 40%, #FFD700 60%, #FF6B35 80%, #8B00FF 100%);
    --gradient-neon: linear-gradient(135deg, #FF10F0 0%, #00F0FF 50%, #10FF00 100%);
    --gradient-cyber: linear-gradient(135deg, #00F0FF 0%, #8B00FF 33%, #FF10F0 66%, #FFD700 100%);
    --gradient-holographic: linear-gradient(45deg,
        rgba(255, 16, 240, 0.5) 0%,
        rgba(0, 240, 255, 0.5) 25%,
        rgba(16, 255, 0, 0.5) 50%,
        rgba(255, 215, 0, 0.5) 75%,
        rgba(139, 0, 255, 0.5) 100%);
}

/* ================================
   Orbit Container Styles
================================ */
.orbit-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.design-orbit {
    position: relative;
    width: 400px;
    height: 400px;
    animation: float-y 8s ease-in-out infinite;
}

.design-orbit .orbit-center {
    background: var(--gradient-neon);
    box-shadow: 0 0 100px rgba(255, 16, 240, 0.5),
                0 0 200px rgba(0, 240, 255, 0.3);
}

.design-orbit .orbit-item {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 16, 240, 0.2) 0%, rgba(0, 240, 255, 0.2) 100%);
}

/* Tech logos in orbit */
.orbit-item svg {
    filter: drop-shadow(0 0 10px currentColor);
    transition: all 0.3s ease;
}

.orbit-item:hover svg {
    transform: scale(1.5);
    filter: drop-shadow(0 0 20px currentColor) brightness(1.5);
}

/* ================================
   Floating Retro Computers
================================ */
.floating-computers {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.retro-computer-float {
    position: absolute;
    opacity: 0.1;
    animation: computer-float 20s ease-in-out infinite;
}

@keyframes computer-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(100px, -50px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translate(-50px, -100px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translate(-100px, 50px) rotate(15deg) scale(1.05);
    }
}

/* Computer SVG Graphics */
.computer-graphic {
    width: 150px;
    height: 150px;
}

/* ================================
   Code Rain Effect
================================ */
.code-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.code-drop {
    position: absolute;
    color: var(--laser-green);
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    animation: code-fall linear infinite;
    text-shadow: 0 0 5px currentColor;
}

@keyframes code-fall {
    from {
        transform: translateY(-100vh);
        opacity: 1;
    }
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* ================================
   Enhanced Project Cards
================================ */
.project-card {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.05) 0%,
        rgba(0, 212, 170, 0.05) 50%,
        rgba(139, 0, 255, 0.05) 100%);
    border: 2px solid transparent;
    background-image:
        linear-gradient(var(--dark-surface), var(--dark-surface)),
        var(--gradient-rainbow);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: visible;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-holographic);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.project-card:hover::before {
    opacity: 1;
    animation: holographic-shift 3s ease-in-out infinite;
}

@keyframes holographic-shift {
    0%, 100% {
        filter: blur(10px) hue-rotate(0deg);
    }
    50% {
        filter: blur(15px) hue-rotate(180deg);
    }
}

.project-overlay {
    background: linear-gradient(135deg,
        rgba(255, 16, 240, 0.9) 0%,
        rgba(0, 240, 255, 0.9) 50%,
        rgba(16, 255, 0, 0.9) 100%);
}

/* ================================
   Animated Gradient Meshes
================================ */
.gradient-mesh {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.mesh-1 {
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: mesh-float-1 20s ease-in-out infinite;
}

.mesh-2 {
    background: radial-gradient(circle, var(--electric-blue) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation: mesh-float-2 25s ease-in-out infinite;
}

.mesh-3 {
    background: radial-gradient(circle, var(--laser-green) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mesh-float-3 30s ease-in-out infinite;
}

@keyframes mesh-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 100px) scale(1.3); }
}

@keyframes mesh-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -100px) scale(0.8); }
}

@keyframes mesh-float-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.2) rotate(180deg); }
}

/* ================================
   Skill Bars Enhanced
================================ */
.skill-progress {
    background: var(--gradient-rainbow);
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
    position: relative;
}

@keyframes gradient-slide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.skill-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent);
    animation: skill-shine 2s infinite;
}

/* ================================
   Typography Effects
================================ */
.hero-word {
    position: relative;
    display: inline-block;
}

.hero-word::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: -1;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    filter: blur(2px);
}

/* ================================
   Floating Graphics
================================ */
.floating-graphics {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.graphic-element {
    position: absolute;
    opacity: 0.05;
}

.binary-text {
    font-family: 'Fira Code', monospace;
    color: var(--laser-green);
    font-size: 10px;
    animation: binary-float 15s linear infinite;
}

@keyframes binary-float {
    from {
        transform: translateY(100vh) rotate(0deg);
    }
    to {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* ================================
   Interactive Hover Effects
================================ */
.btn:hover {
    animation: button-glow 1s ease-in-out infinite alternate;
}

@keyframes button-glow {
    from {
        box-shadow:
            0 0 20px rgba(255, 16, 240, 0.5),
            0 0 40px rgba(0, 240, 255, 0.3),
            0 0 60px rgba(16, 255, 0, 0.2);
    }
    to {
        box-shadow:
            0 0 30px rgba(255, 16, 240, 0.8),
            0 0 60px rgba(0, 240, 255, 0.5),
            0 0 90px rgba(16, 255, 0, 0.3);
    }
}

/* ================================
   Timeline Enhanced
================================ */
.timeline-content {
    background: linear-gradient(135deg,
        rgba(139, 0, 255, 0.05) 0%,
        rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid transparent;
    background-image:
        linear-gradient(var(--dark-surface), var(--dark-surface)),
        var(--gradient-cyber);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.timeline-content:hover {
    animation: timeline-pulse 2s ease-in-out infinite;
}

@keyframes timeline-pulse {
    0%, 100% {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(255, 16, 240, 0.3);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 240, 255, 0.4);
    }
}

/* ================================
   Navigation Enhanced
================================ */
.nav-link::after {
    background: var(--gradient-rainbow);
    height: 3px;
}

.navbar {
    border-bottom: 2px solid transparent;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
        var(--gradient-rainbow);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* ================================
   Contact Section Enhanced
================================ */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-neon);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

/* ================================
   Particle Effects
================================ */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient-rainbow);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-rise 10s linear infinite;
}

@keyframes particle-rise {
    from {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ================================
   Scroll Indicator Enhanced
================================ */
.scroll-indicator {
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-line {
    background: var(--gradient-rainbow);
    width: 2px;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}