/* css/tools.css */

/* --- CORE SETUP --- */
body { 
    font-family: 'Space Grotesk', sans-serif; 
    background-color: #000000;
    color: #fff;
    overflow-x: hidden;
    cursor: none; /* Custom cursor takes over */
}

/* --- 1. THE CUSTOM CURSOR --- */
#cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
}
#cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 10px #22d3ee, 0 0 20px #22d3ee;
}

/* --- 2. HOLOGRAPHIC CARDS --- */
.holo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: border 0.3s;
}
.holo-content {
    transform: translateZ(20px); /* Floating Text Effect */
}
.holo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 0%, rgba(255,255,255,0.1) 40%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.holo-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
}
.holo-card:hover::before {
    opacity: 1;
}

/* --- 3. UTILITIES --- */
.mono-font { font-family: 'JetBrains Mono', monospace; }

/* --- 4. SCANLINES OVERLAY --- */
.scanlines {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
    background-size: 100% 4px;
    z-index: 50;
    pointer-events: none;
    opacity: 0.3;
}
/* ... existing code ... */

/* --- 5. MERGE TOOL SPECIFIC --- */
.cyber-dropzone {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='%2322d3ee' stroke-width='2' stroke-dasharray='12%2c 12' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}
.cyber-dropzone:hover {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='%23a855f7' stroke-width='3' stroke-dasharray='10%2c 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}