* {
    cursor: url('../img/cursor.png') 0 0, auto !important;
}

a, button, [role="button"], input, select, textarea, .nav-link, .mobile-nav-link {
    cursor: url('../img/cursor.png') 0 0, pointer !important;
}

html {
    scroll-behavior: smooth;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #060606;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #6366f1, #a855f7);
    border-radius: 20px;
    border: 3px solid #060606;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #4f46e5, #9333ea);
}

/* Fix for italic text edge cutting */
.italic,
[class*="italic"] {
    padding-inline: 0.08em;
}

/* Specific fix for the Hero Title to prevent edges from being cut */
h1.italic,
h2.italic,
h3.italic {
    padding-inline: 0.15em;
}

/* Fix for italic text with bg-clip-text (like the gradient in the hero) */
.bg-clip-text {
    display: inline-block;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glow-sm {
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}

.glow-primary {
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}

.glass-panel {
    backdrop-filter: blur(20px);
}

html, body {
    background-color: #000000;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.gradient-mesh {
    background: radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.12) 0%, transparent 50%);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@-webkit-keyframes marquee {
    from { -webkit-transform: translateX(0); }
    to { -webkit-transform: translateX(-50%); }
}

.animate-marquee {
    display: flex !important;
    width: max-content;
    will-change: transform;
    animation: marquee 40s linear infinite;
    -webkit-animation: marquee 40s linear infinite;
}

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

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    33% { transform: translate(40px, -60px) scale(1.2); opacity: 0.6; }
    66% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.3; }
}

.animate-blob {
    animation: float-blob 20s ease-in-out infinite;
}

.animate-blob-delayed {
    animation: float-blob 25s ease-in-out infinite reverse;
}

.animate-blob-fast {
    animation: float-blob 15s ease-in-out infinite;
}

@keyframes particle-drift {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-400px) translateX(40px) scale(0.5); opacity: 0; }
}

@keyframes line-shine {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.animate-shine {
    position: relative;
    overflow: hidden;
}

.animate-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: line-shine 3s infinite ease-in-out;
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    filter: blur(1px) drop-shadow(0 0 8px #6366f1);
    opacity: 0;
    animation: particle-drift infinite ease-in;
    will-change: transform, opacity;
}

.animate-blob, .animate-blob-delayed, .animate-blob-fast {
    will-change: transform, opacity;
}

/* Social Icon Hover Colors */
.hover-twitch:hover { background-color: #9146ff !important; }
.hover-youtube:hover { background-color: #ff0000 !important; }
.hover-x:hover { background-color: #000000 !important; }
.hover-discord:hover { background-color: #5865f2 !important; }/* Navigation Styles */
.nav-link {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #6366f1; /* primary color */
}

.nav-link.active i {
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-slow {
    animation: spin-slow 3s linear infinite;
}

.group:hover .spin-slow {
    animation: spin-slow 1s linear infinite;
}

/* Glassmorphism Refinement */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Premium Typography */
.font-headline {
    font-family: 'Space Grotesk', sans-serif;
}

.h-gradient {
    background: linear-gradient(to right, #ffffff, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Spacing */
section {
    position: relative;
    z-index: 10;
}

/* AOS Tweaks */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}


