        .scroll-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .scroll-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .scroll-button:active {
            transform: translateY(0);
        }
        
        .scroll-button i {
            font-size: 24px;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .scroll-button {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }