:root {
    --neon-blue: #00E5FF;
    --neon-purple: #BC13FE;
    --deep-space: #0D1117;
    --glass: rgba(13, 17, 23, 0.85);
    --glow-blue: 0 0 10px rgba(0, 229, 255, 0.5);
    --glow-purple: 0 0 10px rgba(188, 19, 254, 0.5);
}

body {
    background-color: var(--deep-space);
    color: #e0e0e0;
    font-family: 'Roboto Mono', monospace;
    overflow-x: hidden;
    min-height: 100vh;
}

/* CYBER EFFECTS */
.cyber-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 9999;
}

.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 6s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

/* TYPOGRAPHY */
h1, h2, h3, .navbar-brand, .modal-title {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.neon-text-blue {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.neon-text-purple {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

/* COMPONENTS */
.cyber-nav {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-blue);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}

.cyber-card {
    background: var(--glass);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 4px;
    box-shadow: 4px 4px 0px rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 6px 6px 0px rgba(0, 229, 255, 0.4);
}

.cyber-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--neon-blue);
}

.cyber-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0, 229, 255, 0.4);
    color: white;
    padding: 12px;
    outline: none;
    transition: 0.3s;
}

.cyber-input:focus {
    border-color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

/* BUTTONS */
.cyber-button {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.cyber-button:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 20px var(--neon-blue);
}

.cyber-button-purple {
    background: transparent;
    color: var(--neon-purple);
    border: 2px solid var(--neon-purple);
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.4s;
    clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
}

.cyber-button-purple:hover {
    background: var(--neon-purple);
    color: white;
    box-shadow: 0 0 20px var(--neon-purple);
}

/* UTILS */
.text-purple { color: var(--neon-purple); }
.bg-purple { background-color: var(--neon-purple); }
.v-tag { font-size: 0.6rem; background: var(--neon-blue); color: black; padding: 2px 4px; vertical-align: top; }

/* MODALS */
.cyber-modal .modal-content {
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.cyber-modal .nav-pills .nav-link {
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    margin: 0 5px;
    border-radius: 0;
}

.cyber-modal .nav-pills .nav-link.active {
    background-color: var(--neon-blue);
    color: black;
}

/* JOB LISTING CUSTOM */
.job-item {
    margin-bottom: 20px;
}

.job-id {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.job-salary {
    font-weight: bold;
    color: #00FF41; /* Classic Matrix Green */
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--deep-space); }
::-webkit-scrollbar-thumb { background: var(--neon-blue); }
::-webkit-scrollbar-thumb:hover { background: var(--neon-purple); }

/* BOTTOM NAVIGATION */
.cyber-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-top: 2px solid var(--neon-blue);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 229, 255, 0.2);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.75rem;
    flex: 1;
}

.bottom-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.bottom-nav-item:hover, .bottom-nav-item.active {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.bottom-nav-item.active-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.mb-5-custom {
    margin-bottom: 90px !important;
}

/* Cursor pointer utility */
.cursor-pointer { cursor: pointer; }
