/* Modern Scroll Indicator Styles */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.scroll-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(79, 70, 229, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.3);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scroll-indicator:hover .scroll-text {
    opacity: 1;
    transform: translateY(-5px);
}

.scroll-indicator:hover .scroll-icon {
    background: rgba(79, 70, 229, 0.3);
    transform: scale(1.1);
    animation-play-state: paused;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive styles */
@media (max-width: 767.98px) {
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        display: none;
    }
    
    .scroll-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Eski mouse scroll stilini kaldır */
.mouse-scroll {
    display: none;
}
