/* Inkpage Modern Dark Theme Styles */

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

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0EA5E9;
}

/* Base Utilities */
html {
    scroll-behavior: smooth;
    background-color: #050505;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Gradient Blur Background */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    /* Increased blur for softer look */
    opacity: 0.12;
    /* Slightly reduced opacity */
    animation: float 10s infinite ease-in-out;
}

/* Text Selection */
::selection {
    background: #0EA5E9;
    color: #fff;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(6deg);
    }

    50% {
        transform: translateY(-15px) rotate(8deg);
    }
}

/* Utilities not in Tailwind */
.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    color: transparent;
}