/* Custom Glassmorphism & Custom Scrollbar */
body {
    background-color: #070a12;
    color: #f1f5f9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism panel styling */
.glass-panel {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.12);
}

.glass-panel-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel-hover:hover {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.2);
    transform: translateY(-3px);
}

/* Glowing text effects */
.text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 50%, #93c5fd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Hero Glow Blob */
.bg-glow-blob {
    position: absolute;
    width: min(500px, 100vw);
    height: min(500px, 100vw);
    max-width: 100vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(56, 189, 248, 0.05) 50%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* Smooth custom scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #070a12;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #070a12;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid #070a12;
}

::-webkit-scrollbar-thumb:hover {
    background: #38bdf8;
}