body {
    background-color: #0D0C1D;
    color: #F5F5F5;
    cursor: none;
}
.aurora-text {
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.7);
}
.soft-ui-panel {
    background-color: #0D0C1D;
    border-radius: 20px;
    box-shadow: 5px 5px 12px #0a0916, -5px -5px 12px #100f24;
}
.soft-ui-input {
    background-color: #0D0C1D;
    box-shadow: inset 3px 3px 6px #0a0916, inset -3px -3px 6px #100f24;
}
.interactive-element {
    cursor: none;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0D0C1D;
}
::-webkit-scrollbar-thumb {
    background: #3C376D;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00E5FF;
}

/* Custom Cursor */
#custom-cursor-ring, #custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 50;
    border-radius: 50%;
    transition: transform 0.15s ease-out, opacity 0.2s, background-color 0.2s, border-color 0.2s, width 0.2s, height 0.2s;
}

#custom-cursor-ring {
    width: 32px;
    height: 32px;
    border: 2px solid #00E5FF;
}

#custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #00E5FF;
}

#custom-cursor-ring.is-pointer {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 229, 255, 0.1);
}

#custom-cursor-dot.is-pointer {
    width: 0;
    height: 0;
    opacity: 0;
}

/* Active Nav Link */
#desktop-nav a.active {
    color: #00E5FF;
}
#desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #00E5FF;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prose styles for blog/legal pages */
.prose h2 {
    font-family: 'Poppins', sans-serif;
    color: #00E5FF;
    margin-top: 3rem;
}

.prose blockquote {
    border-left-color: #00E5FF;
    background-color: rgba(31, 27, 58, 0.5); /* brand-mid/50 */
    padding: 1rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
