/* Scroll Indicator Styles */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::before,
.scroll-arrow::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #00ffff);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

.scroll-arrow::before {
    left: 0;
    top: 50%;
    transform: rotate(45deg);
    transform-origin: right center;
}

.scroll-arrow::after {
    right: 0;
    top: 50%;
    transform: rotate(-45deg);
    transform-origin: left center;
}

/* Multiple arrows for enhanced effect */
.scroll-indicator .arrow-1 {
    opacity: 0.4;
    margin-bottom: 5px;
}

.scroll-indicator .arrow-2 {
    opacity: 0.7;
    margin-bottom: 5px;
}

.scroll-indicator .arrow-3 {
    opacity: 1;
}

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

/* Pulse effect on hover */
.scroll-indicator:hover .scroll-arrow::before,
.scroll-indicator:hover .scroll-arrow::after {
    background: linear-gradient(90deg, #00ffff, #00aaff);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* Text label */
.scroll-text {
    color: #00aaff;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}

.scroll-indicator:hover .scroll-text {
    opacity: 1;
    text-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-arrow::before,
    .scroll-arrow::after {
        width: 18px;
        height: 2.5px;
    }
    
    .scroll-text {
        font-size: 11px;
    }
}
