/* Flashlight effect */
.star-tracker {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #EFBF04;
    border-radius: 8px;
    font-size: 1rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.flashlight-mode .star-tracker {
    opacity: 1;
}

.hidden-star {
    opacity: 0;
    color: var(--text-color);
    transition: opacity 0.3s ease;
    pointer-events: none;
    color: #EFBF04;
    font-size: 2rem;
    position: absolute;
}

body.flashlight-mode .hidden-star {
    opacity: 0;
}

body.flashlight-mode {
    cursor: none;
}

body.flashlight-mode::before {
    content: '';
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}
