/* Global animated helix background
-------------------------------------------------- */

#helix-background {
      position: fixed;
    top: 0;
    left: 150px; /* shift right */
    width: calc(100% - 150px); /* keep full width but offset */
    height: 100vh;
    pointer-events: none;
}

/* Optional – if you want the gradient behind the particles */
body {

    background-color:#333;
}


/* If you want the scroll-indicator later (can remove if unused) */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    z-index: 3;
    text-align: center;
}

.scroll-indicator::after {
    content: '↓';
    display: block;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Debug box – remove if not needed */
.debug-info {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #00d4ff;
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 12px;
    z-index: 3;
}

