/* abedinverse.com - Custom Stylesheet */

/* Set typography priorities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

body {
    font-family: 'Inter', sans-serif;
}

code, pre {
    font-family: 'JetBrains Mono', monospace;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #050816;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}

/* Glassmorphism Class Utilities */
.glass {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-emerald {
    background: rgba(16, 185, 129, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

/* Interactive Cursor scaling overrides */
.cursor-active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: transparent !important;
    border: 1px solid #10B981;
}

.cursor-ring-active {
    transform: translate(-50%, -50%) scale(0.6);
    background-color: rgba(16, 185, 129, 0.1);
}

/* Marquee Scroll animation loop */
@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Neon Glow Cards hover highlight */
.neon-card {
    position: relative;
}

.neon-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-card:hover::after {
    opacity: 0.15;
}

/* Grid Dots Overlay decoration */
.bg-grid-dots {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}
