body {
    background-color: #0f172a;
    color: #f8fafc;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #22d3ee 0%, #a855f7 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.company-badge {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.company-badge-alt {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(34, 211, 238, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.grid-bg {
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.glow {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

.project-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 25px 50px -12px rgba(34, 211, 238, 0.25);
}

.skill-bar {
    background: linear-gradient(90deg, #22d3ee 0%, #a855f7 100%);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.nav-link {
    position: relative;
    color: #cbd5e1;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    transition: width 0.3s;
}

.nav-link:hover {
    color: #22d3ee;
}

.nav-link:hover::after {
    width: 100%;
}

.section-number {
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    color: #020617;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.5);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #f8fafc;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #a855f7;
    color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.skill-tag {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #22d3ee;
}

.skill-tag-alt {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.timeline-dot {
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
}

.timeline-line {
    background: linear-gradient(180deg, #22d3ee 0%, #a855f7 100%);
}

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(34, 211, 238, 0.15);
    border: 2px solid rgba(34, 211, 238, 0.2);
    transition: all 0.4s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 35px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(34, 211, 238, 0.25);
    border-color: rgba(34, 211, 238, 0.4);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.1);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(34, 211, 238, 0.1) 0%,
        transparent 50%,
        rgba(168, 85, 247, 0.1) 100%
    );
    pointer-events: none;
}

.hero-image-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #22d3ee, #a855f7, #22d3ee);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(20px);
}

.hero-image-wrapper:hover .hero-image-glow {
    opacity: 0.6;
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #22d3ee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-badge-2 {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #a855f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .floating-badge,
    .floating-badge-2 {
        display: none;
    }
}

.metric-card {
    background: linear-gradient(135deg, rgba(34,211,238,0.1) 0%, rgba(168,85,247,0.1) 100%);
    border: 1px solid rgba(34,211,238,0.25);
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.1);
}

.experience-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22d3ee, #a855f7);
}