
body {
    font-family: 'Roboto', sans-serif;
    cursor: none;
    overflow-x: hidden;
}
.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}
.kinetic-text {
    animation: kinetic-glow 5s ease-in-out infinite;
}
@keyframes kinetic-glow {
    0%, 100% {
        text-shadow: 0 0 5px #ef4444, 0 0 10px #ef4444, 0 0 15px #ef4444, 0 0 20px #f0f, 0 0 30px #f0f, 0 0 40px #f0f;
    }
    50% {
        text-shadow: 0 0 10px #ef4444, 0 0 20px #ef4444, 0 0 30px #ef4444, 0 0 40px #f0f, 0 0 50px #f0f, 0 0 60px #f0f;
    }
}
.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Cursor styles */
.custom-cursor-ring, .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    will-change: width, height;
}
.custom-cursor-ring {
    width: 24px;
    height: 24px;
    border: 2px solid #ef4444;
}
.custom-cursor-ring.hover {
    width: 40px;
    height: 40px;
}
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    .custom-cursor-ring, .custom-cursor-dot {
        display: none;
    }
}

/* Animation styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(2.5rem); /* translate-y-10 */
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prose styles for legal/blog pages */
.prose {
    color: #cbd5e1; /* slate-300 */
}
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #ffffff;
}
.prose a {
    color: #c026d3; /* fuchsia-600 */
    text-decoration: none;
    transition: color 0.3s ease;
}
.prose a:hover {
    color: #a21caf; /* fuchsia-700 */
}
.prose strong {
    color: #ffffff;
}
.prose blockquote {
    border-left-color: #ef4444; /* red-500 */
    color: #94a3b8; /* slate-400 */
}
