@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@500;700&display=swap');

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    background-image: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%)
}

.font-tech {
    font-family: 'Share Tech Mono', monospace
}

.microscope-view {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid #334155;
    background: #000;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.8);
    margin: 0 auto
}

.lens-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 10
}

.grid-lines {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: linear-gradient(rgba(56, 189, 248, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: scale(1);
    transition: transform 1s ease-in-out
}

.slide-sample {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease
}

.cell {
    width: 40px;
    height: 40px;
    background: #38bdf8;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #38bdf8;
    position: absolute
}

.control-panel {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid #475569;
    backdrop-filter: blur(10px)
}

.knob {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#475569 0%, #1e293b 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 4px solid #334155;
    cursor: pointer;
    transition: transform 0.2s ease
}

.knob:active {
    transform: scale(0.95)
}

.active-zoom {
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5)
}

.zoom-level {
    transition: all 0.3s ease
}

.zoom-level.inactive {
    opacity: 0.3;
    transform: scale(0.9)
}

.zoom-level.active {
    opacity: 1;
    transform: scale(1.1);
    font-weight: bold
}