:root {
    --bg-color: #0a0e27;
    --text-pure: #e8f4fd;
    --text-silver: #a8c7fa;
    --border-glass: rgba(59, 130, 246, 0.15);
    --glass-bg: rgba(59, 130, 246, 0.03);
    --silver-gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1e40af 100%);
    --blue-gradient: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
    --accent-blue: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #1e40af;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
    --perspective: 1000px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-pure);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* 3D Particles and Geometric Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--blue-gradient);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 20s infinite linear;
}

.particle.cube {
    background: transparent;
    border: 2px solid var(--accent-blue);
    border-radius: 0;
    transform-style: preserve-3d;
    animation: rotateCube 15s infinite linear;
}

.particle.pyramid {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid var(--accent-light);
    background: transparent;
    border-radius: 0;
    animation: rotatePyramid 18s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotateZ(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotateZ(360deg);
        opacity: 0;
    }
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg) translateY(-100vh);
        opacity: 0;
    }
}

@keyframes rotatePyramid {
    0% {
        transform: rotateY(0deg) rotateX(0deg) translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: rotateY(360deg) rotateX(180deg) translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Geometric Mesh Background */
.geometric-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: meshMove 30s linear infinite;
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}


.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3C/filter%3%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3%3C/svg%3%3E");
}

/* Typography */
h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Layout */
.container-92 {
    width: 92vw;
    margin: 0 auto;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 4vw;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.8), transparent);
    backdrop-filter: blur(8px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.5em;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-silver);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    transition: color 0.3s var(--easing);
}

.nav-links a:hover {
    color: var(--text-pure);
}

.cta-btn {
    text-decoration: none;
    background: var(--blue-gradient);
    color: var(--text-pure);
    border: none;
    padding: 10px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
    transform-style: preserve-3d;
    transform: translateZ(0);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-gradient);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s var(--easing);
    z-index: -1;
}

.cta-btn:hover {
    transform: translateZ(10px) translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4),
                0 0 30px rgba(59, 130, 246, 0.2);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 4vw 80px;
    perspective: var(--perspective);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, var(--accent-blue) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--accent-light) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--accent-dark) 0%, transparent 50%);
    animation: rotate3d 30s linear infinite;
    opacity: 0.1;
    z-index: -1;
}

@keyframes rotate3d {
    0% { transform: rotate3d(0, 0, 1, 0deg) rotate3d(1, 0, 0, 0deg); }
    100% { transform: rotate3d(0, 0, 1, 360deg) rotate3d(1, 0, 0, 10deg); }
}

.hero-container {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: 4rem;
    padding: 80px 60px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: rotateX(2deg);
    transition: transform 0.6s var(--easing);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15),
                0 0 100px rgba(59, 130, 246, 0.05);
}

.hero-container:hover {
    transform: rotateX(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(59, 130, 246, 0.25),
                0 0 150px rgba(59, 130, 246, 0.1);
}

.hero-visual {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 4px;
    background: var(--blue-gradient);
    transform-style: preserve-3d;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3),
                inset 0 0 30px rgba(59, 130, 246, 0.1);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(from 0deg, var(--accent-blue), var(--accent-light), var(--accent-dark), var(--accent-blue));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    filter: blur(25px);
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    0% { 
        background: conic-gradient(from 0deg, var(--accent-blue), var(--accent-light), var(--accent-dark), var(--accent-blue));
        transform: scale(1);
    }
    50% { 
        background: conic-gradient(from 180deg, var(--accent-light), var(--accent-dark), var(--accent-blue), var(--accent-light));
        transform: scale(1.05);
    }
    100% { 
        background: conic-gradient(from 360deg, var(--accent-blue), var(--accent-light), var(--accent-dark), var(--accent-blue));
        transform: scale(1);
    }
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateY(90deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
    75% { transform: translateY(-10px) rotateY(270deg); }
}

@keyframes pulse3d {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
    position: relative;
    z-index: 2;
    border: 2px solid var(--bg-color);
    transition: filter 0.3s var(--easing);
}

.profile-img:hover {
    filter: contrast(1.2) saturate(1.4) brightness(1.1) hue-rotate(10deg);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.2) 30%, rgba(14, 165, 233, 0.1) 60%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: colorShift 4s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% { 
        background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.2) 30%, rgba(14, 165, 233, 0.1) 60%, transparent 70%);
    }
    33% { 
        background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, rgba(14, 165, 233, 0.2) 30%, rgba(99, 102, 241, 0.1) 60%, transparent 70%);
    }
    66% { 
        background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(99, 102, 241, 0.2) 30%, rgba(59, 130, 246, 0.1) 60%, transparent 70%);
    }
}

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

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    margin-bottom: 60px;
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(5deg);
    transition: transform 0.6s var(--easing);
    text-shadow: 0 0 60px rgba(59, 130, 246, 0.5);
    position: relative;
}

.hero-title:hover {
    transform: perspective(500px) rotateX(0deg) scale(1.05);
    text-shadow: 0 0 80px rgba(59, 130, 246, 0.7);
}

.hero-title span {
    background: var(--blue-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.6))
            drop-shadow(0 0 80px rgba(59, 130, 246, 0.3));
    position: relative;
    display: inline-block;
    animation: textGlow3d 3s ease-in-out infinite;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(0.8); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

@keyframes textGlow3d {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.4)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.2)); }
    50% { filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.6)) drop-shadow(0 0 80px rgba(59, 130, 246, 0.3)); }
}

.metadata-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1),
                0 0 100px rgba(59, 130, 246, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
    }

.metadata-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s var(--easing);
}

.meta-item:hover {
    transform: translateY(-3px) scale(1.05);
}

.meta-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
}

.meta-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-pure);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s var(--easing);
}

.meta-item:hover .meta-value {
    color: var(--accent-blue);
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

/* Section Common */
.section {
    padding: 120px 4vw;
}

.section-header {
    margin-bottom: 60px;
}

.section-index {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: -0.02em;
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(2deg);
    transition: transform 0.6s var(--easing);
    background: var(--blue-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.section-title:hover {
    transform: perspective(800px) rotateX(0deg) scale(1.02);
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

/* Experience Section - 2 Column Layout */
#experience .bento-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Projects Section - 3 Column Layout */
#projects .bento-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Bento Grid - Single Row Layout */
.bento-grid {
    display: grid;
    gap: 32px;
    border-top: 1px solid var(--border-glass);
    padding-top: 60px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 1rem;
    padding: 32px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.6s var(--easing);
    transform-style: preserve-3d;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.6s var(--easing);
    pointer-events: none;
}

.bento-card:hover {
    transform: translateZ(15px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25),
                0 0 30px rgba(59, 130, 246, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover .card-title {
    transform: translateZ(8px);
    color: var(--accent-light);
}

.bento-card:hover .card-company {
    transform: translateZ(6px);
    color: var(--accent-light);
}

.bento-card:hover .card-list li {
    transform: translateZ(4px);
    color: var(--text-pure);
}

.bento-card:hover .card-text {
    transform: translateZ(3px);
    color: var(--text-pure);
}

.col-span-2 {
    grid-column: span 2;
}

.card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 24px;
}

.card-title {
    font-size: 32px;
    margin-bottom: 8px;
    font-style: italic;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--easing), color 0.3s var(--easing);
}

.card-company {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-silver);
    display: block;
    margin-bottom: 24px;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--easing), color 0.3s var(--easing);
}

.card-list {
    list-style: none;
    transform-style: preserve-3d;
}

.card-list li {
    font-size: 14px;
    color: var(--text-silver);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--easing), color 0.3s var(--easing);
}

.card-list li::before {
    content: "/";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.3s var(--easing);
}

.bento-card:hover .card-list li::before {
    color: var(--accent-blue);
}

.card-text {
    font-size: 16px;
    color: var(--text-silver);
    transform-style: preserve-3d;
    transition: transform 0.6s var(--easing), color 0.3s var(--easing);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid var(--border-glass);
    padding-top: 60px;
}

.skill-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skill-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5em;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tags span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    padding: 8px 16px;
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    transition: all 0.3s var(--easing);
    transform-style: preserve-3d;
    transform: translateZ(0);
    position: relative;
    background: transparent;
}

.skill-tags span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-gradient);
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s var(--easing);
    z-index: -1;
}

.skill-tags span:hover {
    transform: translateZ(10px) scale(1.1);
    color: var(--text-pure);
    border-color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.skill-tags span:hover::before {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 120px 4vw;
}

.frosted-glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: 2rem;
    padding: 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 60px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.4em;
}

.contact-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: var(--text-pure);
    text-decoration: none;
    transition: color 0.3s var(--easing);
}

.contact-value:hover {
    color: var(--text-silver);
}

.capture-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 1rem;
    border: 1px solid var(--border-glass);
    flex-wrap: wrap;
    justify-content: center;
}

.form-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-pure);
    font-family: 'JetBrains Mono', monospace;
    padding: 0 24px;
    font-size: 14px;
}

.silver-btn {
    background: var(--blue-gradient);
    color: var(--text-pure);
    border: none;
    padding: 16px 32px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.2em;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    transform-style: preserve-3d;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.silver-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s var(--easing);
}

.silver-btn:hover {
    transform: translateZ(15px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4),
                0 0 30px rgba(59, 130, 246, 0.2);
}

.silver-btn:hover::before {
    left: 100%;
}

/* Bento Card Glow Effect */
.bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s var(--easing);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card > * {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    padding: 80px 4vw;
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3em;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    transition: color 0.3s var(--easing);
}

.footer-links a:hover {
    color: var(--text-pure);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: var(--text-silver);
    text-decoration: none;
    padding: 16px;
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s var(--easing);
    backdrop-filter: blur(8px);
}

.social-link:hover {
    color: var(--text-pure);
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.social-link svg {
    transition: transform 0.3s var(--easing);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation - Simple Layout */
    .nav-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links .cta-btn {
        width: auto;
        padding: 8px 16px;
        font-size: 9px;
    }
    
    .logo {
        font-size: 12px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 120px 4vw 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        text-align: center;
        gap: 40px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-visual {
        margin-bottom: 40px;
    }
    
    .image-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 48px);
        line-height: 1;
    }
    
    .metadata-bar {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    /* Sections */
    .section {
        padding: 80px 4vw;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    
    /* Bento Grids - Mobile */
    #experience .bento-grid,
    #projects .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bento-card {
        padding: 24px;
        min-height: auto;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    /* Skills Grid */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .skill-group {
        text-align: center;
    }
    
    .skill-tags {
        justify-content: center;
    }
    
    /* Social Links */
    .social-links {
        flex-direction: row;
        gap: 24px;
        margin-top: 32px;
    }
    
    .social-link {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
    
    .social-link svg {
        width: 28px;
        height: 28px;
    }
    
    /* Contact Section */
    .contact-details {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        width: 100%;
        text-align: center;
    }
    
    .capture-form {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .form-input {
        width: 100%;
        padding: 16px;
        text-align: center;
    }
    
    .silver-btn {
        width: 100%;
        padding: 16px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .hero-section {
        padding: 100px 4vw 60px;
    }
    
    .section {
        padding: 60px 4vw;
    }
    
    .bento-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .nav-links a {
        font-size: 9px;
    }
    
    .logo {
        font-size: 10px;
        letter-spacing: 0.3em;
    }
}
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--easing);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-visual.reveal {
    transform: scale(0.9) translateY(40px);
}

.hero-visual.active {
    transform: scale(1) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-container {
        padding: 80px 30px;
        border-radius: 2rem;
    }
    .hero-title {
        font-size: 48px;
    }
    .metadata-bar {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .col-span-2 {
        grid-column: span 1;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .capture-form {
        flex-direction: column;
    }
}
