* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background: #1a1a1a;
}

#container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

canvas {
    display: block;
    cursor: crosshair;
}

#ui {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 100;
}

.info-panel {
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.info-panel h3 {
    margin-bottom: 10px;
    color: #4CAF50;
    font-size: 16px;
}

.info-panel p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.9;
}

.status-panel {
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.status-panel div {
    margin: 5px 0;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

#crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.8);
    font-size: 24px;
    font-weight: bold;
    pointer-events: none;
    z-index: 100;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.screenshot-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    z-index: 200;
    animation: fadeInOut 1.5s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}