html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    cursor: none; /* Hide the default cursor */
    overflow-x: hidden; /* Prevent horizontal scroll */
}
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.glassmorphism {
    background: rgba(17, 24, 39, 0.6); /* Darker glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
    transition: transform 0.3s ease;
}
.social-icon:hover {
    transform: scale(1.1);
}
.logo {
    --logo-color: #FFFFFF;
    --accent-color: #a78bfa; /* Updated accent color */
}
/* Custom Cursor Styles */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #22d3ee;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(34, 211, 238, 0.5);
}
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}
.cursor-outline.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(34, 211, 238, 0.1);
}
a, button {
    cursor: none;
}
.profile-image-container {
    position: relative;
    width: 16rem; /* 256px */
    height: 16rem; /* 256px */
}
@media (min-width: 768px) {
    .profile-image-container {
        width: 20rem; /* 320px */
        height: 20rem; /* 320px */
    }
}
#image-border-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 125%;
    height: 125%;
    pointer-events: none;
}
