body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f12;
    color: #e4e4e7;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.3);
    /* Cyber Purple with opacity */
}

.neon-text {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    /* Sunset Orange glow */
}

.neon-border:hover {
    border-color: #9d4edd;
    /* Cyber Purple */
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

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

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}