/* TB-NEXUS Extra Design Tokens (Complementing Tailwind) */

body {
    background-color: #0f0f0f;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.neon-border-yellow {
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.1);
    border: 1px solid #ffff00;
}

.neon-text-yellow {
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.5);
}

/* Slanted Button Style */
.btn-slanted {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.btn-slanted:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #ffff00;
    border-radius: 0;
}

/* Modal and Dropdown Animations */
.modal-active {
    display: flex !important;
    animation: modalFadeIn 0.3s forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scanline Effect */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.cyber-scanline::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
    height: 10px;
    width: 100%;
    animation: scanline 3s linear infinite;
    pointer-events: none;
}

/* Cyberpunk Panel Wrapper */
.cyber-panel {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid #333;
    position: relative;
    padding: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    margin-bottom: 2rem;
}

.cyber-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffff00;
}

.cyber-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffff00;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cyber-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #ffff00, transparent);
}

/* Sidebar Menu Enhancements */
.widget-sidebar ul li {
    margin-bottom: 8px;
}

.widget-sidebar ul li a {
    display: block;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid transparent;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.widget-sidebar ul li a:hover {
    background: rgba(0, 123, 255, 0.1);
    border-left-color: #007bff;
    color: white;
    padding-left: 20px;
}

/* Hero Gradient */
.hero-gradient {
    background: radial-gradient(circle at top right, rgba(255, 255, 0, 0.03), transparent);
}