@import url('../../resource/font/jetbrains-mono.css');

html {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

html::-webkit-scrollbar {
    display: none; 
}

body {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    scroll-behavior: smooth;
}

.selection-green::selection {
    background-color: #00FF9D;
    color: black;
}

.apple-shadow {
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.neo-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.neo-card:hover {
    border-color: #00FF9D;
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 255, 157, 0.1);
}

.status-pulse {
    position: relative;
}
.status-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00FF9D;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.5;
    left: 0;
    top: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
