:root {
    --primary: #06b6d4;
    --bg-dark: #050505;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
}

/* Custom Cursor Styling */
#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
}

.tech-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-transform: uppercase;
}

/* Project Cards Grid */
.project-grid-card {
    position: relative;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    transition: all 0.4s ease;
}

.card-inner {
    background: #0a0a0a;
    border-radius: 23px;
    padding: 40px;
    height: 100%;
}

.project-grid-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary), transparent);
}

/* Smooth Scrolling Customization */
html {
    scroll-behavior: smooth;
}
/* Custom Signature/Logo Sizing & Interaction */
.nav-logo img {
    /* Use max-height to ensure it doesn't break the navbar layout on small screens */
    max-height: 80px; 
    width: auto;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.2)); /* Subtle cyan glow to match your theme */
}

/* Ensure the nav-logo doesn't lose quality on scale */
.nav-logo img {
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}

/* Glassmorphism adjustment for the Navbar to fit the larger logo */
nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}