/* ==========================================================================
   NYTRIX NODES - Premium Hosting Stylesheet
   ========================================================================== */

/* Smooth Scrolling & Cursor styles */
html {
    scroll-behavior: smooth;
}

body {
    cursor: default;
}

/* Custom Cursor Elements */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #22d3ee;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(34, 211, 238, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.mouse-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, rgba(124, 58, 237, 0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Navbar Glassmorphism scroll effect */
.nav-scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* RGB Glowing Borders for Performance Cards */
@keyframes rgbGlow {
    0% { border-color: #22d3ee; box-shadow: 0 0 15px rgba(34, 211, 238, 0.2); }
    33% { border-color: #7c3aed; box-shadow: 0 0 15px rgba(124, 58, 237, 0.2); }
    66% { border-color: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.2); }
    100% { border-color: #22d3ee; box-shadow: 0 0 15px rgba(34, 211, 238, 0.2); }
}

.rgb-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: rgbGlow 6s infinite;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rgb-card:hover {
    transform: translateY(-8px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(34, 211, 238, 0.15);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(34, 211, 238, 0.2);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #030712;
}

::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #22d3ee;
}