/* spotlight */

.spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    background: radial-gradient(
    circle at calc(100% - 100px) 0px,  /* shifted left by 100px */
    rgba(255, 255, 255, 0) 100px,
    rgba(0, 0, 0, 0.7) 200px,
    rgba(0, 0, 0, 0.85) 100%
    );
    animation: fadeIn 1s ease forwards;
    z-index: 9999;
}

.spotlight-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: black;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 18px;
    z-index: 10000;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    text-align: center;
}

.spotlight-text.fadeout {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.spotlight-fadeout {
    animation: fadeOut 0.5s ease forwards;
}
/* end spotlight */